diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql
index fee2b77921..73e2d465f3 100644
--- a/SQL/tgstation_schema.sql
+++ b/SQL/tgstation_schema.sql
@@ -1,373 +1,373 @@
-CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET latin1 */;
-USE `feedback`;
-
-/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
-/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
-/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
-/*!40101 SET NAMES utf8 */;
-/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
-/*!40103 SET TIME_ZONE='+00:00' */;
-/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
-/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
-/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-
---
--- Table structure for table `admin`
---
-
-DROP TABLE IF EXISTS `admin`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `admin` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) NOT NULL,
- `rank` varchar(32) NOT NULL DEFAULT 'Administrator',
- `level` int(2) NOT NULL DEFAULT '0',
- `flags` int(16) NOT NULL DEFAULT '0',
- `email` varchar(45) DEFAULT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `admin_log`
---
-
-DROP TABLE IF EXISTS `admin_log`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `admin_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `adminckey` varchar(32) NOT NULL,
- `adminip` varchar(18) NOT NULL,
- `log` text NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `admin_ranks`
---
-
-DROP TABLE IF EXISTS `admin_ranks`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `admin_ranks` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `rank` varchar(40) NOT NULL,
- `flags` int(16) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `ban`
---
-
-DROP TABLE IF EXISTS `ban`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `ban` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `bantime` datetime 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,
- `expiration_time` datetime NOT NULL,
- `ckey` varchar(32) NOT NULL,
- `computerid` varchar(32) NOT NULL,
- `ip` int(10) unsigned NOT NULL,
- `a_ckey` varchar(32) NOT NULL,
- `a_computerid` varchar(32) NOT NULL,
- `a_ip` int(10) unsigned NOT NULL,
- `who` varchar(2048) NOT NULL,
- `adminwho` varchar(2048) NOT NULL,
- `edits` text,
- `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` 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 */;
-
---
--- Table structure for table `connection_log`
---
-
-DROP TABLE IF EXISTS `connection_log`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `connection_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime DEFAULT NULL,
- `server_ip` int(10) unsigned NOT NULL,
- `server_port` smallint(5) unsigned NOT NULL,
- `ckey` varchar(45) DEFAULT NULL,
- `ip` int(10) unsigned NOT NULL,
- `computerid` varchar(45) DEFAULT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `death`
---
-
-DROP TABLE IF EXISTS `death`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `death` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `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` 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,
- `toxloss` smallint(5) unsigned NOT NULL,
- `cloneloss` smallint(5) unsigned NOT NULL,
- `staminaloss` smallint(5) unsigned NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `feedback`
---
-
-DROP TABLE IF EXISTS `feedback`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `feedback` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `time` datetime NOT NULL,
- `round_id` int(8) NOT NULL,
- `var_name` varchar(32) NOT NULL,
- `var_value` int(16) DEFAULT NULL,
- `details` text,
- PRIMARY KEY (`id`)
-) 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`
---
-
-DROP TABLE IF EXISTS `legacy_population`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `legacy_population` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `playercount` int(11) DEFAULT NULL,
- `admincount` int(11) DEFAULT NULL,
- `time` datetime NOT NULL,
- `server_ip` int(10) unsigned NOT NULL,
- `server_port` smallint(5) unsigned NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `library`
---
-
-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` 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 `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` 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`
---
-
-DROP TABLE IF EXISTS `player`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player` (
- `ckey` varchar(32) NOT NULL,
- `firstseen` datetime NOT NULL,
- `lastseen` datetime NOT NULL,
- `ip` int(10) unsigned NOT NULL,
- `computerid` varchar(32) NOT NULL,
- `lastadminrank` varchar(32) NOT NULL DEFAULT 'Player',
- `accountjoindate` DATE DEFAULT NULL,
- PRIMARY KEY (`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 */;
-
---
--- Table structure for table `poll_option`
---
-
-DROP TABLE IF EXISTS `poll_option`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `poll_option` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `pollid` int(11) NOT NULL,
- `text` varchar(255) NOT NULL,
- `percentagecalc` tinyint(1) NOT NULL DEFAULT '1',
- `minval` int(3) DEFAULT NULL,
- `maxval` int(3) DEFAULT NULL,
- `descmin` varchar(32) DEFAULT NULL,
- `descmid` varchar(32) DEFAULT NULL,
- `descmax` varchar(32) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `idx_pop_pollid` (`pollid`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `poll_question`
---
-
-DROP TABLE IF EXISTS `poll_question`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `poll_question` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `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) unsigned NOT NULL,
- `multiplechoiceoptions` int(2) DEFAULT NULL,
- `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 */;
-
---
--- Table structure for table `poll_textreply`
---
-
-DROP TABLE IF EXISTS `poll_textreply`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `poll_textreply` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `pollid` int(11) NOT NULL,
- `ckey` varchar(32) NOT NULL,
- `ip` int(10) unsigned NOT NULL,
- `replytext` varchar(2048) NOT NULL,
- `adminrank` varchar(32) NOT NULL DEFAULT 'Player',
- PRIMARY KEY (`id`),
- KEY `idx_ptext_pollid_ckey` (`pollid`,`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `poll_vote`
---
-
-DROP TABLE IF EXISTS `poll_vote`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `poll_vote` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `pollid` int(11) NOT NULL,
- `optionid` int(11) 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`),
- 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 */;
+CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET latin1 */;
+USE `feedback`;
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `admin`
+--
+
+DROP TABLE IF EXISTS `admin`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `admin` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `ckey` varchar(32) NOT NULL,
+ `rank` varchar(32) NOT NULL DEFAULT 'Administrator',
+ `level` int(2) NOT NULL DEFAULT '0',
+ `flags` int(16) NOT NULL DEFAULT '0',
+ `email` varchar(45) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `admin_log`
+--
+
+DROP TABLE IF EXISTS `admin_log`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `admin_log` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `datetime` datetime NOT NULL,
+ `adminckey` varchar(32) NOT NULL,
+ `adminip` varchar(18) NOT NULL,
+ `log` text NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `admin_ranks`
+--
+
+DROP TABLE IF EXISTS `admin_ranks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `admin_ranks` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `rank` varchar(40) NOT NULL,
+ `flags` int(16) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `ban`
+--
+
+DROP TABLE IF EXISTS `ban`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ban` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `bantime` datetime 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,
+ `expiration_time` datetime NOT NULL,
+ `ckey` varchar(32) NOT NULL,
+ `computerid` varchar(32) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
+ `a_ckey` varchar(32) NOT NULL,
+ `a_computerid` varchar(32) NOT NULL,
+ `a_ip` int(10) unsigned NOT NULL,
+ `who` varchar(2048) NOT NULL,
+ `adminwho` varchar(2048) NOT NULL,
+ `edits` text,
+ `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` 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 */;
+
+--
+-- Table structure for table `connection_log`
+--
+
+DROP TABLE IF EXISTS `connection_log`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `connection_log` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `datetime` datetime DEFAULT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
+ `ckey` varchar(45) DEFAULT NULL,
+ `ip` int(10) unsigned NOT NULL,
+ `computerid` varchar(45) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `death`
+--
+
+DROP TABLE IF EXISTS `death`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `death` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `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` 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,
+ `toxloss` smallint(5) unsigned NOT NULL,
+ `cloneloss` smallint(5) unsigned NOT NULL,
+ `staminaloss` smallint(5) unsigned NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `feedback`
+--
+
+DROP TABLE IF EXISTS `feedback`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `feedback` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `time` datetime NOT NULL,
+ `round_id` int(8) NOT NULL,
+ `var_name` varchar(32) NOT NULL,
+ `var_value` int(16) DEFAULT NULL,
+ `details` text,
+ PRIMARY KEY (`id`)
+) 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`
+--
+
+DROP TABLE IF EXISTS `legacy_population`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `legacy_population` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `playercount` int(11) DEFAULT NULL,
+ `admincount` int(11) DEFAULT NULL,
+ `time` datetime NOT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `library`
+--
+
+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` 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 `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` 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`
+--
+
+DROP TABLE IF EXISTS `player`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `player` (
+ `ckey` varchar(32) NOT NULL,
+ `firstseen` datetime NOT NULL,
+ `lastseen` datetime NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
+ `computerid` varchar(32) NOT NULL,
+ `lastadminrank` varchar(32) NOT NULL DEFAULT 'Player',
+ `accountjoindate` DATE DEFAULT NULL,
+ PRIMARY KEY (`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 */;
+
+--
+-- Table structure for table `poll_option`
+--
+
+DROP TABLE IF EXISTS `poll_option`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `poll_option` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `pollid` int(11) NOT NULL,
+ `text` varchar(255) NOT NULL,
+ `percentagecalc` tinyint(1) NOT NULL DEFAULT '1',
+ `minval` int(3) DEFAULT NULL,
+ `maxval` int(3) DEFAULT NULL,
+ `descmin` varchar(32) DEFAULT NULL,
+ `descmid` varchar(32) DEFAULT NULL,
+ `descmax` varchar(32) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `idx_pop_pollid` (`pollid`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `poll_question`
+--
+
+DROP TABLE IF EXISTS `poll_question`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `poll_question` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `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) unsigned NOT NULL,
+ `multiplechoiceoptions` int(2) DEFAULT NULL,
+ `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 */;
+
+--
+-- Table structure for table `poll_textreply`
+--
+
+DROP TABLE IF EXISTS `poll_textreply`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `poll_textreply` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `datetime` datetime NOT NULL,
+ `pollid` int(11) NOT NULL,
+ `ckey` varchar(32) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
+ `replytext` varchar(2048) NOT NULL,
+ `adminrank` varchar(32) NOT NULL DEFAULT 'Player',
+ PRIMARY KEY (`id`),
+ KEY `idx_ptext_pollid_ckey` (`pollid`,`ckey`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `poll_vote`
+--
+
+DROP TABLE IF EXISTS `poll_vote`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `poll_vote` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `datetime` datetime NOT NULL,
+ `pollid` int(11) NOT NULL,
+ `optionid` int(11) 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`),
+ 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 */;
diff --git a/_maps/map_files/Cerestation/cerestation.dmm b/_maps/map_files/Cerestation/cerestation.dmm
index 4629c2d5ab..0bcbf8da32 100644
--- a/_maps/map_files/Cerestation/cerestation.dmm
+++ b/_maps/map_files/Cerestation/cerestation.dmm
@@ -1,4 +1,5 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+//Model dictionary trimmed on: 12-05-2017 18:47 (UTC)
"aaa" = (
/turf/open/space,
/area/space)
@@ -1274,12 +1275,6 @@
/turf/open/space,
/area/space)
"acJ" = (
-/obj/effect/landmark/start/cyborg,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"acK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1291,7 +1286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"acL" = (
+"acK" = (
/obj/machinery/camera/motion{
c_tag = "AI Core South-East";
dir = 1;
@@ -1301,7 +1296,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"acM" = (
+"acL" = (
/obj/machinery/door/window{
base_state = "right";
dir = 4;
@@ -1311,25 +1306,25 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"acN" = (
+"acM" = (
/turf/open/space,
/turf/closed/wall/mineral/plastitanium{
dir = 1;
icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
-"acO" = (
+"acN" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"acP" = (
+"acO" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"acQ" = (
+"acP" = (
/obj/item/device/radio/intercom{
desc = "Talk through this. Evilly";
freerange = 1;
@@ -1345,13 +1340,13 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"acR" = (
+"acQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"acS" = (
+"acR" = (
/obj/machinery/door/airlock/hatch{
name = "AI Core Hallway";
req_one_access_txt = "65"
@@ -1367,13 +1362,13 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai)
-"acT" = (
+"acS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"acU" = (
+"acT" = (
/obj/machinery/sleeper/syndie{
dir = 4
},
@@ -1381,24 +1376,24 @@
dir = 5
},
/area/shuttle/syndicate)
-"acV" = (
+"acU" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/shuttle/syndicate)
-"acW" = (
+"acV" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/shuttle/syndicate)
-"acX" = (
+"acW" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/shuttle/syndicate)
-"acY" = (
+"acX" = (
/obj/structure/table,
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/bruise_pack,
@@ -1410,7 +1405,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"acZ" = (
+"acY" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/cell/high{
pixel_x = -3;
@@ -1419,7 +1414,7 @@
/obj/item/weapon/stock_parts/cell/high,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"ada" = (
+"acZ" = (
/obj/structure/table,
/obj/item/weapon/screwdriver{
pixel_y = 9
@@ -1429,13 +1424,13 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"adb" = (
+"ada" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/device/assembly/infra,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"adc" = (
+"adb" = (
/obj/structure/table,
/obj/item/device/assembly/signaler,
/obj/item/device/assembly/signaler,
@@ -1449,7 +1444,7 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"add" = (
+"adc" = (
/obj/structure/table,
/obj/item/weapon/weldingtool/largetank{
pixel_y = 3
@@ -1457,35 +1452,17 @@
/obj/item/device/multitool,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"ade" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adf" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adg" = (
+"add" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adh" = (
+"ade" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adi" = (
+"adf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -1493,7 +1470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adj" = (
+"adg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1505,7 +1482,7 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai)
-"adk" = (
+"adh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1513,7 +1490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adl" = (
+"adi" = (
/obj/machinery/ai_status_display{
pixel_x = 32
},
@@ -1521,7 +1498,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adm" = (
+"adj" = (
/obj/structure/bed/roller,
/obj/machinery/light{
icon_state = "tube1";
@@ -1531,11 +1508,11 @@
dir = 5
},
/area/shuttle/syndicate)
-"adn" = (
+"adk" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/syndicate)
-"ado" = (
+"adl" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/syndicate,
/obj/item/weapon/crowbar/red,
@@ -1545,44 +1522,17 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"adp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adq" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adr" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/window/brigdoor/southleft{
- name = "Armory Delievery Chute";
- req_access_txt = "3"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"ads" = (
+"adm" = (
/turf/closed/wall,
/area/mine/unexplored{
name = "Command Asteroid"
})
-"adt" = (
+"adn" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adu" = (
+"ado" = (
/obj/machinery/light{
dir = 1
},
@@ -1590,25 +1540,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adv" = (
+"adp" = (
/obj/machinery/telecomms/processor/preset_three,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adw" = (
+"adq" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"adx" = (
+"adr" = (
/obj/effect/decal/remains/human,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"ady" = (
+"ads" = (
/obj/machinery/porta_turret/ai{
dir = 4;
installation = /obj/item/weapon/gun/energy/e_gun
@@ -1621,7 +1571,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adz" = (
+"adt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1637,7 +1587,7 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai)
-"adA" = (
+"adu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -1647,7 +1597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adB" = (
+"adv" = (
/obj/machinery/porta_turret/ai{
dir = 4;
installation = /obj/item/weapon/gun/energy/e_gun
@@ -1660,7 +1610,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adC" = (
+"adw" = (
/obj/machinery/door/window{
dir = 4;
name = "Infirmary";
@@ -1670,20 +1620,14 @@
dir = 5
},
/area/shuttle/syndicate)
-"adD" = (
+"adx" = (
/obj/machinery/door/window/westright{
name = "Tool Storage";
req_access_txt = "150"
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"adE" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adF" = (
+"ady" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -1702,36 +1646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"adG" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Armory APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/darkred/side{
- icon_state = "darkred";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adH" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/darkred/side{
- icon_state = "darkred";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adI" = (
+"adz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -1743,7 +1658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"adJ" = (
+"adA" = (
/obj/item/weapon/grenade/barrier{
pixel_x = 4
},
@@ -1759,7 +1674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"adK" = (
+"adB" = (
/obj/structure/table,
/obj/item/weapon/storage/box/firingpins{
pixel_x = 1;
@@ -1775,46 +1690,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"adL" = (
-/obj/machinery/flasher/portable,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/delivery{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"adM" = (
+"adC" = (
/obj/machinery/flasher/portable,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"adN" = (
+"adD" = (
/obj/machinery/telecomms/server/presets/engineering,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adO" = (
+"adE" = (
/obj/machinery/telecomms/bus/preset_four,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adP" = (
+"adF" = (
/obj/machinery/telecomms/bus/preset_three,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adQ" = (
+"adG" = (
/obj/machinery/telecomms/server/presets/security,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adR" = (
+"adH" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
@@ -1830,14 +1736,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"adS" = (
+"adI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"adT" = (
+"adJ" = (
/obj/machinery/computer/message_monitor,
/obj/machinery/camera{
c_tag = "Telecomms Control Room 2";
@@ -1848,7 +1754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"adU" = (
+"adK" = (
/obj/machinery/announcement_system,
/obj/machinery/light{
dir = 1
@@ -1857,7 +1763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"adV" = (
+"adL" = (
/obj/machinery/camera{
c_tag = "AI Hallway";
dir = 5;
@@ -1868,7 +1774,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"adW" = (
+"adM" = (
/obj/machinery/door/window{
base_state = "right";
dir = 4;
@@ -1880,7 +1786,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"adX" = (
+"adN" = (
/obj/machinery/door/window{
dir = 8;
name = "Tool Storage";
@@ -1888,16 +1794,16 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"adY" = (
+"adO" = (
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"adZ" = (
+"adP" = (
/turf/closed/mineral,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aea" = (
+"adQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -1908,7 +1814,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeb" = (
+"adR" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/laser{
pixel_x = -3;
@@ -1927,7 +1833,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"aec" = (
+"adS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -1935,7 +1841,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aed" = (
+"adT" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/ionrifle,
/obj/item/weapon/gun/energy/temperature/security,
@@ -1956,7 +1862,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"aee" = (
+"adU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -1964,12 +1870,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aef" = (
+"adV" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeg" = (
+"adW" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -1978,36 +1884,36 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeh" = (
+"adX" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "AI Asteroid"
})
-"aei" = (
+"adY" = (
/obj/machinery/telecomms/server/presets/common,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aej" = (
+"adZ" = (
/obj/machinery/telecomms/processor/preset_four,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aek" = (
+"aea" = (
/obj/machinery/telecomms/receiver/preset_right,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ael" = (
+"aeb" = (
/obj/machinery/telecomms/server/presets/command,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aem" = (
+"aec" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2018,7 +1924,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aen" = (
+"aed" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -2026,7 +1932,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aeo" = (
+"aee" = (
/obj/machinery/computer/telecomms/server{
network = "tcommsat"
},
@@ -2034,7 +1940,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aep" = (
+"aef" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2047,19 +1953,19 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai)
-"aeq" = (
+"aeg" = (
/obj/item/weapon/coin/antagtoken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"aer" = (
+"aeh" = (
/obj/machinery/porta_turret/syndicate{
dir = 5
},
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/syndicate)
-"aes" = (
+"aei" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -2070,7 +1976,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"aet" = (
+"aej" = (
/obj/machinery/door/window{
dir = 1;
name = "Surgery";
@@ -2080,7 +1986,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"aeu" = (
+"aek" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -2088,7 +1994,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"aev" = (
+"ael" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 8
@@ -2106,7 +2012,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"aew" = (
+"aem" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
@@ -2121,7 +2027,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"aex" = (
+"aen" = (
/obj/structure/table,
/obj/item/device/sbeacondrop/bomb{
pixel_y = 5
@@ -2129,7 +2035,7 @@
/obj/item/device/sbeacondrop/bomb,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"aey" = (
+"aeo" = (
/obj/structure/table,
/obj/item/weapon/grenade/syndieminibomb{
pixel_x = 4;
@@ -2140,33 +2046,19 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"aez" = (
+"aep" = (
/turf/closed/mineral/random/labormineral,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aeA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/closet/crate,
-/obj/item/weapon/pickaxe/mini,
-/obj/item/weapon/pickaxe/mini,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aeB" = (
+"aeq" = (
/turf/open/floor/plasteel/darkred/side{
icon_state = "darkred";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeC" = (
+"aer" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun{
pixel_x = -3;
@@ -2185,12 +2077,12 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"aeD" = (
+"aes" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeE" = (
+"aet" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/riot{
pixel_x = -3;
@@ -2232,7 +2124,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"aeF" = (
+"aeu" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -2240,26 +2132,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeG" = (
+"aev" = (
/obj/machinery/suit_storage_unit/security,
/obj/structure/window/reinforced,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aeH" = (
+"aew" = (
/obj/machinery/blackbox_recorder,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aeI" = (
+"aex" = (
/obj/machinery/telecomms/broadcaster/preset_right,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aeJ" = (
+"aey" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -2269,7 +2161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aeK" = (
+"aez" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2280,7 +2172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aeL" = (
+"aeA" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -2290,12 +2182,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aeM" = (
+"aeB" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aeN" = (
+"aeC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -2305,7 +2197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"aeO" = (
+"aeD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2322,7 +2214,7 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai)
-"aeP" = (
+"aeE" = (
/obj/structure/table,
/obj/item/weapon/surgicaldrill,
/obj/item/weapon/circular_saw,
@@ -2334,7 +2226,7 @@
dir = 5
},
/area/shuttle/syndicate)
-"aeQ" = (
+"aeF" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -2348,12 +2240,12 @@
dir = 5
},
/area/shuttle/syndicate)
-"aeR" = (
+"aeG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/circuit,
/area/shuttle/syndicate)
-"aeS" = (
+"aeH" = (
/obj/machinery/nuclearbomb/syndicate,
/obj/machinery/door/window{
dir = 1;
@@ -2362,24 +2254,13 @@
},
/turf/open/floor/circuit,
/area/shuttle/syndicate)
-"aeT" = (
+"aeI" = (
/obj/machinery/telecomms/allinone{
intercept = 1
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"aeU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aeV" = (
+"aeJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -2389,32 +2270,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aeW" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aeX" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aeY" = (
+"aeK" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun/advtaser{
pixel_x = -3;
@@ -2430,7 +2286,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"aeZ" = (
+"aeL" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/bulletproof{
pixel_x = -3;
@@ -2467,7 +2323,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"afa" = (
+"aeM" = (
/mob/living/simple_animal/bot/secbot/beepsky{
desc = "It's Officer Gunsky, the most rootin'-tootin'-point-and shootin' security bot on this side of the galaxy!";
name = "Officer Gunsky"
@@ -2476,7 +2332,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afb" = (
+"aeN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -2485,18 +2341,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afc" = (
+"aeO" = (
/obj/structure/closet/secure_closet/lethalshots,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afd" = (
+"aeP" = (
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"afe" = (
+"aeQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2507,7 +2363,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aff" = (
+"aeR" = (
/obj/machinery/door/airlock/glass_command{
name = "Control Room";
req_access_txt = "19; 61"
@@ -2516,7 +2372,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"afg" = (
+"aeS" = (
/obj/structure/table,
/obj/item/weapon/cautery,
/obj/item/weapon/scalpel,
@@ -2524,14 +2380,14 @@
dir = 5
},
/area/shuttle/syndicate)
-"afh" = (
+"aeT" = (
/obj/structure/table/optable,
/obj/item/weapon/surgical_drapes,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/shuttle/syndicate)
-"afi" = (
+"aeU" = (
/obj/structure/table,
/obj/item/weapon/retractor,
/obj/item/weapon/hemostat,
@@ -2539,21 +2395,21 @@
dir = 5
},
/area/shuttle/syndicate)
-"afj" = (
+"aeV" = (
/turf/open/space,
/area/shuttle/syndicate)
-"afk" = (
+"aeW" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1
},
/turf/open/floor/plating,
/area/shuttle/syndicate)
-"afl" = (
+"aeX" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"afm" = (
+"aeY" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -2566,13 +2422,13 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"afn" = (
+"aeZ" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/syndicate/black/red,
/obj/item/clothing/head/helmet/space/syndicate/black/red,
/turf/open/floor/plasteel/black,
/area/shuttle/syndicate)
-"afo" = (
+"afa" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -2580,7 +2436,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afp" = (
+"afb" = (
/obj/machinery/light/small,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -2588,17 +2444,17 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afq" = (
+"afc" = (
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afr" = (
+"afd" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"afs" = (
+"afe" = (
/obj/structure/rack,
/obj/item/weapon/gun/ballistic/shotgun/riot{
pixel_x = -3;
@@ -2614,7 +2470,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"aft" = (
+"aff" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun/dragnet,
/obj/item/weapon/gun/energy/e_gun/dragnet,
@@ -2629,13 +2485,13 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"afu" = (
+"afg" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afv" = (
+"afh" = (
/obj/machinery/suit_storage_unit/security,
/obj/structure/window/reinforced{
dir = 1
@@ -2644,12 +2500,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afw" = (
+"afi" = (
/turf/closed/wall,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afx" = (
+"afj" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -2664,7 +2520,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afy" = (
+"afk" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
@@ -2675,7 +2531,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afz" = (
+"afl" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -2689,7 +2545,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"afA" = (
+"afm" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -2700,7 +2556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"afB" = (
+"afn" = (
/obj/machinery/telecomms/hub/preset,
/obj/structure/cable{
d1 = 4;
@@ -2712,7 +2568,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"afC" = (
+"afo" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -2733,7 +2589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"afD" = (
+"afp" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 4;
name = "Server Room";
@@ -2750,7 +2606,7 @@
dir = 5
},
/area/tcommsat/computer)
-"afE" = (
+"afq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -2762,7 +2618,7 @@
dir = 5
},
/area/tcommsat/computer)
-"afF" = (
+"afr" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 8;
name = "Server Room";
@@ -2779,7 +2635,7 @@
dir = 5
},
/area/tcommsat/computer)
-"afG" = (
+"afs" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -2792,36 +2648,36 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"afH" = (
+"aft" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion_l"
},
/turf/open/floor/plating,
/area/shuttle/syndicate)
-"afI" = (
+"afu" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating,
/area/shuttle/syndicate)
-"afJ" = (
+"afv" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion_r"
},
/turf/open/floor/plating,
/area/shuttle/syndicate)
-"afK" = (
+"afw" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afL" = (
+"afx" = (
/obj/machinery/vending/sustenance,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"afM" = (
+"afy" = (
/obj/structure/rack,
/obj/item/weapon/storage/box/rubbershot{
pixel_x = -3;
@@ -2847,7 +2703,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"afN" = (
+"afz" = (
/obj/structure/rack,
/obj/item/weapon/storage/box/teargas{
pixel_x = -3;
@@ -2869,7 +2725,7 @@
dir = 8
},
/area/ai_monitored/security/armory)
-"afO" = (
+"afA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -2877,7 +2733,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afP" = (
+"afB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -2889,7 +2745,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afQ" = (
+"afC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -2899,17 +2755,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"afR" = (
+"afD" = (
/turf/closed/mineral/random/labormineral,
/area/security/transfer)
-"afS" = (
+"afE" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afT" = (
+"afF" = (
/obj/machinery/light/small{
dir = 4
},
@@ -2924,20 +2780,20 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afU" = (
+"afG" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afV" = (
+"afH" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afW" = (
+"afI" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating{
@@ -2946,13 +2802,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"afX" = (
+"afJ" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"afY" = (
+"afK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2970,7 +2826,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"afZ" = (
+"afL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -2978,7 +2834,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aga" = (
+"afM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -2991,7 +2847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"agb" = (
+"afN" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3001,7 +2857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"agc" = (
+"afO" = (
/obj/structure/table,
/obj/item/weapon/folder/blue,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3011,7 +2867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"agd" = (
+"afP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -3019,7 +2875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"age" = (
+"afQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -3030,7 +2886,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agf" = (
+"afR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3046,7 +2902,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agg" = (
+"afS" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/machinery/turretid{
name = "AI Chamber turret control";
@@ -3059,7 +2915,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agh" = (
+"afT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -3071,7 +2927,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agi" = (
+"afU" = (
/obj/machinery/light{
dir = 1
},
@@ -3081,7 +2937,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agj" = (
+"afV" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09"
},
@@ -3091,14 +2947,14 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agk" = (
+"afW" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"agl" = (
+"afX" = (
/turf/open/space,
/obj/machinery/porta_turret/syndicate{
dir = 6
@@ -3108,7 +2964,7 @@
icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
-"agm" = (
+"afY" = (
/turf/open/space,
/obj/machinery/porta_turret/syndicate{
dir = 10
@@ -3117,14 +2973,14 @@
icon_state = "diagonalWall3"
},
/area/shuttle/syndicate)
-"agn" = (
+"afZ" = (
/obj/machinery/hydroponics/soil,
/obj/structure/sign/poster/official/do_not_question{
pixel_y = 32
},
/turf/open/floor/plating/asteroid,
/area/security/prison)
-"ago" = (
+"aga" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light{
dir = 1
@@ -3132,12 +2988,12 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating/asteroid,
/area/security/prison)
-"agp" = (
+"agb" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/random,
/turf/open/floor/plating/asteroid,
/area/security/prison)
-"agq" = (
+"agc" = (
/obj/structure/toilet,
/obj/machinery/light/small{
dir = 1
@@ -3146,25 +3002,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"agr" = (
+"agd" = (
/turf/open/floor/plasteel/darkred/side{
icon_state = "darkred";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"ags" = (
+"age" = (
/turf/open/floor/plasteel/darkred/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"agt" = (
+"agf" = (
/obj/machinery/light,
/turf/open/floor/plasteel/darkred/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"agu" = (
+"agg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -3177,13 +3033,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"agv" = (
+"agh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkred/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"agw" = (
+"agi" = (
/obj/machinery/light,
/obj/vehicle/secway,
/obj/effect/turf_decal/stripes/line{
@@ -3193,7 +3049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"agx" = (
+"agj" = (
/obj/machinery/flasher/portable,
/obj/machinery/camera/motion{
c_tag = "Armory South";
@@ -3204,18 +3060,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"agy" = (
+"agk" = (
/turf/closed/mineral,
/area/security/transfer)
-"agz" = (
+"agl" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"agA" = (
+"agm" = (
/turf/open/floor/plating/asteroid,
/area/security/transfer)
-"agB" = (
+"agn" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -3230,7 +3086,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agC" = (
+"ago" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/cobweb,
/obj/structure/reagent_dispensers/fueltank,
@@ -3240,7 +3096,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agD" = (
+"agp" = (
/obj/machinery/light/small{
dir = 1
},
@@ -3251,7 +3107,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agE" = (
+"agq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -3264,7 +3120,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agF" = (
+"agr" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3280,7 +3136,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agG" = (
+"ags" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3293,7 +3149,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agH" = (
+"agt" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3306,7 +3162,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agI" = (
+"agu" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3319,7 +3175,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agJ" = (
+"agv" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3332,7 +3188,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agK" = (
+"agw" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3347,7 +3203,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agL" = (
+"agx" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -3364,7 +3220,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agM" = (
+"agy" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -3377,7 +3233,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agN" = (
+"agz" = (
/obj/machinery/light/small{
dir = 1
},
@@ -3388,7 +3244,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agO" = (
+"agA" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -3401,7 +3257,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agP" = (
+"agB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -3411,7 +3267,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agQ" = (
+"agC" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -3422,7 +3278,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agR" = (
+"agD" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -3433,7 +3289,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agS" = (
+"agE" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -3446,7 +3302,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agT" = (
+"agF" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
@@ -3457,7 +3313,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agU" = (
+"agG" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/machinery/conveyor/auto{
dir = 6;
@@ -3470,19 +3326,19 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"agV" = (
+"agH" = (
/obj/machinery/message_server,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"agW" = (
+"agI" = (
/obj/machinery/telecomms/broadcaster/preset_left,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"agX" = (
+"agJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -3492,7 +3348,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"agY" = (
+"agK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3504,7 +3360,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"agZ" = (
+"agL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3518,7 +3374,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aha" = (
+"agM" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -3537,7 +3393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"ahb" = (
+"agN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3551,7 +3407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"ahc" = (
+"agO" = (
/obj/machinery/door/airlock/engineering{
name = "Telecommunications";
req_access_txt = "61"
@@ -3569,7 +3425,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"ahd" = (
+"agP" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -3587,7 +3443,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahe" = (
+"agQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -3603,7 +3459,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahf" = (
+"agR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -3614,7 +3470,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahg" = (
+"agS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -3636,7 +3492,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahh" = (
+"agT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -3646,7 +3502,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahi" = (
+"agU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -3661,7 +3517,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahj" = (
+"agV" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -3678,18 +3534,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahk" = (
+"agW" = (
/obj/item/weapon/cultivator,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahl" = (
+"agX" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahm" = (
+"agY" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -3697,7 +3553,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahn" = (
+"agZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -3709,7 +3565,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aho" = (
+"aha" = (
/obj/machinery/door/airlock/glass_security{
name = "Armory";
req_access_txt = "3"
@@ -3726,7 +3582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"ahp" = (
+"ahb" = (
/obj/machinery/door/airlock/glass_security{
name = "Armory";
req_access_txt = "3"
@@ -3738,7 +3594,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"ahq" = (
+"ahc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -3748,7 +3604,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahr" = (
+"ahd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -3760,7 +3616,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahs" = (
+"ahe" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -3771,7 +3627,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aht" = (
+"ahf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -3781,7 +3637,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahu" = (
+"ahg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -3792,7 +3648,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahv" = (
+"ahh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -3803,7 +3659,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahw" = (
+"ahi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -3814,7 +3670,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahx" = (
+"ahj" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -3826,7 +3682,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahy" = (
+"ahk" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
@@ -3837,7 +3693,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahz" = (
+"ahl" = (
/obj/structure/disposalpipe/junction,
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/floorgrime{
@@ -3846,7 +3702,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahA" = (
+"ahm" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -3857,7 +3713,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahB" = (
+"ahn" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 8
@@ -3868,7 +3724,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahC" = (
+"aho" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 8
@@ -3881,7 +3737,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahD" = (
+"ahp" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -3892,7 +3748,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahE" = (
+"ahq" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -3904,7 +3760,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahF" = (
+"ahr" = (
/obj/machinery/light/small{
dir = 8
},
@@ -3915,7 +3771,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahG" = (
+"ahs" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -3923,7 +3779,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahH" = (
+"aht" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -3931,7 +3787,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahI" = (
+"ahu" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 1
@@ -3942,37 +3798,37 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ahJ" = (
+"ahv" = (
/obj/machinery/telecomms/server/presets/supply,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ahK" = (
+"ahw" = (
/obj/machinery/telecomms/bus/preset_two,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ahL" = (
+"ahx" = (
/obj/machinery/telecomms/receiver/preset_left,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ahM" = (
+"ahy" = (
/obj/machinery/telecomms/server/presets/medical,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ahN" = (
+"ahz" = (
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"ahO" = (
+"ahA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -3981,7 +3837,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"ahP" = (
+"ahB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3992,7 +3848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"ahQ" = (
+"ahC" = (
/obj/machinery/door/airlock/hatch{
name = "AI Core";
req_one_access_txt = "65"
@@ -4010,7 +3866,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahR" = (
+"ahD" = (
/obj/machinery/door/airlock/hatch{
name = "AI Core";
req_one_access_txt = "65"
@@ -4022,39 +3878,39 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahS" = (
+"ahE" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ahT" = (
+"ahF" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "AI Asteroid"
})
-"ahU" = (
+"ahG" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahV" = (
+"ahH" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahW" = (
+"ahI" = (
/obj/machinery/holopad,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahX" = (
+"ahJ" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/device/radio/intercom{
@@ -4073,18 +3929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ahY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"ahZ" = (
+"ahK" = (
/obj/structure/table,
/obj/machinery/computer/libraryconsole/bookmanagement,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4097,12 +3942,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aia" = (
+"ahL" = (
/turf/open/floor/plating/asteroid,
/area/mine/unexplored{
name = "Asteroid"
})
-"aib" = (
+"ahM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -4112,7 +3957,7 @@
/area/mine/unexplored{
name = "Asteroid"
})
-"aic" = (
+"ahN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -4125,7 +3970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aid" = (
+"ahO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkred/side{
icon_state = "darkred";
@@ -4133,24 +3978,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aie" = (
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/transfer)
-"aif" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/asteroid,
-/area/security/transfer)
-"aig" = (
+"ahP" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"aih" = (
+"ahQ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -4165,7 +3998,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aii" = (
+"ahR" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -4176,7 +4009,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aij" = (
+"ahS" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -4188,7 +4021,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aik" = (
+"ahT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4199,7 +4032,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ail" = (
+"ahU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4215,7 +4048,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aim" = (
+"ahV" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -4227,12 +4060,12 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ain" = (
+"ahW" = (
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aio" = (
+"ahX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -4240,31 +4073,31 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aip" = (
+"ahY" = (
/obj/machinery/telecomms/server/presets/service,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"aiq" = (
+"ahZ" = (
/obj/machinery/telecomms/processor/preset_two,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"air" = (
+"aia" = (
/obj/machinery/telecomms/processor/preset_one,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ais" = (
+"aib" = (
/obj/machinery/telecomms/server/presets/science,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ait" = (
+"aic" = (
/obj/machinery/computer/telecomms/monitor{
network = "tcommsat"
},
@@ -4272,14 +4105,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aiu" = (
+"aid" = (
/obj/structure/table,
/obj/item/device/radio/off,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aiv" = (
+"aie" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light,
/obj/machinery/airalarm{
@@ -4291,7 +4124,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aiw" = (
+"aif" = (
/obj/machinery/power/apc{
dir = 2;
name = "Telecoms Control Room APC";
@@ -4302,7 +4135,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aix" = (
+"aig" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -4316,7 +4149,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/computer)
-"aiy" = (
+"aih" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -4335,7 +4168,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aiz" = (
+"aii" = (
/obj/machinery/light/small{
dir = 1
},
@@ -4350,7 +4183,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aiA" = (
+"aij" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/ai_status_display{
pixel_x = 32
@@ -4361,7 +4194,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aiB" = (
+"aik" = (
/obj/machinery/recharge_station,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -4373,7 +4206,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aiC" = (
+"ail" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/official/work_for_a_future{
pixel_x = -32
@@ -4382,7 +4215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiD" = (
+"aim" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -4391,7 +4224,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiE" = (
+"ain" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -4400,7 +4233,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiF" = (
+"aio" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -4408,7 +4241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiG" = (
+"aip" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -4416,14 +4249,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiH" = (
+"aiq" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiI" = (
+"air" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/northright{
name = "Armory Desk";
@@ -4437,7 +4270,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aiJ" = (
+"ais" = (
/obj/machinery/door/poddoor/shutters{
id = "armoryaccess";
name = "Armory Shutters"
@@ -4446,7 +4279,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"aiK" = (
+"ait" = (
/obj/machinery/door/airlock/glass_security{
name = "Armory";
req_access_txt = "3"
@@ -4463,7 +4296,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiL" = (
+"aiu" = (
/obj/machinery/door/airlock/glass_security{
name = "Armory";
req_access_txt = "3"
@@ -4475,7 +4308,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiM" = (
+"aiv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -4497,7 +4330,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiN" = (
+"aiw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -4509,7 +4342,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aiO" = (
+"aix" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -4519,7 +4352,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"aiP" = (
+"aiy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -4529,20 +4362,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"aiQ" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"aiR" = (
+"aiz" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/asteroid,
/area/security/transfer)
-"aiS" = (
+"aiA" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -4550,7 +4375,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiT" = (
+"aiB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -4563,7 +4388,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiU" = (
+"aiC" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
@@ -4572,7 +4397,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiV" = (
+"aiD" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -4584,7 +4409,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiW" = (
+"aiE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4594,7 +4419,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiX" = (
+"aiF" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -4605,18 +4430,18 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiY" = (
+"aiG" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aiZ" = (
+"aiH" = (
/turf/open/floor/plating,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aja" = (
+"aiI" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 9
@@ -4627,7 +4452,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajb" = (
+"aiJ" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
@@ -4639,7 +4464,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajc" = (
+"aiK" = (
/obj/machinery/conveyor/auto{
dir = 6;
icon_state = "conveyor0";
@@ -4651,7 +4476,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajd" = (
+"aiL" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
@@ -4661,19 +4486,19 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aje" = (
+"aiM" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ajf" = (
+"aiN" = (
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ajg" = (
+"aiO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -4692,7 +4517,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ajh" = (
+"aiP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -4703,7 +4528,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aji" = (
+"aiQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -4713,10 +4538,10 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ajj" = (
+"aiR" = (
/turf/closed/wall,
/area/quartermaster/sorting)
-"ajk" = (
+"aiS" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -4725,7 +4550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ajl" = (
+"aiT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4733,7 +4558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ajm" = (
+"aiU" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -4742,12 +4567,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ajn" = (
+"aiV" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ajo" = (
+"aiW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
@@ -4756,7 +4581,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajp" = (
+"aiX" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -4764,7 +4589,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajq" = (
+"aiY" = (
/obj/machinery/light/small{
dir = 1
},
@@ -4776,7 +4601,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajr" = (
+"aiZ" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -4784,7 +4609,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajs" = (
+"aja" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -4794,13 +4619,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajt" = (
+"ajb" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aju" = (
+"ajc" = (
/obj/machinery/light/small{
dir = 4
},
@@ -4811,7 +4636,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajv" = (
+"ajd" = (
/obj/machinery/camera{
c_tag = "Prison Screen Monitor";
dir = 4;
@@ -4821,55 +4646,45 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajw" = (
+"aje" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajx" = (
+"ajf" = (
/obj/structure/table,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajy" = (
+"ajg" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajz" = (
+"ajh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajA" = (
+"aji" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajB" = (
+"ajj" = (
/obj/structure/closet/secure_closet/brig,
/turf/open/floor/plasteel/darkred{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajC" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/darkred{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"ajD" = (
+"ajk" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -4884,7 +4699,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajE" = (
+"ajl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -4897,7 +4712,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajF" = (
+"ajm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -4905,7 +4720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajG" = (
+"ajn" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -4923,7 +4738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajH" = (
+"ajo" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -4933,7 +4748,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajI" = (
+"ajp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -4943,7 +4758,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"ajJ" = (
+"ajq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -4951,12 +4766,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ajK" = (
+"ajr" = (
/obj/structure/rack,
/obj/item/weapon/shovel,
/turf/open/floor/plating/asteroid,
/area/security/transfer)
-"ajL" = (
+"ajs" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
@@ -4966,7 +4781,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajM" = (
+"ajt" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
@@ -4978,20 +4793,20 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajN" = (
+"aju" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajO" = (
+"ajv" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajP" = (
+"ajw" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -5000,7 +4815,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajQ" = (
+"ajx" = (
/obj/machinery/light/small{
dir = 4
},
@@ -5011,7 +4826,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajR" = (
+"ajy" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -5024,7 +4839,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ajS" = (
+"ajz" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -5035,7 +4850,7 @@
/area/mine/unexplored{
name = "AI Asteroid"
})
-"ajT" = (
+"ajA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5043,7 +4858,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ajU" = (
+"ajB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5051,7 +4866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/tcommsat/server)
-"ajV" = (
+"ajC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5061,7 +4876,7 @@
/area/mine/unexplored{
name = "AI Asteroid"
})
-"ajW" = (
+"ajD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5071,7 +4886,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ajX" = (
+"ajE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5081,7 +4896,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ajY" = (
+"ajF" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -5095,7 +4910,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ajZ" = (
+"ajG" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -5109,7 +4924,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aka" = (
+"ajH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5119,7 +4934,7 @@
/area/mine/unexplored{
name = "AI Asteroid"
})
-"akb" = (
+"ajI" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -5130,14 +4945,14 @@
/area/mine/unexplored{
name = "AI Asteroid"
})
-"akc" = (
+"ajJ" = (
/obj/structure/disposaloutlet{
dir = 8
},
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
/area/quartermaster/sorting)
-"akd" = (
+"ajK" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -5146,7 +4961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ake" = (
+"ajL" = (
/obj/machinery/conveyor{
dir = 5;
icon_state = "conveyor0";
@@ -5157,7 +4972,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akf" = (
+"ajM" = (
/obj/machinery/conveyor{
dir = 8;
id = "CargoWaste"
@@ -5166,7 +4981,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akg" = (
+"ajN" = (
/obj/machinery/conveyor{
dir = 8;
id = "CargoWaste"
@@ -5178,7 +4993,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akh" = (
+"ajO" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -5189,7 +5004,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"aki" = (
+"ajP" = (
/obj/structure/disposalpipe/wrapsortjunction{
icon_state = "pipe-j1s";
dir = 8
@@ -5198,7 +5013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akj" = (
+"ajQ" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -5207,7 +5022,7 @@
},
/turf/open/floor/plating/airless,
/area/quartermaster/sorting)
-"akk" = (
+"ajR" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -5216,7 +5031,7 @@
},
/turf/open/floor/plating/airless,
/area/space)
-"akl" = (
+"ajS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5225,7 +5040,7 @@
},
/turf/open/floor/plating,
/area/space)
-"akm" = (
+"ajT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5236,7 +5051,7 @@
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plating,
/area/space)
-"akn" = (
+"ajU" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -5244,7 +5059,7 @@
/obj/item/clothing/head/ushanka,
/turf/open/floor/plating,
/area/space)
-"ako" = (
+"ajV" = (
/obj/item/trash/can,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -5252,39 +5067,33 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"akp" = (
+"ajW" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"akq" = (
+"ajX" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"akr" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"aks" = (
+"ajY" = (
/obj/structure/bed,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akt" = (
+"ajZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aku" = (
+"aka" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/preopen{
id = "permatoggle";
@@ -5294,7 +5103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akv" = (
+"akb" = (
/obj/machinery/light{
dir = 8
},
@@ -5302,12 +5111,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akw" = (
+"akc" = (
/turf/open/floor/plasteel/darkred{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akx" = (
+"akd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -5319,7 +5128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aky" = (
+"ake" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -5327,7 +5136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akz" = (
+"akf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -5339,7 +5148,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akA" = (
+"akg" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/light{
dir = 4;
@@ -5349,7 +5158,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akB" = (
+"akh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -5365,7 +5174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"akC" = (
+"aki" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 1;
@@ -5376,7 +5185,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"akD" = (
+"akj" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -5385,7 +5194,7 @@
name = "ditch"
},
/area/security/transfer)
-"akE" = (
+"akk" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
@@ -5397,19 +5206,19 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"akF" = (
+"akl" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"akG" = (
+"akm" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Command Asteroid"
})
-"akH" = (
+"akn" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -5420,21 +5229,21 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"akI" = (
+"ako" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akJ" = (
+"akp" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akK" = (
+"akq" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -5456,7 +5265,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akL" = (
+"akr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5479,7 +5288,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akM" = (
+"aks" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5499,7 +5308,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akN" = (
+"akt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5512,7 +5321,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akO" = (
+"aku" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5525,7 +5334,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akP" = (
+"akv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5542,7 +5351,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akQ" = (
+"akw" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -5559,12 +5368,12 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"akR" = (
+"akx" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Cargo Asteroid"
})
-"akS" = (
+"aky" = (
/obj/machinery/conveyor{
dir = 9;
icon_state = "conveyor0";
@@ -5575,7 +5384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akT" = (
+"akz" = (
/obj/machinery/conveyor{
dir = 4;
id = "CargoWaste"
@@ -5585,7 +5394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akU" = (
+"akA" = (
/obj/machinery/conveyor{
dir = 4;
id = "CargoWaste"
@@ -5594,7 +5403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akV" = (
+"akB" = (
/obj/machinery/mineral/stacking_machine{
input_dir = 8;
output_dir = 2
@@ -5603,7 +5412,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akW" = (
+"akC" = (
/obj/machinery/mineral/stacking_unit_console{
dir = 2;
machinedir = 8
@@ -5612,21 +5421,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"akX" = (
+"akD" = (
/obj/item/trash/candy,
/turf/open/floor/plating,
/area/space)
-"akY" = (
+"akE" = (
/obj/effect/decal/remains/human,
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/space)
-"akZ" = (
+"akF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/glowshroom/single,
/turf/open/floor/plating,
/area/space)
-"ala" = (
+"akG" = (
/obj/structure/chair{
dir = 8
},
@@ -5636,7 +5445,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alb" = (
+"akH" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -5647,7 +5456,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alc" = (
+"akI" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -5655,7 +5464,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ald" = (
+"akJ" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -5666,7 +5475,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ale" = (
+"akK" = (
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
@@ -5675,7 +5484,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alf" = (
+"akL" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -5684,19 +5493,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alg" = (
+"akM" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alh" = (
+"akN" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ali" = (
+"akO" = (
/obj/structure/bed,
/obj/machinery/flasher{
id = "PermaCell";
@@ -5707,14 +5516,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alj" = (
+"akP" = (
/obj/structure/bed,
/obj/machinery/light,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alk" = (
+"akQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -5723,7 +5532,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"all" = (
+"akR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -5739,7 +5548,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alm" = (
+"akS" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -5758,13 +5567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aln" = (
-/obj/structure/mineral_door/iron{
- name = "Transfer Center"
- },
-/turf/open/floor/plating/asteroid,
-/area/security/transfer)
-"alo" = (
+"akT" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -5773,7 +5576,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alp" = (
+"akU" = (
/obj/structure/curtain,
/obj/machinery/shower{
pixel_y = 24
@@ -5782,7 +5585,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alq" = (
+"akV" = (
/obj/structure/curtain,
/obj/machinery/shower{
pixel_y = 24
@@ -5792,7 +5595,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alr" = (
+"akW" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -5803,7 +5606,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"als" = (
+"akX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -5817,7 +5620,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"alt" = (
+"akY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -5827,7 +5630,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"alu" = (
+"akZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -5837,7 +5640,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"alv" = (
+"ala" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -5848,7 +5651,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"alw" = (
+"alb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
/turf/open/floor/plating{
@@ -5857,12 +5660,12 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"alx" = (
+"alc" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Cargo Asteroid"
})
-"aly" = (
+"ald" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -5870,7 +5673,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alz" = (
+"ale" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -5879,7 +5682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alA" = (
+"alf" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -5890,7 +5693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alB" = (
+"alg" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -5899,7 +5702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alC" = (
+"alh" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -5907,40 +5710,40 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alD" = (
+"ali" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alE" = (
+"alj" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"alF" = (
+"alk" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Cargo Asteroid"
})
-"alG" = (
+"all" = (
/obj/item/trash/can,
/turf/open/floor/plating,
/area/space)
-"alH" = (
+"alm" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alI" = (
+"aln" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alJ" = (
+"alo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Holding Cell";
@@ -5952,7 +5755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alK" = (
+"alp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -5963,7 +5766,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"alL" = (
+"alq" = (
/obj/machinery/light/small{
dir = 8
},
@@ -5975,7 +5778,7 @@
name = "ditch"
},
/area/security/transfer)
-"alM" = (
+"alr" = (
/obj/item/weapon/shovel,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -5984,7 +5787,7 @@
name = "ditch"
},
/area/security/transfer)
-"alN" = (
+"als" = (
/obj/item/weapon/ore/glass,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -5993,7 +5796,7 @@
name = "ditch"
},
/area/security/transfer)
-"alO" = (
+"alt" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -6001,7 +5804,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alP" = (
+"alu" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/emergency,
/obj/item/weapon/shovel,
@@ -6012,7 +5815,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alQ" = (
+"alv" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -6020,7 +5823,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alR" = (
+"alw" = (
/obj/machinery/light/small{
dir = 1
},
@@ -6028,7 +5831,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alS" = (
+"alx" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -6036,7 +5839,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alT" = (
+"aly" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating/astplate{
@@ -6045,7 +5848,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"alU" = (
+"alz" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/stamp/captain,
@@ -6053,7 +5856,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alV" = (
+"alA" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/obj/machinery/light/small{
@@ -6063,7 +5866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alW" = (
+"alB" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -6074,7 +5877,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alX" = (
+"alC" = (
/obj/item/weapon/storage/secure/safe{
pixel_y = 32
},
@@ -6082,12 +5885,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alY" = (
+"alD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"alZ" = (
+"alE" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -6101,13 +5904,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"ama" = (
+"alF" = (
/obj/item/weapon/soap/deluxe,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amb" = (
+"alG" = (
/obj/machinery/light/small{
dir = 8
},
@@ -6117,21 +5920,21 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amc" = (
+"alH" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"amd" = (
+"alI" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ame" = (
+"alJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -6139,13 +5942,13 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"amf" = (
+"alK" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"amg" = (
+"alL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -6154,7 +5957,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"amh" = (
+"alM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -6162,7 +5965,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ami" = (
+"alN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -6176,7 +5979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"amj" = (
+"alO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -6184,7 +5987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"amk" = (
+"alP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -6194,7 +5997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"aml" = (
+"alQ" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -6205,7 +6008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"amm" = (
+"alR" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 4";
@@ -6217,7 +6020,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amn" = (
+"alS" = (
/obj/machinery/flasher{
id = "Cell 4";
pixel_x = 0;
@@ -6227,7 +6030,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amo" = (
+"alT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -6236,7 +6039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amp" = (
+"alU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -6250,7 +6053,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amq" = (
+"alV" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -6289,7 +6092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amr" = (
+"alW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -6303,7 +6106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ams" = (
+"alX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -6316,7 +6119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amt" = (
+"alY" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -6334,7 +6137,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amu" = (
+"alZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -6352,7 +6155,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amv" = (
+"ama" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -6367,7 +6170,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amw" = (
+"amb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -6383,7 +6186,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amx" = (
+"amc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6401,7 +6204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amy" = (
+"amd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6414,7 +6217,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amz" = (
+"ame" = (
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -6430,7 +6233,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amA" = (
+"amf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -6446,7 +6249,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amB" = (
+"amg" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -6465,7 +6268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amC" = (
+"amh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -6479,7 +6282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amD" = (
+"ami" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -6489,7 +6292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amE" = (
+"amj" = (
/obj/machinery/flasher{
id = "Cell 8";
pixel_x = 0;
@@ -6499,7 +6302,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amF" = (
+"amk" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 8";
@@ -6513,7 +6316,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"amG" = (
+"aml" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_plating = "asteroid_dug";
@@ -6521,7 +6324,7 @@
name = "ditch"
},
/area/security/transfer)
-"amH" = (
+"amm" = (
/obj/machinery/light/small{
dir = 8
},
@@ -6536,7 +6339,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amI" = (
+"amn" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -6548,7 +6351,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amJ" = (
+"amo" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -6564,7 +6367,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amK" = (
+"amp" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -6579,7 +6382,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amL" = (
+"amq" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -6595,7 +6398,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amM" = (
+"amr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -6611,7 +6414,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amN" = (
+"ams" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -6627,14 +6430,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"amO" = (
+"amt" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amP" = (
+"amu" = (
/obj/structure/chair{
dir = 1
},
@@ -6642,18 +6445,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amQ" = (
+"amv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amR" = (
+"amw" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amS" = (
+"amx" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -6661,18 +6464,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amT" = (
+"amy" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amU" = (
+"amz" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amV" = (
+"amA" = (
/obj/machinery/door/airlock{
id_tag = "bc"
},
@@ -6680,7 +6483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amW" = (
+"amB" = (
/obj/machinery/button/door{
id = "bc";
name = "Privacy Bolts";
@@ -6698,14 +6501,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"amX" = (
+"amC" = (
/obj/machinery/camera/motion{
c_tag = "Bridge Escape Pod External";
dir = 8
},
/turf/open/space,
/area/space)
-"amY" = (
+"amD" = (
/obj/machinery/power/apc{
dir = 2;
name = "AI Asteroid Maintenance APC";
@@ -6721,7 +6524,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"amZ" = (
+"amE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -6740,7 +6543,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"ana" = (
+"amF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "AI Asteroid Hallway 2";
@@ -6755,7 +6558,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"anb" = (
+"amG" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -6763,7 +6566,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"anc" = (
+"amH" = (
/obj/machinery/light{
dir = 4
},
@@ -6773,12 +6576,12 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"and" = (
+"amI" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Cargo Asteroid"
})
-"ane" = (
+"amJ" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposals";
req_access_txt = "12;31"
@@ -6787,7 +6590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anf" = (
+"amK" = (
/obj/structure/table,
/obj/item/weapon/storage/box,
/obj/item/weapon/storage/box,
@@ -6798,7 +6601,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ang" = (
+"amL" = (
/obj/structure/table,
/obj/item/device/destTagger,
/obj/item/stack/packageWrap,
@@ -6807,37 +6610,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anh" = (
+"amM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ani" = (
+"amN" = (
/obj/machinery/light,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anj" = (
+"amO" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"ank" = (
+"amP" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"anl" = (
+"amQ" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plating/airless,
/area/space)
-"anm" = (
+"amR" = (
/obj/machinery/light/small{
dir = 8
},
@@ -6846,12 +6649,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ann" = (
+"amS" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ano" = (
+"amT" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 4";
name = "Cell Door 4";
@@ -6863,7 +6666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anp" = (
+"amU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -6874,25 +6677,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anq" = (
+"amV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anr" = (
+"amW" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ans" = (
+"amX" = (
/turf/open/floor/plasteel/red{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ant" = (
+"amY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
icon_state = "redcorner";
@@ -6900,7 +6703,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anu" = (
+"amZ" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 8";
name = "Cell Door 8";
@@ -6912,13 +6715,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anv" = (
+"ana" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anw" = (
+"anb" = (
/obj/machinery/light/small{
dir = 4
},
@@ -6927,7 +6730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"anx" = (
+"anc" = (
/obj/effect/decal/remains/human,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -6936,7 +6739,7 @@
name = "ditch"
},
/area/security/transfer)
-"any" = (
+"and" = (
/obj/structure/disposalpipe/sortjunction{
name = "disposal pipe - Custodials";
sortType = 22
@@ -6947,7 +6750,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"anz" = (
+"ane" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -6963,7 +6766,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"anA" = (
+"anf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -6979,7 +6782,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"anB" = (
+"ang" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -7000,7 +6803,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"anC" = (
+"anh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -7012,7 +6815,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"anD" = (
+"ani" = (
/obj/machinery/power/apc{
dir = 4;
name = "Captain's Private Quarters APC";
@@ -7032,7 +6835,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"anE" = (
+"anj" = (
/obj/structure/table/wood,
/obj/item/weapon/pinpointer,
/obj/item/weapon/disk/nuclear,
@@ -7040,7 +6843,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"anF" = (
+"ank" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -7048,14 +6851,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"anG" = (
+"anl" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"anH" = (
+"anm" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -7064,7 +6867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"anI" = (
+"ann" = (
/obj/docking_port/stationary/random{
dir = 1;
id = "pod_lavaland1";
@@ -7072,7 +6875,7 @@
},
/turf/open/space,
/area/space)
-"anJ" = (
+"ano" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -7089,7 +6892,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"anK" = (
+"anp" = (
/obj/machinery/ai_status_display{
pixel_x = 32
},
@@ -7099,7 +6902,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"anL" = (
+"anq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -7110,7 +6913,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"anM" = (
+"anr" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -7126,19 +6929,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anN" = (
+"ans" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"anO" = (
+"ant" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anP" = (
+"anu" = (
/obj/machinery/door/airlock/glass_mining{
name = "Disposals";
req_access_txt = "31"
@@ -7148,7 +6951,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anQ" = (
+"anv" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -7157,22 +6960,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"anR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"anS" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/space,
-/area/space)
-"anT" = (
+"anw" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -7181,7 +6969,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"anU" = (
+"anx" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -7190,18 +6978,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"anV" = (
+"any" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"anW" = (
+"anz" = (
/obj/structure/rack,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"anX" = (
+"anA" = (
/obj/structure/rack,
/obj/item/weapon/shovel,
/obj/item/clothing/glasses/material/mining,
@@ -7209,7 +6997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"anY" = (
+"anB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -7219,7 +7007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"anZ" = (
+"anC" = (
/obj/structure/closet/crate,
/obj/item/device/flashlight/lantern,
/obj/item/device/flashlight/lantern,
@@ -7227,7 +7015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aoa" = (
+"anD" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 4";
name = "Cell 4 Locker"
@@ -7236,7 +7024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aob" = (
+"anE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -7247,7 +7035,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aoc" = (
+"anF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -7261,7 +7049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aod" = (
+"anG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -7280,7 +7068,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aoe" = (
+"anH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -7290,17 +7078,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aof" = (
+"anI" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aog" = (
+"anJ" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aoh" = (
+"anK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -7316,7 +7104,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aoi" = (
+"anL" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -7335,7 +7123,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aoj" = (
+"anM" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -7349,7 +7137,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aok" = (
+"anN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -7365,7 +7153,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aol" = (
+"anO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -7375,7 +7163,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aom" = (
+"anP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -7394,7 +7182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aon" = (
+"anQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -7408,7 +7196,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aoo" = (
+"anR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -7418,7 +7206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aop" = (
+"anS" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 8";
name = "Cell 8 Locker"
@@ -7427,7 +7215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aoq" = (
+"anT" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -7435,7 +7223,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aor" = (
+"anU" = (
/obj/machinery/light/small{
dir = 1
},
@@ -7448,18 +7236,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aos" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/grille,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aot" = (
+"anV" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -7470,18 +7247,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aou" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aov" = (
+"anW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7492,7 +7258,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aow" = (
+"anX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -7508,7 +7274,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aox" = (
+"anY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -7521,7 +7287,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aoy" = (
+"anZ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -7529,13 +7295,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aoz" = (
+"aoa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoA" = (
+"aob" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -7543,7 +7309,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoB" = (
+"aoc" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7554,7 +7320,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoC" = (
+"aod" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -7562,7 +7328,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoD" = (
+"aoe" = (
/obj/machinery/suit_storage_unit/captain,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -7571,7 +7337,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoE" = (
+"aof" = (
/obj/machinery/light/small{
dir = 1
},
@@ -7583,7 +7349,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoF" = (
+"aog" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -7599,7 +7365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoG" = (
+"aoh" = (
/obj/machinery/door/window/eastright{
name = "Captain's Desk";
req_access_txt = "20"
@@ -7614,7 +7380,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoH" = (
+"aoi" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -7627,7 +7393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoI" = (
+"aoj" = (
/obj/machinery/light{
dir = 1
},
@@ -7637,7 +7403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoJ" = (
+"aok" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/lockbox/medal,
/obj/machinery/camera{
@@ -7647,30 +7413,30 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoK" = (
+"aol" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoL" = (
+"aom" = (
/obj/structure/displaycase/captain,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aoM" = (
+"aon" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
-"aoN" = (
+"aoo" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_1)
-"aoO" = (
+"aop" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light/small{
dir = 4
@@ -7688,7 +7454,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aoP" = (
+"aoq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 8
@@ -7700,7 +7466,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aoQ" = (
+"aor" = (
/obj/machinery/light/small{
dir = 8
},
@@ -7708,7 +7474,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aoR" = (
+"aos" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -7720,7 +7486,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aoS" = (
+"aot" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -7737,7 +7503,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aoT" = (
+"aou" = (
/obj/machinery/power/apc{
dir = 4;
name = "Cargo APC";
@@ -7757,12 +7523,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aoU" = (
+"aov" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aoV" = (
+"aow" = (
/obj/machinery/light{
dir = 1
},
@@ -7771,13 +7537,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aoW" = (
+"aox" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aoX" = (
+"aoy" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -7786,7 +7552,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aoY" = (
+"aoz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -7794,10 +7560,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aoZ" = (
+"aoA" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/supply)
-"apa" = (
+"aoB" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -7806,7 +7572,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"apb" = (
+"aoC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7814,7 +7580,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"apc" = (
+"aoD" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -7823,7 +7589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"apd" = (
+"aoE" = (
/obj/machinery/light{
dir = 1
},
@@ -7831,7 +7597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"ape" = (
+"aoF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -7839,7 +7605,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"apf" = (
+"aoG" = (
/obj/machinery/door/poddoor/shutters{
id = "MiningWarehouse"
},
@@ -7847,7 +7613,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apg" = (
+"aoH" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -7855,26 +7621,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aph" = (
+"aoI" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"api" = (
+"aoJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apj" = (
+"aoK" = (
/obj/structure/closet/crate,
/obj/item/weapon/ore/slag,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apk" = (
+"aoL" = (
/obj/machinery/door_timer{
id = "Cell 4";
name = "Cell 4";
@@ -7891,7 +7657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apl" = (
+"aoM" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -7900,7 +7666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apm" = (
+"aoN" = (
/obj/machinery/power/apc{
dir = 8;
name = "Brig Control APC";
@@ -7915,7 +7681,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apn" = (
+"aoO" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -7930,12 +7696,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apo" = (
+"aoP" = (
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"app" = (
+"aoQ" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas/sechailer{
pixel_x = -3;
@@ -7961,7 +7727,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"apq" = (
+"aoR" = (
/obj/machinery/light{
dir = 8
},
@@ -7969,7 +7735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apr" = (
+"aoS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -7977,24 +7743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aps" = (
-/obj/machinery/door_timer{
- id = "Cell 8";
- name = "Cell 8";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"apt" = (
+"aoT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -8015,7 +7764,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"apu" = (
+"aoU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -8027,12 +7776,12 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"apv" = (
+"aoV" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"apw" = (
+"aoW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8046,32 +7795,32 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"apx" = (
+"aoX" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"apy" = (
+"aoY" = (
/obj/structure/dresser,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apz" = (
+"aoZ" = (
/obj/structure/closet/secure_closet/captains,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apA" = (
+"apa" = (
/obj/machinery/light/small,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apB" = (
+"apb" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
req_access = null;
@@ -8081,13 +7830,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apC" = (
+"apc" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apD" = (
+"apd" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4;
@@ -8098,19 +7847,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apE" = (
+"ape" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apF" = (
+"apf" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apG" = (
+"apg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -8118,18 +7867,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apH" = (
+"aph" = (
/mob/living/simple_animal/pet/fox/Renault,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apI" = (
+"api" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"apJ" = (
+"apj" = (
/obj/structure/chair{
dir = 1
},
@@ -8149,7 +7898,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"apK" = (
+"apk" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -8166,7 +7915,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"apL" = (
+"apl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -8178,7 +7927,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"apM" = (
+"apm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -8190,7 +7939,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"apN" = (
+"apn" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -8201,13 +7950,13 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"apO" = (
+"apo" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"apP" = (
+"app" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -8220,22 +7969,22 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"apQ" = (
+"apq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"apR" = (
+"apr" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/supply)
-"apS" = (
+"aps" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"apT" = (
+"apt" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -8248,7 +7997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apU" = (
+"apu" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -8257,13 +8006,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apV" = (
+"apv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apW" = (
+"apw" = (
/obj/machinery/light/small{
dir = 4
},
@@ -8272,7 +8021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"apX" = (
+"apx" = (
/obj/machinery/power/apc{
dir = 4;
name = "Cell Block APC";
@@ -8289,7 +8038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apY" = (
+"apy" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 3";
@@ -8301,7 +8050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"apZ" = (
+"apz" = (
/obj/machinery/flasher{
id = "Cell 3";
pixel_x = 0;
@@ -8311,7 +8060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqa" = (
+"apA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8329,7 +8078,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqb" = (
+"apB" = (
/obj/structure/table,
/obj/machinery/firealarm{
dir = 8;
@@ -8345,7 +8094,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqc" = (
+"apC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8355,7 +8104,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqd" = (
+"apD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -8363,7 +8112,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqe" = (
+"apE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -8373,7 +8122,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqf" = (
+"apF" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/newscaster/security_unit{
@@ -8383,7 +8132,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqg" = (
+"apG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8401,7 +8150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqh" = (
+"apH" = (
/obj/machinery/flasher{
id = "Cell 7";
pixel_x = 0;
@@ -8411,7 +8160,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqi" = (
+"apI" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 7";
@@ -8424,7 +8173,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqj" = (
+"apJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8437,7 +8186,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aqk" = (
+"apK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8451,7 +8200,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aql" = (
+"apL" = (
/obj/machinery/power/apc{
dir = 2;
name = "Dorm APC";
@@ -8467,7 +8216,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aqm" = (
+"apM" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -8475,7 +8224,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aqn" = (
+"apN" = (
/obj/machinery/light/small{
dir = 1
},
@@ -8483,21 +8232,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aqo" = (
+"apO" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aqp" = (
+"apP" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aqq" = (
+"apQ" = (
/obj/machinery/light/small{
dir = 1
},
@@ -8510,7 +8259,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aqr" = (
+"apR" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/obj/effect/landmark/start/assistant,
@@ -8518,7 +8267,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aqs" = (
+"apS" = (
/obj/machinery/camera/motion{
c_tag = "Bridge Maintenance Eastl";
dir = 8
@@ -8530,7 +8279,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aqt" = (
+"apT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -8538,7 +8287,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqu" = (
+"apU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -8546,7 +8295,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqv" = (
+"apV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8554,7 +8303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqw" = (
+"apW" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced,
/obj/item/weapon/hand_tele,
@@ -8562,7 +8311,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqx" = (
+"apX" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/card,
/obj/item/weapon/card/id/captains_spare,
@@ -8570,14 +8319,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqy" = (
+"apY" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/communications,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqz" = (
+"apZ" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4;
@@ -8589,7 +8338,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqA" = (
+"aqa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -8597,7 +8346,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqB" = (
+"aqb" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -8609,7 +8358,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqC" = (
+"aqc" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -8619,14 +8368,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqD" = (
+"aqd" = (
/obj/structure/table/wood,
/obj/item/toy/figure/captain,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqE" = (
+"aqe" = (
/obj/structure/chair/comfy/brown{
dir = 8
},
@@ -8634,7 +8383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aqF" = (
+"aqf" = (
/obj/structure/chair{
dir = 1
},
@@ -8646,7 +8395,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aqG" = (
+"aqg" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -8654,13 +8403,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aqH" = (
+"aqh" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aqI" = (
+"aqi" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -8672,7 +8421,7 @@
},
/turf/open/space,
/area/space)
-"aqJ" = (
+"aqj" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -8682,7 +8431,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aqK" = (
+"aqk" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -8690,7 +8439,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aqL" = (
+"aql" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -8698,14 +8447,14 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"aqM" = (
+"aqm" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/space,
/area/space)
-"aqN" = (
+"aqn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -8718,7 +8467,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aqO" = (
+"aqo" = (
/obj/machinery/camera{
c_tag = "Cargo Western Loading Bay 2";
dir = 5;
@@ -8729,13 +8478,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aqP" = (
+"aqp" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aqQ" = (
+"aqq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -8743,7 +8492,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aqR" = (
+"aqr" = (
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
@@ -8751,7 +8500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqS" = (
+"aqs" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8760,7 +8509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqT" = (
+"aqt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8768,13 +8517,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqU" = (
+"aqu" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aqV" = (
+"aqv" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 3";
name = "Cell Door 3";
@@ -8786,7 +8535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aqW" = (
+"aqw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -8802,22 +8551,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqX" = (
+"aqx" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aqY" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/landmark/start/warden,
-/turf/open/floor/plasteel/showroomfloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/warden)
-"aqZ" = (
+"aqy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -8828,13 +8568,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"ara" = (
+"aqz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arb" = (
+"aqA" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -8842,13 +8582,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arc" = (
+"aqB" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"ard" = (
+"aqC" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 7";
name = "Cell Door 7";
@@ -8860,12 +8600,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"are" = (
+"aqD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arf" = (
+"aqE" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -8874,12 +8614,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"arg" = (
+"aqF" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"arh" = (
+"aqG" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/obj/structure/window,
@@ -8887,7 +8627,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"ari" = (
+"aqH" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -8897,7 +8637,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"arj" = (
+"aqI" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/obj/structure/window,
@@ -8905,7 +8645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"ark" = (
+"aqJ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/obj/structure/window,
@@ -8913,7 +8653,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"arl" = (
+"aqK" = (
/obj/machinery/camera{
c_tag = "Fore Asteroid Maintenance APCs 2";
dir = 5;
@@ -8925,7 +8665,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"arm" = (
+"aqL" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -8935,7 +8675,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"arn" = (
+"aqM" = (
/obj/machinery/computer/arcade,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -8944,7 +8684,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"aro" = (
+"aqN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -8952,7 +8692,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"arp" = (
+"aqO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -8961,7 +8701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"arq" = (
+"aqP" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -8970,7 +8710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"arr" = (
+"aqQ" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -8981,20 +8721,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"ars" = (
+"aqR" = (
/obj/structure/table/wood,
/obj/item/device/camera,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"art" = (
+"aqS" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_1)
-"aru" = (
+"aqT" = (
/obj/machinery/door/airlock/shuttle{
name = "Escape Pod Airlock"
},
@@ -9008,7 +8748,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_1)
-"arv" = (
+"aqU" = (
/obj/structure/closet/crate,
/obj/item/weapon/pickaxe/mini,
/obj/effect/spawner/lootdrop/maintenance,
@@ -9018,44 +8758,16 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"arw" = (
+"aqV" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"arx" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"ary" = (
+"aqW" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"arz" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"arA" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"arB" = (
+"aqX" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 4";
dir = 8;
@@ -9065,12 +8777,12 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"arC" = (
+"aqY" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"arD" = (
+"aqZ" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -9082,21 +8794,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arE" = (
+"ara" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arF" = (
+"arb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arG" = (
+"arc" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -9105,7 +8817,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arH" = (
+"ard" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -9118,7 +8830,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arI" = (
+"are" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -9127,7 +8839,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arJ" = (
+"arf" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -9138,14 +8850,14 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"arK" = (
+"arg" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"arL" = (
+"arh" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Supply Dock Airlock";
@@ -9155,25 +8867,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arM" = (
+"ari" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arN" = (
+"arj" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arO" = (
+"ark" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arP" = (
+"arl" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -9192,14 +8904,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"arQ" = (
+"arm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"arR" = (
+"arn" = (
/obj/machinery/button/door{
id = "MiningWarehouse";
name = "Mining Warehouse Shutters";
@@ -9211,12 +8923,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"arS" = (
+"aro" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"arT" = (
+"arp" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
@@ -9225,7 +8937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"arU" = (
+"arq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -9236,7 +8948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"arV" = (
+"arr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -9262,7 +8974,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arW" = (
+"ars" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -9273,7 +8985,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arX" = (
+"art" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -9283,7 +8995,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arY" = (
+"aru" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -9304,7 +9016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"arZ" = (
+"arv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -9315,7 +9027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asa" = (
+"arw" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 1;
@@ -9348,7 +9060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asb" = (
+"arx" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 7";
name = "Cell 7 Locker"
@@ -9357,7 +9069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"asc" = (
+"ary" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -9373,7 +9085,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"asd" = (
+"arz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -9389,7 +9101,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ase" = (
+"arA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9397,7 +9109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asf" = (
+"arB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9410,7 +9122,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asg" = (
+"arC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -9421,7 +9133,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ash" = (
+"arD" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -9438,7 +9150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"asi" = (
+"arE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9446,7 +9158,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"asj" = (
+"arF" = (
/obj/machinery/light_switch{
pixel_x = -25
},
@@ -9460,7 +9172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"ask" = (
+"arG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9471,7 +9183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"asl" = (
+"arH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9482,7 +9194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"asm" = (
+"arI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -9498,7 +9210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"asn" = (
+"arJ" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -9516,14 +9228,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aso" = (
+"arK" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"asp" = (
+"arL" = (
/obj/machinery/vending/cigarette{
extended_inventory = 1
},
@@ -9531,7 +9243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"asq" = (
+"arM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -9540,7 +9252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"asr" = (
+"arN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -9548,7 +9260,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"ass" = (
+"arO" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -9556,7 +9268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"ast" = (
+"arP" = (
/obj/structure/table/wood,
/obj/item/device/camera_film,
/obj/item/device/camera_film,
@@ -9564,12 +9276,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"asu" = (
+"arQ" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"asv" = (
+"arR" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Command Escape Pod"
@@ -9578,20 +9290,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"asw" = (
+"arS" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"asx" = (
+"arT" = (
/obj/structure/closet/crate,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"asy" = (
+"arU" = (
/obj/machinery/light/small{
dir = 1
},
@@ -9599,7 +9311,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"asz" = (
+"arV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -9614,7 +9326,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"asA" = (
+"arW" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -9625,7 +9337,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asB" = (
+"arX" = (
/obj/machinery/conveyor_switch{
id = "QMLoad"
},
@@ -9633,7 +9345,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asC" = (
+"arY" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Supply Dock Airlock";
@@ -9647,7 +9359,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asD" = (
+"arZ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Supply Dock Airlock";
@@ -9661,7 +9373,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asE" = (
+"asa" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -9672,7 +9384,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"asF" = (
+"asb" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Supply Dock Airlock";
@@ -9682,7 +9394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asG" = (
+"asc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -9692,7 +9404,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asH" = (
+"asd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = 24
@@ -9701,7 +9413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"asI" = (
+"ase" = (
/obj/machinery/door/poddoor/shutters{
id = "MiningWarehouse"
},
@@ -9710,7 +9422,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"asJ" = (
+"asf" = (
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
@@ -9719,27 +9431,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"asK" = (
+"asg" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/mining)
-"asL" = (
+"ash" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/mining)
-"asM" = (
+"asi" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asN" = (
+"asj" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asO" = (
+"ask" = (
/obj/structure/table,
/obj/machinery/light{
dir = 1
@@ -9749,14 +9461,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asP" = (
+"asl" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/toxin,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"asQ" = (
+"asm" = (
/obj/machinery/door_timer{
id = "Cell 3";
name = "Cell 3";
@@ -9773,7 +9485,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"asR" = (
+"asn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -9786,13 +9498,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asS" = (
+"aso" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asT" = (
+"asp" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -9800,13 +9512,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asU" = (
+"asq" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"asV" = (
+"asr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel/red/side{
@@ -9815,24 +9527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"asW" = (
-/obj/machinery/door_timer{
- id = "Cell 7";
- name = "Cell 7";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"asX" = (
+"ass" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/floorgrime{
@@ -9841,7 +9536,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"asY" = (
+"ast" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/sign/poster/random{
@@ -9857,7 +9552,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"asZ" = (
+"asu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -9870,44 +9565,37 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ata" = (
+"asv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atb" = (
+"asw" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atc" = (
+"asx" = (
/obj/structure/table/wood,
/obj/item/toy/dummy,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atd" = (
+"asy" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ate" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant,
+"asz" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"atf" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/locker)
-"atg" = (
+"asA" = (
/obj/machinery/door/airlock{
name = "Female Sleeping Quarters"
},
@@ -9918,12 +9606,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"ath" = (
+"asB" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"ati" = (
+"asC" = (
/obj/machinery/light{
dir = 4
},
@@ -9931,7 +9619,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"atj" = (
+"asD" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -9940,7 +9628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"atk" = (
+"asE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -9954,7 +9642,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"atl" = (
+"asF" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/cmo,
/obj/machinery/airalarm{
@@ -9972,7 +9660,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"atm" = (
+"asG" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -9982,7 +9670,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"atn" = (
+"asH" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
@@ -9991,7 +9679,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"ato" = (
+"asI" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
@@ -10000,20 +9688,20 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"atp" = (
+"asJ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"atq" = (
+"asK" = (
/obj/machinery/vending/boozeomat,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"atr" = (
+"asL" = (
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
@@ -10023,13 +9711,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"ats" = (
+"asM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"att" = (
+"asN" = (
/obj/machinery/light_switch{
pixel_y = -24
},
@@ -10038,18 +9726,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"atu" = (
+"asO" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"atv" = (
+"asP" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"atw" = (
+"asQ" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
@@ -10058,7 +9746,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"atx" = (
+"asR" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
@@ -10067,7 +9755,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"aty" = (
+"asS" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -10077,7 +9765,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"atz" = (
+"asT" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/ce,
/obj/machinery/airalarm{
@@ -10095,7 +9783,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"atA" = (
+"asU" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chief Engineer's Private Quarters APC";
@@ -10117,7 +9805,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"atB" = (
+"asV" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = -32;
@@ -10129,18 +9817,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"atC" = (
+"asW" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"atD" = (
+"asX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"atE" = (
+"asY" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -10152,7 +9840,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"atF" = (
+"asZ" = (
/obj/machinery/holopad,
/obj/machinery/button/door{
dir = 2;
@@ -10171,7 +9859,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"atG" = (
+"ata" = (
/obj/machinery/button/door{
dir = 2;
id = "QMLoaddoor2";
@@ -10187,14 +9875,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/supply)
-"atH" = (
+"atb" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"atI" = (
+"atc" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -10207,13 +9895,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"atJ" = (
+"atd" = (
/obj/structure/closet/secure_closet/miner,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atK" = (
+"ate" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -10225,13 +9913,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atL" = (
+"atf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atM" = (
+"atg" = (
/obj/structure/rack,
/obj/item/weapon/shovel,
/obj/item/weapon/pickaxe,
@@ -10246,7 +9934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atN" = (
+"ath" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -10254,7 +9942,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"atO" = (
+"ati" = (
/obj/structure/table,
/obj/machinery/light{
icon_state = "tube1";
@@ -10262,11 +9950,11 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"atP" = (
+"atj" = (
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"atQ" = (
+"atk" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4;
@@ -10274,12 +9962,12 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"atR" = (
+"atl" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"atS" = (
+"atm" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -10288,25 +9976,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"atT" = (
+"atn" = (
/obj/structure/closet/crate/freezer/blood,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"atU" = (
+"ato" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"atV" = (
+"atp" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"atW" = (
+"atq" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 2";
@@ -10318,7 +10006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"atX" = (
+"atr" = (
/obj/machinery/flasher{
id = "Cell 2";
pixel_x = 0;
@@ -10328,7 +10016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"atY" = (
+"ats" = (
/obj/structure/table,
/obj/item/key/security,
/obj/item/clothing/glasses/sunglasses,
@@ -10346,7 +10034,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"atZ" = (
+"att" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -10357,7 +10045,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aua" = (
+"atu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10370,7 +10058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aub" = (
+"atv" = (
/obj/structure/table,
/obj/machinery/light,
/obj/machinery/recharger,
@@ -10378,7 +10066,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"auc" = (
+"atw" = (
/obj/machinery/flasher{
id = "Cell 6";
pixel_x = 0;
@@ -10388,7 +10076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aud" = (
+"atx" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 6";
@@ -10401,7 +10089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aue" = (
+"aty" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -10413,7 +10101,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"auf" = (
+"atz" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -10421,7 +10109,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aug" = (
+"atA" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -10430,7 +10118,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"auh" = (
+"atB" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -10443,21 +10131,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aui" = (
+"atC" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"auj" = (
+"atD" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"auk" = (
+"atE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -10465,7 +10153,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aul" = (
+"atF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -10473,7 +10161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aum" = (
+"atG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -10484,7 +10172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aun" = (
+"atH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -10497,7 +10185,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"auo" = (
+"atI" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
@@ -10505,7 +10193,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aup" = (
+"atJ" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHWEST)";
icon_state = "neutral";
@@ -10513,7 +10201,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"auq" = (
+"atK" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -10533,7 +10221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"aur" = (
+"atL" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10552,7 +10240,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aus" = (
+"atM" = (
/obj/machinery/light/small{
dir = 4
},
@@ -10562,7 +10250,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aut" = (
+"atN" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -10572,14 +10260,14 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"auu" = (
+"atO" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"auv" = (
+"atP" = (
/obj/structure/chair{
dir = 1
},
@@ -10589,7 +10277,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"auw" = (
+"atQ" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
@@ -10598,13 +10286,13 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"aux" = (
+"atR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"auy" = (
+"atS" = (
/obj/machinery/door/airlock/command{
name = "Captain's Office";
req_access = null;
@@ -10615,13 +10303,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"auz" = (
+"atT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"auA" = (
+"atU" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
@@ -10630,7 +10318,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"auB" = (
+"atV" = (
/obj/structure/chair{
dir = 1
},
@@ -10640,14 +10328,14 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"auC" = (
+"atW" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"auD" = (
+"atX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -10660,7 +10348,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"auE" = (
+"atY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10673,14 +10361,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"auF" = (
+"atZ" = (
/obj/structure/closet/crate/medical,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"auG" = (
+"aua" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -10688,7 +10376,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"auH" = (
+"aub" = (
/obj/machinery/door/poddoor/shutters{
id = "CargoWarehouse"
},
@@ -10696,7 +10384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"auI" = (
+"auc" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -10704,7 +10392,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"auJ" = (
+"aud" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Supply Dock Airlock";
@@ -10718,7 +10406,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"auK" = (
+"aue" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Supply Dock Airlock";
@@ -10732,7 +10420,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"auL" = (
+"auf" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -10743,7 +10431,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"auM" = (
+"aug" = (
/obj/machinery/door/airlock/shuttle{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -10762,7 +10450,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"auN" = (
+"auh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -10772,13 +10460,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"auO" = (
+"aui" = (
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auP" = (
+"auj" = (
/obj/machinery/computer/security/mining{
network = list("MINE","AuxBase")
},
@@ -10786,7 +10474,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auQ" = (
+"auk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -10795,7 +10483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auR" = (
+"aul" = (
/obj/structure/closet/crate,
/obj/item/weapon/ore/silver,
/obj/item/weapon/ore/silver,
@@ -10804,28 +10492,28 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auS" = (
+"aum" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"auT" = (
+"aun" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"auU" = (
+"auo" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"auV" = (
+"aup" = (
/obj/machinery/gulag_teleporter,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"auW" = (
+"auq" = (
/obj/machinery/computer/gulag_teleporter_computer,
/obj/machinery/camera{
c_tag = "Labor Shuttle Dock North"
@@ -10834,7 +10522,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"auX" = (
+"aur" = (
/obj/machinery/computer/security{
name = "Labor Camp Monitoring";
network = list("Labor")
@@ -10847,7 +10535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"auY" = (
+"aus" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10861,7 +10549,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"auZ" = (
+"aut" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -10869,13 +10557,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ava" = (
+"auu" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"avb" = (
+"auv" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 2";
name = "Cell Door 2";
@@ -10887,7 +10575,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"avc" = (
+"auw" = (
/obj/structure/closet/secure_closet/warden{
pixel_x = 0
},
@@ -10901,7 +10589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"avd" = (
+"aux" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10912,7 +10600,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"ave" = (
+"auy" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/extinguisher_cabinet{
@@ -10922,7 +10610,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"avf" = (
+"auz" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 6";
name = "Cell Door 6";
@@ -10934,7 +10622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"avg" = (
+"auA" = (
/obj/structure/rack,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -10942,7 +10630,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"avh" = (
+"auB" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -10950,7 +10638,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"avi" = (
+"auC" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
@@ -10959,7 +10647,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"avj" = (
+"auD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -10975,7 +10663,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"avk" = (
+"auE" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -10989,7 +10677,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"avl" = (
+"auF" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -10998,21 +10686,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avm" = (
+"auG" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avn" = (
+"auH" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avo" = (
+"auI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -11023,7 +10711,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"avp" = (
+"auJ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/obj/structure/window{
@@ -11036,7 +10724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"avq" = (
+"auK" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/obj/structure/window{
@@ -11048,7 +10736,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"avr" = (
+"auL" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/obj/structure/window{
@@ -11060,7 +10748,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"avs" = (
+"auM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -11078,7 +10766,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"avt" = (
+"auN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11088,7 +10776,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"avu" = (
+"auO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11098,7 +10786,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"avv" = (
+"auP" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -11110,7 +10798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avw" = (
+"auQ" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -11125,7 +10813,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avx" = (
+"auR" = (
/obj/structure/table/wood,
/obj/machinery/vending/wallmed{
pixel_y = 32
@@ -11137,7 +10825,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avy" = (
+"auS" = (
/obj/structure/noticeboard{
pixel_y = 32
},
@@ -11147,7 +10835,7 @@
tag = "icon-darkblue (NORTHEAST)"
},
/area/bridge)
-"avz" = (
+"auT" = (
/obj/machinery/light/small{
dir = 1
},
@@ -11164,7 +10852,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avA" = (
+"auU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -11174,7 +10862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avB" = (
+"auV" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -11183,7 +10871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avC" = (
+"auW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/door{
id = "bridge";
@@ -11195,7 +10883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avD" = (
+"auX" = (
/obj/machinery/light/small{
dir = 1
},
@@ -11213,7 +10901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avE" = (
+"auY" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Bridge";
@@ -11226,7 +10914,7 @@
dir = 9
},
/area/bridge)
-"avF" = (
+"auZ" = (
/obj/machinery/camera{
c_tag = "Bridge Main 1"
},
@@ -11237,7 +10925,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avG" = (
+"ava" = (
/obj/structure/sign/pods{
pixel_y = 32
},
@@ -11248,7 +10936,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avH" = (
+"avb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -11259,7 +10947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"avI" = (
+"avc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11269,7 +10957,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"avJ" = (
+"avd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11279,7 +10967,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"avK" = (
+"ave" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -11297,7 +10985,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"avL" = (
+"avf" = (
/obj/machinery/power/apc{
dir = 4;
name = "Cargo Warehouse APC";
@@ -11322,7 +11010,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avM" = (
+"avg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -11330,7 +11018,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avN" = (
+"avh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11341,7 +11029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avO" = (
+"avi" = (
/obj/machinery/door/poddoor/shutters{
id = "CargoWarehouse"
},
@@ -11352,7 +11040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"avP" = (
+"avj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11363,7 +11051,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avQ" = (
+"avk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11373,14 +11061,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avR" = (
+"avl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avS" = (
+"avm" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -11392,7 +11080,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avT" = (
+"avn" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -11405,7 +11093,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"avU" = (
+"avo" = (
/obj/machinery/conveyor{
dir = 4;
id = "QMLoad"
@@ -11416,7 +11104,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"avV" = (
+"avp" = (
/obj/structure/closet/secure_closet/miner,
/obj/machinery/light{
icon_state = "tube1";
@@ -11426,19 +11114,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avW" = (
+"avq" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avX" = (
+"avr" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avY" = (
+"avs" = (
/obj/machinery/door/airlock/glass_mining{
cyclelinkeddir = 8;
name = "Mining Dock";
@@ -11448,7 +11136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"avZ" = (
+"avt" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Mining Dock Airlock";
@@ -11460,14 +11148,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"awa" = (
+"avu" = (
/obj/machinery/door/airlock/titanium{
name = "Mining Shuttle Airlock";
req_access_txt = "0"
},
/turf/open/floor/plating,
/area/shuttle/mining)
-"awb" = (
+"avv" = (
/obj/docking_port/mobile{
dir = 8;
dwidth = 3;
@@ -11491,15 +11179,15 @@
},
/turf/open/floor/plating,
/area/shuttle/mining)
-"awc" = (
+"avw" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
-"awd" = (
+"avx" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/labor)
-"awe" = (
+"avy" = (
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
icon_state = "intake";
@@ -11508,7 +11196,7 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
/area/space)
-"awf" = (
+"avz" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -11517,7 +11205,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awg" = (
+"avA" = (
/obj/structure/chair{
dir = 1
},
@@ -11525,7 +11213,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awh" = (
+"avB" = (
/obj/structure/table,
/obj/item/weapon/storage/box/prisoner,
/obj/machinery/airalarm{
@@ -11537,7 +11225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"awi" = (
+"avC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -11554,7 +11242,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"awj" = (
+"avD" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -11565,7 +11253,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"awk" = (
+"avE" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -11576,12 +11264,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awl" = (
+"avF" = (
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awm" = (
+"avG" = (
/obj/structure/sign/bluecross_2{
pixel_x = 32;
pixel_y = 32
@@ -11590,7 +11278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awn" = (
+"avH" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/machinery/light{
dir = 1
@@ -11599,7 +11287,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"awo" = (
+"avI" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 2";
name = "Cell 2 Locker"
@@ -11608,7 +11296,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awp" = (
+"avJ" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -11633,7 +11321,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"awq" = (
+"avK" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -11648,7 +11336,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"awr" = (
+"avL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -11665,7 +11353,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"aws" = (
+"avM" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -11675,7 +11363,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awt" = (
+"avN" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 6";
name = "Cell 6 Locker"
@@ -11684,7 +11372,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"awu" = (
+"avO" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -11695,7 +11383,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"awv" = (
+"avP" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -11713,52 +11401,52 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aww" = (
+"avQ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"awx" = (
+"avR" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"awy" = (
+"avS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"awz" = (
+"avT" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"awA" = (
+"avU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"awB" = (
+"avV" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"awC" = (
+"avW" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"awD" = (
+"avX" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -11777,7 +11465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"awE" = (
+"avY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -11798,7 +11486,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"awF" = (
+"avZ" = (
/obj/machinery/power/apc{
dir = 4;
name = "Chief Medical Officer's Private Quarters APC";
@@ -11824,7 +11512,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"awG" = (
+"awa" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -11832,7 +11520,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"awH" = (
+"awb" = (
/obj/structure/closet{
icon_door = "blue";
name = "Chief Medical Officer's Uniform"
@@ -11849,7 +11537,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"awI" = (
+"awc" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -11861,7 +11549,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"awJ" = (
+"awd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -11871,7 +11559,7 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"awK" = (
+"awe" = (
/obj/machinery/door/airlock/medical{
name = "Chief Medical Officer's Personal Quarters";
req_access_txt = "40"
@@ -11885,25 +11573,25 @@
/area/medical/cmo{
name = "Chief Medical Officer's Private Quarters"
})
-"awL" = (
+"awf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awM" = (
+"awg" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awN" = (
+"awh" = (
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 4;
tag = "icon-darkblue (EAST)"
},
/area/bridge)
-"awO" = (
+"awi" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 8
@@ -11913,25 +11601,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awP" = (
+"awj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awQ" = (
+"awk" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awR" = (
+"awl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awS" = (
+"awm" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4;
@@ -11942,14 +11630,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"awT" = (
+"awn" = (
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 8;
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"awU" = (
+"awo" = (
/obj/machinery/door/airlock/engineering{
name = "Chief Engineer's Personal Quarters";
req_access_txt = "56"
@@ -11963,7 +11651,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"awV" = (
+"awp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -11973,7 +11661,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"awW" = (
+"awq" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -11986,7 +11674,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"awX" = (
+"awr" = (
/obj/structure/closet{
icon_door = "yellow";
name = "Chief Engineer's Uniform"
@@ -12001,7 +11689,7 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"awY" = (
+"aws" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -12009,31 +11697,19 @@
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"awZ" = (
+"awt" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"axa" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 4";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"axb" = (
+"awu" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axc" = (
+"awv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/conveyor_switch{
id = "QMLoad"
@@ -12042,19 +11718,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axd" = (
+"aww" = (
/obj/machinery/mineral/equipment_vendor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"axe" = (
+"awx" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"axf" = (
+"awy" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -31;
@@ -12062,13 +11738,13 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axg" = (
+"awz" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axh" = (
+"awA" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -12077,18 +11753,18 @@
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"axi" = (
+"awB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/security/processing)
-"axj" = (
+"awC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/processing)
-"axk" = (
+"awD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -12104,7 +11780,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axl" = (
+"awE" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -12112,12 +11788,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axm" = (
+"awF" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axn" = (
+"awG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -12125,7 +11801,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axo" = (
+"awH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -12133,7 +11809,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"axp" = (
+"awI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12149,7 +11825,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"axq" = (
+"awJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -12159,7 +11835,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"axr" = (
+"awK" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -12168,19 +11844,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"axs" = (
+"awL" = (
/obj/structure/closet/l3closet/scientist,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"axt" = (
+"awM" = (
/obj/structure/closet/secure_closet/security/sec,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"axu" = (
+"awN" = (
/obj/machinery/door_timer{
id = "Cell 2";
name = "Cell 2";
@@ -12197,7 +11873,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axv" = (
+"awO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -12208,7 +11884,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axw" = (
+"awP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -12216,7 +11892,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axx" = (
+"awQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -12225,7 +11901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axy" = (
+"awR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12236,7 +11912,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axz" = (
+"awS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -12245,7 +11921,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axA" = (
+"awT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -12254,7 +11930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axB" = (
+"awU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -12265,7 +11941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axC" = (
+"awV" = (
/obj/machinery/door_timer{
id = "Cell 6";
name = "Cell 6";
@@ -12282,7 +11958,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"axD" = (
+"awW" = (
/obj/machinery/light/small{
dir = 1
},
@@ -12294,7 +11970,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"axE" = (
+"awX" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -12305,7 +11981,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"axF" = (
+"awY" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -12314,7 +11990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"axG" = (
+"awZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -12322,18 +11998,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"axH" = (
+"axa" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"axI" = (
+"axb" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"axJ" = (
+"axc" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -12343,13 +12019,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"axK" = (
+"axd" = (
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"axL" = (
+"axe" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -12360,26 +12036,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"axM" = (
+"axf" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief{
name = "Chief Engineer's Private Quarters"
})
-"axN" = (
+"axg" = (
/obj/structure/closet/crate/medical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axO" = (
+"axh" = (
/obj/structure/closet/crate/freezer,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axP" = (
+"axi" = (
/obj/machinery/button/door{
id = "CargoWarehouse";
name = "Cargo Warehouse Shutters";
@@ -12390,7 +12066,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"axQ" = (
+"axj" = (
/obj/machinery/button/door{
id = "CargoWarehouse";
name = "Cargo Warehouse Shutters";
@@ -12400,7 +12076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axR" = (
+"axk" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -12416,11 +12092,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axS" = (
+"axl" = (
/turf/open/floor/mineral/titanium/blue,
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/supply)
-"axT" = (
+"axm" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -12435,7 +12111,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axU" = (
+"axn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -12444,7 +12120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axV" = (
+"axo" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -12452,7 +12128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"axW" = (
+"axp" = (
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23;
@@ -12465,7 +12141,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"axX" = (
+"axq" = (
/obj/machinery/computer/shuttle/mining,
/obj/machinery/camera{
c_tag = "Mining Bay";
@@ -12478,22 +12154,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"axY" = (
+"axr" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"axZ" = (
+"axs" = (
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating,
/area/shuttle/mining)
-"aya" = (
+"axt" = (
/obj/structure/ore_box,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/mining)
-"ayb" = (
+"axu" = (
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"ayc" = (
+"axv" = (
/obj/machinery/button/flasher{
id = "gulagshuttleflasher";
name = "Flash Control";
@@ -12503,7 +12179,7 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"ayd" = (
+"axw" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 2;
pixel_x = 30;
@@ -12511,14 +12187,14 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"aye" = (
+"axx" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"ayf" = (
+"axy" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Labor Camp Shuttle Airlock";
@@ -12528,10 +12204,10 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/security/processing)
-"ayg" = (
+"axz" = (
/turf/open/floor/plating,
/area/security/processing)
-"ayh" = (
+"axA" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Labor Camp Shuttle Airlock";
@@ -12541,7 +12217,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"ayi" = (
+"axB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -12554,7 +12230,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"ayj" = (
+"axC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -12562,7 +12238,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"ayk" = (
+"axD" = (
/obj/machinery/door/airlock/security{
name = "Labor Shuttle";
req_access = null;
@@ -12575,7 +12251,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"ayl" = (
+"axE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12591,14 +12267,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aym" = (
+"axF" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayn" = (
+"axG" = (
/obj/structure/closet/bombcloset,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -12607,7 +12283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"ayo" = (
+"axH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -12616,7 +12292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"ayp" = (
+"axI" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 1";
@@ -12628,7 +12304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayq" = (
+"axJ" = (
/obj/machinery/flasher{
id = "Cell 1";
pixel_x = 0;
@@ -12638,7 +12314,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayr" = (
+"axK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12659,7 +12335,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ays" = (
+"axL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12673,7 +12349,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayt" = (
+"axM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12686,7 +12362,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayu" = (
+"axN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12719,7 +12395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayv" = (
+"axO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12737,7 +12413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayw" = (
+"axP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12754,7 +12430,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayx" = (
+"axQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -12775,7 +12451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayy" = (
+"axR" = (
/obj/machinery/flasher{
id = "Cell 5";
pixel_x = 0;
@@ -12785,7 +12461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayz" = (
+"axS" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Brig Cell 5";
@@ -12799,7 +12475,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"ayA" = (
+"axT" = (
/obj/machinery/power/apc{
dir = 2;
name = "Vault APC";
@@ -12818,7 +12494,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"ayB" = (
+"axU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12831,7 +12507,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayC" = (
+"axV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -12849,7 +12525,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayD" = (
+"axW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12867,7 +12543,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayE" = (
+"axX" = (
/obj/machinery/door/airlock/maintenance{
name = "Dorm SMES Access";
req_access_txt = "10;11;12"
@@ -12883,7 +12559,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayF" = (
+"axY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -12898,7 +12574,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayG" = (
+"axZ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -12911,7 +12587,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"ayH" = (
+"aya" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -12920,14 +12596,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayI" = (
+"ayb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayJ" = (
+"ayc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -12935,7 +12611,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayK" = (
+"ayd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -12946,7 +12622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayL" = (
+"aye" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -12955,7 +12631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"ayM" = (
+"ayf" = (
/obj/machinery/light/small{
dir = 1
},
@@ -12963,14 +12639,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"ayN" = (
+"ayg" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"ayO" = (
+"ayh" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/obj/effect/landmark/start/assistant,
@@ -12978,21 +12654,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"ayP" = (
+"ayi" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"ayQ" = (
+"ayj" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"ayR" = (
+"ayk" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/hos,
/obj/machinery/airalarm{
@@ -13010,7 +12686,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"ayS" = (
+"ayl" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -13020,7 +12696,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"ayT" = (
+"aym" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
@@ -13029,7 +12705,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"ayU" = (
+"ayn" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/stamp/hos,
@@ -13039,14 +12715,14 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"ayV" = (
+"ayo" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"ayW" = (
+"ayp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -13055,7 +12731,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayX" = (
+"ayq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -13063,7 +12739,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayY" = (
+"ayr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -13073,7 +12749,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"ayZ" = (
+"ays" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -13082,7 +12758,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aza" = (
+"ayt" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/card,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13094,14 +12770,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azb" = (
+"ayu" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/communications,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azc" = (
+"ayv" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/security,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -13112,7 +12788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azd" = (
+"ayw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -13121,7 +12797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aze" = (
+"ayx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13129,7 +12805,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azf" = (
+"ayy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -13137,14 +12813,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"azg" = (
+"ayz" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"azh" = (
+"ayA" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
@@ -13153,7 +12829,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"azi" = (
+"ayB" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/turf/open/floor/carpet{
@@ -13162,7 +12838,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"azj" = (
+"ayC" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -13172,7 +12848,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"azk" = (
+"ayD" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/rd,
/obj/machinery/airalarm{
@@ -13190,14 +12866,14 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"azl" = (
+"ayE" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"azm" = (
+"ayF" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
@@ -13206,7 +12882,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azn" = (
+"ayG" = (
/obj/structure/closet,
/obj/machinery/light/small{
dir = 1
@@ -13218,7 +12894,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azo" = (
+"ayH" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating{
@@ -13227,7 +12903,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azp" = (
+"ayI" = (
/obj/machinery/power/apc{
dir = 8;
name = "Fore Asteroid Maintenance APC";
@@ -13249,7 +12925,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azq" = (
+"ayJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13267,13 +12943,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azr" = (
+"ayK" = (
/obj/structure/closet/crate/internals,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"azs" = (
+"ayL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -13288,23 +12964,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azt" = (
+"ayM" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azu" = (
-/obj/item/weapon/paper{
- info = "Due to complications during station constructions, the associated navbeacons for machinery has not been fully installed. Please use the delievery chute system for package delievery until further notice.";
- name = "MULEBOT Notice"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"azv" = (
+"ayN" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -13315,14 +12982,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azw" = (
+"ayO" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"azx" = (
+"ayP" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -13333,7 +13000,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azy" = (
+"ayQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -13341,7 +13008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azz" = (
+"ayR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13353,7 +13020,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azA" = (
+"ayS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13364,7 +13031,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azB" = (
+"ayT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13376,7 +13043,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"azC" = (
+"ayU" = (
/obj/machinery/door/airlock/mining{
req_access_txt = "48"
},
@@ -13390,7 +13057,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"azD" = (
+"ayV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13402,7 +13069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"azE" = (
+"ayW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13410,7 +13077,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"azF" = (
+"ayX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -13418,7 +13085,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"azG" = (
+"ayY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -13432,7 +13099,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"azH" = (
+"ayZ" = (
/obj/structure/shuttle/engine/propulsion/burst,
/obj/structure/window/reinforced{
dir = 1;
@@ -13440,21 +13107,21 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/mining)
-"azI" = (
+"aza" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"azJ" = (
+"azb" = (
/obj/machinery/mineral/stacking_machine/laborstacker{
input_dir = 2;
output_dir = 1
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"azK" = (
+"azc" = (
/obj/machinery/computer/shuttle/labor,
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -13466,7 +13133,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"azL" = (
+"azd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13474,7 +13141,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"azM" = (
+"aze" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -13485,7 +13152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"azN" = (
+"azf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13502,7 +13169,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azO" = (
+"azg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -13518,27 +13185,27 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"azP" = (
+"azh" = (
/obj/machinery/vending/security,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"azQ" = (
+"azi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"azR" = (
+"azj" = (
/obj/machinery/holopad,
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"azS" = (
+"azk" = (
/obj/machinery/door/window/brigdoor/westleft{
id = "Cell 1";
name = "Cell Door 1";
@@ -13550,7 +13217,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azT" = (
+"azl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13560,13 +13227,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azU" = (
+"azm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azV" = (
+"azn" = (
/obj/machinery/door/airlock/glass_large{
name = "Cell Block";
req_access_txt = "0";
@@ -13585,7 +13252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azW" = (
+"azo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/red/corner{
@@ -13595,7 +13262,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azX" = (
+"azp" = (
/obj/machinery/door/window/brigdoor/eastleft{
id = "Cell 5";
name = "Cell Door 5";
@@ -13607,12 +13274,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"azY" = (
+"azq" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"azZ" = (
+"azr" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -13625,7 +13292,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aAa" = (
+"azs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13641,7 +13308,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aAb" = (
+"azt" = (
/obj/machinery/door/airlock/maintenance{
name = "Dorm SMES Access";
req_access_txt = "10;11;12"
@@ -13657,7 +13324,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aAc" = (
+"azu" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13673,7 +13340,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aAd" = (
+"azv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -13703,7 +13370,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aAe" = (
+"azw" = (
/obj/structure/disposalpipe/segment,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -13712,14 +13379,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAf" = (
+"azx" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAg" = (
+"azy" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -13729,7 +13396,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAh" = (
+"azz" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -13738,7 +13405,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAi" = (
+"azA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -13746,7 +13413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAj" = (
+"azB" = (
/obj/machinery/light{
dir = 4
},
@@ -13755,12 +13422,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aAk" = (
+"azC" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aAl" = (
+"azD" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/blue,
/obj/structure/window,
@@ -13768,7 +13435,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aAm" = (
+"azE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/orange,
/obj/structure/window,
@@ -13776,7 +13443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aAn" = (
+"azF" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/purple,
/obj/structure/window,
@@ -13784,7 +13451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aAo" = (
+"azG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -13798,7 +13465,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aAp" = (
+"azH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13808,7 +13475,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aAq" = (
+"azI" = (
/obj/structure/chair{
dir = 1
},
@@ -13821,7 +13488,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aAr" = (
+"azJ" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13833,7 +13500,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aAs" = (
+"azK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13843,7 +13510,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aAt" = (
+"azL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -13852,7 +13519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAu" = (
+"azM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13861,7 +13528,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAv" = (
+"azN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13872,7 +13539,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAw" = (
+"azO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13885,7 +13552,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAx" = (
+"azP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13897,7 +13564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAy" = (
+"azQ" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
@@ -13906,13 +13573,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAz" = (
+"azR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aAA" = (
+"azS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13922,7 +13589,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aAB" = (
+"azT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13934,7 +13601,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aAC" = (
+"azU" = (
/obj/structure/chair{
dir = 1
},
@@ -13947,7 +13614,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aAD" = (
+"azV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -13957,7 +13624,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aAE" = (
+"azW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -13972,7 +13639,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aAF" = (
+"azX" = (
/obj/machinery/power/apc{
dir = 8;
name = "Research Director's Private Quarters APC";
@@ -13999,7 +13666,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aAG" = (
+"azY" = (
/obj/structure/chair{
dir = 1
},
@@ -14009,7 +13676,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aAH" = (
+"azZ" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -14019,7 +13686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aAI" = (
+"aAa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -14027,7 +13694,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aAJ" = (
+"aAb" = (
/obj/machinery/door/airlock/engineering{
name = "Cargo Warehouse";
req_access_txt = "31"
@@ -14039,13 +13706,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/storage)
-"aAK" = (
+"aAc" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAL" = (
+"aAd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -14053,13 +13720,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAM" = (
+"aAe" = (
/obj/machinery/light,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAN" = (
+"aAf" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -14074,23 +13741,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAO" = (
+"aAg" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_l"
},
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aAP" = (
+"aAh" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aAQ" = (
+"aAi" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "burst_r"
},
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aAR" = (
+"aAj" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -14105,7 +13772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAS" = (
+"aAk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Cargo Eastern Loading Bay 2";
@@ -14120,7 +13787,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aAT" = (
+"aAl" = (
/obj/machinery/disposal/bin,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -14137,7 +13804,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/miningdock)
-"aAU" = (
+"aAm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -14146,17 +13813,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aAV" = (
+"aAn" = (
/obj/structure/table,
/obj/item/weapon/folder,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aAW" = (
+"aAo" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aAX" = (
+"aAp" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
pixel_x = 30;
@@ -14164,18 +13831,18 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aAY" = (
+"aAq" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/airless,
/area/space)
-"aAZ" = (
+"aAr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aBa" = (
+"aAs" = (
/obj/machinery/door/airlock/glass_security{
name = "Prisoner Processing";
req_access_txt = "2"
@@ -14184,7 +13851,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aBb" = (
+"aAt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14207,7 +13874,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBc" = (
+"aAu" = (
/obj/machinery/power/apc{
dir = 4;
name = "Security Equipment APC";
@@ -14223,7 +13890,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aBd" = (
+"aAv" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/camera{
@@ -14235,7 +13902,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aBe" = (
+"aAw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/holopad,
/obj/effect/landmark/start/security_officer,
@@ -14243,7 +13910,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aBf" = (
+"aAx" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 1";
name = "Cell 1 Locker"
@@ -14252,7 +13919,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBg" = (
+"aAy" = (
/obj/machinery/door_timer{
id = "Cell 1";
name = "Cell 1";
@@ -14276,7 +13943,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBh" = (
+"aAz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -14284,14 +13951,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBi" = (
+"aAA" = (
/obj/machinery/light,
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBj" = (
+"aAB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -14307,7 +13974,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBk" = (
+"aAC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14331,7 +13998,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBl" = (
+"aAD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -14346,7 +14013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBm" = (
+"aAE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -14362,7 +14029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBn" = (
+"aAF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -14370,7 +14037,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBo" = (
+"aAG" = (
/obj/machinery/door_timer{
id = "Cell 5";
name = "Cell 5";
@@ -14394,7 +14061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBp" = (
+"aAH" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 5";
name = "Cell 5 Locker"
@@ -14403,19 +14070,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aBq" = (
+"aAI" = (
/obj/structure/closet/lawcloset,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBr" = (
+"aAJ" = (
/obj/structure/chair,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBs" = (
+"aAK" = (
/obj/machinery/light{
dir = 1
},
@@ -14423,19 +14090,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBt" = (
+"aAL" = (
/obj/structure/chair/comfy/brown,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBu" = (
+"aAM" = (
/obj/structure/chair/comfy/black,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBv" = (
+"aAN" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -14446,7 +14113,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBw" = (
+"aAO" = (
/obj/structure/chair{
dir = 8
},
@@ -14454,7 +14121,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aBx" = (
+"aAP" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -14467,14 +14134,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBy" = (
+"aAQ" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBz" = (
+"aAR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14487,7 +14154,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBA" = (
+"aAS" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -14499,7 +14166,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBB" = (
+"aAT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -14516,7 +14183,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBC" = (
+"aAU" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -14528,14 +14195,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBD" = (
+"aAV" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aBE" = (
+"aAW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -14543,7 +14210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aBF" = (
+"aAX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -14552,7 +14219,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aBG" = (
+"aAY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14560,7 +14227,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aBH" = (
+"aAZ" = (
/obj/machinery/light_switch{
pixel_x = -25
},
@@ -14573,7 +14240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aBI" = (
+"aBa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14583,7 +14250,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aBJ" = (
+"aBb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14593,7 +14260,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aBK" = (
+"aBc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -14608,7 +14275,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aBL" = (
+"aBd" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -14625,7 +14292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aBM" = (
+"aBe" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Head of Security's Desk";
@@ -14640,14 +14307,14 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aBN" = (
+"aBf" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aBO" = (
+"aBg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -14656,14 +14323,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBP" = (
+"aBh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBQ" = (
+"aBi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -14672,7 +14339,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBR" = (
+"aBj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -14681,14 +14348,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aBS" = (
+"aBk" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aBT" = (
+"aBl" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Research Director's Desk";
@@ -14703,7 +14370,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aBU" = (
+"aBm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14719,7 +14386,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBV" = (
+"aBn" = (
/obj/structure/closet/crate,
/obj/item/weapon/coin/silver,
/obj/item/weapon/coin/silver,
@@ -14729,7 +14396,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aBW" = (
+"aBo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -14738,7 +14405,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBX" = (
+"aBp" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -14748,7 +14415,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBY" = (
+"aBq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -14757,7 +14424,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aBZ" = (
+"aBr" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
@@ -14768,7 +14435,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCa" = (
+"aBs" = (
/obj/structure/chair{
dir = 8
},
@@ -14778,7 +14445,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aCb" = (
+"aBt" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -14786,7 +14453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aCc" = (
+"aBu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14800,7 +14467,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aCd" = (
+"aBv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -14808,14 +14475,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aCe" = (
+"aBw" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aCf" = (
+"aBx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -14841,7 +14508,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"aCg" = (
+"aBy" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -14849,7 +14516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCh" = (
+"aBz" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder/empty,
/obj/item/device/tape/random,
@@ -14857,7 +14524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCi" = (
+"aBA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -14865,7 +14532,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCj" = (
+"aBB" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue{
pixel_x = 5;
@@ -14875,7 +14542,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCk" = (
+"aBC" = (
/obj/structure/table/wood,
/obj/item/weapon/gavelblock,
/obj/item/weapon/gavelhammer,
@@ -14883,7 +14550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCl" = (
+"aBD" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -14893,7 +14560,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCm" = (
+"aBE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -14903,7 +14570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCn" = (
+"aBF" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -14914,13 +14581,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCo" = (
+"aBG" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aCp" = (
+"aBH" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -14934,7 +14601,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aCq" = (
+"aBI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14948,7 +14615,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aCr" = (
+"aBJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -14960,7 +14627,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aCs" = (
+"aBK" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -14969,7 +14636,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aCt" = (
+"aBL" = (
/obj/structure/chair/stool,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14978,7 +14645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aCu" = (
+"aBM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -14988,7 +14655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aCv" = (
+"aBN" = (
/obj/machinery/door/airlock{
name = "Male Sleeping Quarters"
},
@@ -14998,12 +14665,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aCw" = (
+"aBO" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aCx" = (
+"aBP" = (
/obj/machinery/light{
dir = 4
},
@@ -15011,7 +14678,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aCy" = (
+"aBQ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -15020,7 +14687,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aCz" = (
+"aBR" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -15028,7 +14695,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aCA" = (
+"aBS" = (
/obj/structure/closet/secure_closet/hos,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -15036,7 +14703,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aCB" = (
+"aBT" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -15048,7 +14715,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aCC" = (
+"aBU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15058,7 +14725,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aCD" = (
+"aBV" = (
/obj/machinery/door/airlock/security{
name = "Head of Security's Personal Quarters";
req_access_txt = "58"
@@ -15072,7 +14739,7 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aCE" = (
+"aBW" = (
/obj/machinery/camera{
c_tag = "Bridge Main 2";
dir = 1;
@@ -15083,7 +14750,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCF" = (
+"aBX" = (
/obj/machinery/computer/crew,
/obj/machinery/firealarm{
dir = 1;
@@ -15093,13 +14760,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCG" = (
+"aBY" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCH" = (
+"aBZ" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/machinery/light,
@@ -15107,49 +14774,49 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCI" = (
+"aCa" = (
/turf/open/floor/plasteel/darkblue/corner{
icon_state = "darkbluecorners";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCJ" = (
+"aCb" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCK" = (
+"aCc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCL" = (
+"aCd" = (
/turf/open/floor/plasteel/darkblue/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCM" = (
+"aCe" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCN" = (
+"aCf" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCO" = (
+"aCg" = (
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aCP" = (
+"aCh" = (
/obj/machinery/door/airlock/research{
name = "Research Director's Personal Quarters";
req_access_txt = "30"
@@ -15163,7 +14830,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aCQ" = (
+"aCi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15173,7 +14840,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aCR" = (
+"aCj" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -15186,7 +14853,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aCS" = (
+"aCk" = (
/obj/structure/closet{
icon_door = "pink";
name = "Research Director's Uniform"
@@ -15203,7 +14870,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aCT" = (
+"aCl" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -15211,7 +14878,7 @@
/area/crew_quarters/hor{
name = "Research Director's Private Quarters"
})
-"aCU" = (
+"aCm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 8;
@@ -15221,15 +14888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"aCW" = (
+"aCn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15237,7 +14896,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCX" = (
+"aCo" = (
/obj/machinery/light{
dir = 1
},
@@ -15248,7 +14907,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCY" = (
+"aCp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15263,7 +14922,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aCZ" = (
+"aCq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15277,7 +14936,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDa" = (
+"aCr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -15285,7 +14944,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDb" = (
+"aCs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15294,7 +14953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDc" = (
+"aCt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15307,7 +14966,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDd" = (
+"aCu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -15315,20 +14974,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDe" = (
+"aCv" = (
/obj/effect/landmark/event_spawn,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDf" = (
+"aCw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aDg" = (
+"aCx" = (
/obj/machinery/power/apc{
dir = 1;
name = "Mining Dock APC";
@@ -15348,11 +15007,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock)
-"aDh" = (
+"aCy" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aDi" = (
+"aCz" = (
/obj/machinery/door/airlock/titanium{
id_tag = "prisonshuttle";
name = "Labor Shuttle Airlock"
@@ -15376,7 +15035,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aDj" = (
+"aCA" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Labor Camp Shuttle Airlock";
@@ -15385,7 +15044,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/security/processing)
-"aDk" = (
+"aCB" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Labor Camp Shuttle Airlock"
@@ -15394,13 +15053,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aDl" = (
+"aCC" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aDm" = (
+"aCD" = (
/obj/machinery/door/airlock/security{
id_tag = "laborexit";
name = "Labor Shuttle";
@@ -15414,7 +15073,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aDn" = (
+"aCE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -15430,7 +15089,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aDo" = (
+"aCF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/door{
id = "GulagCivExit";
@@ -15444,7 +15103,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aDp" = (
+"aCG" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32
},
@@ -15460,13 +15119,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDq" = (
+"aCH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDr" = (
+"aCI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15474,7 +15133,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDs" = (
+"aCJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15484,7 +15143,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDt" = (
+"aCK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -15503,7 +15162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aDu" = (
+"aCL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -15513,7 +15172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDv" = (
+"aCM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15523,7 +15182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDw" = (
+"aCN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -15539,7 +15198,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDx" = (
+"aCO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -15553,14 +15212,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDy" = (
+"aCP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDz" = (
+"aCQ" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -15573,7 +15232,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDA" = (
+"aCR" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -15587,7 +15246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDB" = (
+"aCS" = (
/obj/machinery/camera{
c_tag = "Brig Hall East"
},
@@ -15601,7 +15260,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDC" = (
+"aCT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15612,7 +15271,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDD" = (
+"aCU" = (
/obj/machinery/door/airlock/security{
name = "Courtroom";
req_access = null;
@@ -15625,7 +15284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aDE" = (
+"aCV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15633,7 +15292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDF" = (
+"aCW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15644,7 +15303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDG" = (
+"aCX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -15652,35 +15311,35 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDH" = (
+"aCY" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDI" = (
+"aCZ" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDJ" = (
+"aDa" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDK" = (
+"aDb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDL" = (
+"aDc" = (
/turf/open/floor/plasteel/blue/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDM" = (
+"aDd" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -15690,7 +15349,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aDN" = (
+"aDe" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -15706,7 +15365,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aDO" = (
+"aDf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15723,7 +15382,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aDP" = (
+"aDg" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -15733,7 +15392,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDQ" = (
+"aDh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -15742,7 +15401,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDR" = (
+"aDi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15750,7 +15409,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDS" = (
+"aDj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15770,7 +15429,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDT" = (
+"aDk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -15780,13 +15439,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDU" = (
+"aDl" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aDV" = (
+"aDm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15794,7 +15453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aDW" = (
+"aDn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15805,7 +15464,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aDX" = (
+"aDo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -15818,7 +15477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aDY" = (
+"aDp" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
@@ -15826,7 +15485,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aDZ" = (
+"aDq" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHWEST)";
icon_state = "neutral";
@@ -15834,12 +15493,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aEa" = (
+"aDr" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aEb" = (
+"aDs" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -15847,12 +15506,12 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aEc" = (
+"aDt" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEd" = (
+"aDu" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -15861,7 +15520,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEe" = (
+"aDv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -15877,7 +15536,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEf" = (
+"aDw" = (
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Bridge";
@@ -15894,7 +15553,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEg" = (
+"aDx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -15911,7 +15570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEh" = (
+"aDy" = (
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Bridge";
@@ -15928,7 +15587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aEi" = (
+"aDz" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/astplate{
@@ -15937,7 +15596,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aEj" = (
+"aDA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -15950,7 +15609,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aEk" = (
+"aDB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -15963,7 +15622,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aEl" = (
+"aDC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -15971,21 +15630,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Cargo Hall West";
- dir = 1;
- icon_state = "camera";
- network = list("SS13","QM")
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"aEn" = (
+"aDD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -15993,7 +15638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEo" = (
+"aDE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -16001,7 +15646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEp" = (
+"aDF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -16013,7 +15658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEq" = (
+"aDG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -16024,7 +15669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEr" = (
+"aDH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16039,7 +15684,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEs" = (
+"aDI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -16050,7 +15695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEt" = (
+"aDJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -16067,7 +15712,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEu" = (
+"aDK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -16080,7 +15725,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEv" = (
+"aDL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -16094,7 +15739,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aEw" = (
+"aDM" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1;
@@ -16102,7 +15747,7 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"aEx" = (
+"aDN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -16118,7 +15763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aEy" = (
+"aDO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16140,7 +15785,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aEz" = (
+"aDP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16161,7 +15806,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aEA" = (
+"aDQ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16182,7 +15827,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aEB" = (
+"aDR" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16199,7 +15844,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aEC" = (
+"aDS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16217,7 +15862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aED" = (
+"aDT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16230,7 +15875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aEE" = (
+"aDU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16244,7 +15889,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aEF" = (
+"aDV" = (
/obj/machinery/door/airlock/glass_security{
name = "Equipment Room";
req_access_txt = "1"
@@ -16271,7 +15916,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aEG" = (
+"aDW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16285,7 +15930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEH" = (
+"aDX" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16305,7 +15950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEI" = (
+"aDY" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16318,7 +15963,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEJ" = (
+"aDZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16336,7 +15981,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEK" = (
+"aEa" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16354,7 +15999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEL" = (
+"aEb" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16370,7 +16015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEM" = (
+"aEc" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16388,7 +16033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEN" = (
+"aEd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16408,7 +16053,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEO" = (
+"aEe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16422,30 +16067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aEP" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aEQ" = (
+"aEf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -16462,7 +16084,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aER" = (
+"aEg" = (
/obj/machinery/power/apc{
dir = 4;
name = "Brig APC";
@@ -16483,12 +16105,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aES" = (
+"aEh" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aET" = (
+"aEi" = (
/obj/structure/chair{
dir = 4
},
@@ -16498,7 +16120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aEU" = (
+"aEj" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHEAST)";
@@ -16507,25 +16129,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aEV" = (
+"aEk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aEW" = (
+"aEl" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aEX" = (
+"aEm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aEY" = (
+"aEn" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTHWEST)";
@@ -16534,7 +16156,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aEZ" = (
+"aEo" = (
/obj/structure/chair{
dir = 8
},
@@ -16545,7 +16167,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aFa" = (
+"aEp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -16559,7 +16181,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aFb" = (
+"aEq" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -16572,7 +16194,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aFc" = (
+"aEr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16596,7 +16218,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aFd" = (
+"aEs" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -16615,7 +16237,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aFe" = (
+"aEt" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plating{
@@ -16624,19 +16246,19 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aFf" = (
+"aEu" = (
/turf/open/floor/plasteel/neutral/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aFg" = (
+"aEv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aFh" = (
+"aEw" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/obj/structure/window{
@@ -16649,7 +16271,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aFi" = (
+"aEx" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/obj/structure/window{
@@ -16661,7 +16283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aFj" = (
+"aEy" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/obj/structure/window{
@@ -16673,20 +16295,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aFk" = (
+"aEz" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFl" = (
+"aEA" = (
/obj/structure/rack,
/obj/item/device/flashlight,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFm" = (
+"aEB" = (
/obj/machinery/power/apc{
dir = 1;
name = "Head of Security's Personal Quarters APC";
@@ -16704,14 +16326,14 @@
/area/security/hos{
name = "Head of Security's Private Quarters"
})
-"aFn" = (
+"aEC" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFo" = (
+"aED" = (
/obj/machinery/power/apc{
dir = 4;
name = "Bridge APC";
@@ -16731,7 +16353,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFp" = (
+"aEE" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
icon_state = "darkblue";
@@ -16739,7 +16361,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFq" = (
+"aEF" = (
/obj/machinery/camera{
c_tag = "Bridge Midway 1"
},
@@ -16755,7 +16377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFr" = (
+"aEG" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
@@ -16766,7 +16388,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFs" = (
+"aEH" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/darkblue/side{
@@ -16776,7 +16398,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFt" = (
+"aEI" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/darkblue/side{
@@ -16786,7 +16408,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFu" = (
+"aEJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16799,7 +16421,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFv" = (
+"aEK" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -16808,7 +16430,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFw" = (
+"aEL" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16827,7 +16449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFx" = (
+"aEM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16839,7 +16461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFy" = (
+"aEN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -16858,7 +16480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFz" = (
+"aEO" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 0
@@ -16881,7 +16503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFA" = (
+"aEP" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16897,7 +16519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFB" = (
+"aEQ" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16912,7 +16534,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFC" = (
+"aER" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -16927,14 +16549,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aFD" = (
+"aES" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aFE" = (
+"aET" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
@@ -16943,7 +16565,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aFF" = (
+"aEU" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
@@ -16952,7 +16574,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aFG" = (
+"aEV" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -16960,7 +16582,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aFH" = (
+"aEW" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/qm,
/obj/machinery/airalarm{
@@ -16978,14 +16600,14 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aFI" = (
+"aEX" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aFJ" = (
+"aEY" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access_txt = "0";
@@ -16996,7 +16618,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFK" = (
+"aEZ" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access_txt = "0";
@@ -17006,7 +16628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFL" = (
+"aFa" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -17017,7 +16639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFM" = (
+"aFb" = (
/obj/structure/table,
/obj/item/clothing/gloves/fingerless,
/obj/item/clothing/head/soft,
@@ -17025,20 +16647,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFN" = (
+"aFc" = (
/obj/structure/closet/wardrobe/cargotech,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFO" = (
+"aFd" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFP" = (
+"aFe" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/hand_labeler_refill,
@@ -17052,11 +16674,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aFQ" = (
+"aFf" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"aFR" = (
+"aFg" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -17066,7 +16688,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFS" = (
+"aFh" = (
/obj/machinery/camera{
c_tag = "Labor Shuttle Dock South";
dir = 1
@@ -17079,7 +16701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFT" = (
+"aFi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -17095,7 +16717,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFU" = (
+"aFj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17103,7 +16725,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aFV" = (
+"aFk" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -17124,7 +16746,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aFW" = (
+"aFl" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/door/airlock/maintenance{
@@ -17138,7 +16760,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aFX" = (
+"aFm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17146,7 +16768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFY" = (
+"aFn" = (
/obj/effect/landmark/secequipment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -17158,7 +16780,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aFZ" = (
+"aFo" = (
/obj/effect/landmark/secequipment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/light,
@@ -17166,7 +16788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aGa" = (
+"aFp" = (
/obj/effect/landmark/secequipment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -17175,7 +16797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aGb" = (
+"aFq" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -17188,7 +16810,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aGc" = (
+"aFr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -17204,7 +16826,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"aGd" = (
+"aFs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17216,7 +16838,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGe" = (
+"aFt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -17233,7 +16855,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGf" = (
+"aFu" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -17244,7 +16866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGg" = (
+"aFv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17261,7 +16883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGh" = (
+"aFw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
@@ -17270,7 +16892,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGi" = (
+"aFx" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -17282,7 +16904,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGj" = (
+"aFy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17293,7 +16915,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGk" = (
+"aFz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17306,7 +16928,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGl" = (
+"aFA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -17322,7 +16944,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGm" = (
+"aFB" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
@@ -17331,7 +16953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGn" = (
+"aFC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17344,7 +16966,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGo" = (
+"aFD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17353,7 +16975,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGp" = (
+"aFE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -17369,12 +16991,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGq" = (
+"aFF" = (
/turf/open/floor/plasteel/red/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGr" = (
+"aFG" = (
/obj/structure/sign/goldenplaque{
pixel_y = -32
},
@@ -17382,7 +17004,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGs" = (
+"aFH" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
icon_state = "redcorner";
@@ -17390,20 +17012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGt" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aGu" = (
+"aFI" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -17414,7 +17023,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGv" = (
+"aFJ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -17423,7 +17032,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aGw" = (
+"aFK" = (
/obj/structure/chair{
dir = 4
},
@@ -17431,7 +17040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGx" = (
+"aFL" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/side{
@@ -17440,7 +17049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGy" = (
+"aFM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -17449,7 +17058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGz" = (
+"aFN" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -17457,7 +17066,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGA" = (
+"aFO" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -17465,7 +17074,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGB" = (
+"aFP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -17474,7 +17083,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGC" = (
+"aFQ" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (SOUTHWEST)";
@@ -17483,7 +17092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGD" = (
+"aFR" = (
/obj/structure/chair{
dir = 8
},
@@ -17491,18 +17100,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aGE" = (
+"aFS" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aGF" = (
+"aFT" = (
/obj/structure/closet/secure_closet/personal,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aGG" = (
+"aFU" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light,
/obj/effect/spawner/lootdrop/costume,
@@ -17510,20 +17119,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aGH" = (
+"aFV" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aGI" = (
+"aFW" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aGJ" = (
+"aFX" = (
/obj/machinery/light/small,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -17534,21 +17143,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aGK" = (
+"aFY" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aGL" = (
+"aFZ" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/red,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_male)
-"aGM" = (
+"aGa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -17557,7 +17166,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGN" = (
+"aGb" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -17568,7 +17177,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGO" = (
+"aGc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -17578,7 +17187,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGP" = (
+"aGd" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -17598,7 +17207,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aGQ" = (
+"aGe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17613,7 +17222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGR" = (
+"aGf" = (
/obj/machinery/door/airlock/maintenance{
name = "Bridge APC Access";
req_access_txt = "10;11;12"
@@ -17627,7 +17236,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGS" = (
+"aGg" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -17644,7 +17253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGT" = (
+"aGh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17660,7 +17269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGU" = (
+"aGi" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17681,7 +17290,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGV" = (
+"aGj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17695,7 +17304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGW" = (
+"aGk" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -17718,7 +17327,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGX" = (
+"aGl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -17731,7 +17340,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGY" = (
+"aGm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -17744,7 +17353,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aGZ" = (
+"aGn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17754,7 +17363,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aHa" = (
+"aGo" = (
/obj/structure/table/wood,
/obj/item/device/modular_computer/laptop/preset/civillian,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17766,7 +17375,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aHb" = (
+"aGp" = (
/obj/structure/chair{
dir = 8
},
@@ -17779,7 +17388,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aHc" = (
+"aGq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17789,7 +17398,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aHd" = (
+"aGr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -17808,7 +17417,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aHe" = (
+"aGs" = (
/obj/machinery/power/apc{
dir = 8;
name = "Quartermaster's Private Quarters APC";
@@ -17835,7 +17444,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aHf" = (
+"aGt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -17851,7 +17460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHg" = (
+"aGu" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -17861,13 +17470,13 @@
dir = 1
},
/area/quartermaster/office)
-"aHh" = (
+"aGv" = (
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1
},
/area/quartermaster/office)
-"aHi" = (
+"aGw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -17877,7 +17486,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aHj" = (
+"aGx" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -17892,7 +17501,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHk" = (
+"aGy" = (
/obj/machinery/autolathe,
/obj/machinery/light{
dir = 1
@@ -17904,7 +17513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHl" = (
+"aGz" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/machinery/camera{
@@ -17924,7 +17533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHm" = (
+"aGA" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/item/weapon/stamp/denied{
@@ -17943,7 +17552,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHn" = (
+"aGB" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/structure/noticeboard{
@@ -17953,7 +17562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHo" = (
+"aGC" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/structure/sign/poster/random{
@@ -17966,12 +17575,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aHp" = (
+"aGD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHq" = (
+"aGE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -17979,7 +17588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aHr" = (
+"aGF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -17995,12 +17604,12 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aHs" = (
+"aGG" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHt" = (
+"aGH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18013,7 +17622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHu" = (
+"aGI" = (
/obj/machinery/door/airlock/security{
name = "Detective's Office";
req_access_txt = "4"
@@ -18031,7 +17640,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aHv" = (
+"aGJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18044,7 +17653,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aHw" = (
+"aGK" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -18053,12 +17662,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHx" = (
+"aGL" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHy" = (
+"aGM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18076,7 +17685,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHz" = (
+"aGN" = (
/obj/machinery/door/airlock{
name = "Law Office";
req_access_txt = "38"
@@ -18100,7 +17709,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHA" = (
+"aGO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18117,31 +17726,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aHB" = (
+"aGP" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHC" = (
+"aGQ" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHD" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- icon_state = "red";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aHE" = (
+"aGR" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
id_tag = "innerbrig";
@@ -18153,35 +17750,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHF" = (
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "0";
- req_one_access_txt = "38;63"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aHG" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/side{
- icon_state = "red";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aHH" = (
+"aGS" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -18192,7 +17761,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aHI" = (
+"aGT" = (
/obj/machinery/camera{
c_tag = "Courtroom Main South";
dir = 1
@@ -18203,7 +17772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aHJ" = (
+"aGU" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (NORTH)";
icon_state = "redcorner";
@@ -18211,18 +17780,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aHK" = (
+"aGV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aHL" = (
+"aGW" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aHM" = (
+"aGX" = (
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (EAST)";
icon_state = "bluecorner";
@@ -18230,7 +17799,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aHN" = (
+"aGY" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -18245,18 +17814,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aHO" = (
+"aGZ" = (
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aHP" = (
+"aHa" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aHQ" = (
+"aHb" = (
/obj/machinery/door/airlock/glass{
name = "Dormitories"
},
@@ -18266,7 +17835,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aHR" = (
+"aHc" = (
/obj/machinery/door/airlock/glass{
name = "Dormitories"
},
@@ -18275,24 +17844,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aHS" = (
+"aHd" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aHT" = (
+"aHe" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aHU" = (
+"aHf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHV" = (
+"aHg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -18301,7 +17870,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHW" = (
+"aHh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18313,7 +17882,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHX" = (
+"aHi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -18321,7 +17890,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHY" = (
+"aHj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -18331,7 +17900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aHZ" = (
+"aHk" = (
/obj/machinery/door/airlock/mining{
name = "Quartermaster's Private Quarters";
req_access_txt = "41"
@@ -18345,7 +17914,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aIa" = (
+"aHl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -18355,7 +17924,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aIb" = (
+"aHm" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -18366,7 +17935,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aIc" = (
+"aHn" = (
/obj/machinery/light_switch{
pixel_y = -25
},
@@ -18381,7 +17950,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aId" = (
+"aHo" = (
/obj/structure/closet{
icon_door = "orange";
name = "Quartermaster's Uniform"
@@ -18396,7 +17965,7 @@
/area/quartermaster/qm{
name = "Quartermaster's Private Quarters"
})
-"aIe" = (
+"aHp" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -18409,7 +17978,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aIf" = (
+"aHq" = (
/obj/machinery/power/apc{
dir = 2;
name = "Gravity Generator APC";
@@ -18419,7 +17988,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aIg" = (
+"aHr" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -18430,7 +17999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aIh" = (
+"aHs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -18440,7 +18009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aIi" = (
+"aHt" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -18449,7 +18018,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aIj" = (
+"aHu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18460,7 +18029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIk" = (
+"aHv" = (
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -18472,7 +18041,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIl" = (
+"aHw" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -18486,7 +18055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIm" = (
+"aHx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18496,7 +18065,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIn" = (
+"aHy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -18512,7 +18081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aIo" = (
+"aHz" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -18528,7 +18097,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/processing)
-"aIp" = (
+"aHA" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -18549,14 +18118,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aIq" = (
+"aHB" = (
/obj/structure/closet/secure_closet/detective,
/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIr" = (
+"aHC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -18565,13 +18134,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIs" = (
+"aHD" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIt" = (
+"aHE" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18579,19 +18148,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIu" = (
+"aHF" = (
/obj/structure/filingcabinet,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIv" = (
+"aHG" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aIw" = (
+"aHH" = (
/obj/structure/filingcabinet,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -18602,7 +18171,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIx" = (
+"aHI" = (
/obj/machinery/button/door{
id = "lawyerinterior";
name = "Privacy Shutters";
@@ -18613,7 +18182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIy" = (
+"aHJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -18623,7 +18192,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIz" = (
+"aHK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18638,7 +18207,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIA" = (
+"aHL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/power/apc{
dir = 4;
@@ -18654,7 +18223,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aIB" = (
+"aHM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/flasher{
id = "HoldingCell";
@@ -18668,7 +18237,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIC" = (
+"aHN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -18678,7 +18247,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aID" = (
+"aHO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -18686,27 +18255,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIE" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/device/destTagger,
-/turf/open/floor/plasteel/red/side{
- icon_state = "red";
- dir = 6;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aIF" = (
+"aHP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18718,7 +18267,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIG" = (
+"aHQ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -18728,7 +18277,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIH" = (
+"aHR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
@@ -18737,14 +18286,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aII" = (
+"aHS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIJ" = (
+"aHT" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -18752,7 +18301,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aIK" = (
+"aHU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18760,7 +18309,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aIL" = (
+"aHV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18769,7 +18318,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aIM" = (
+"aHW" = (
/obj/machinery/door/airlock/glass{
name = "Courtroom";
req_access_txt = "1"
@@ -18779,7 +18328,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aIN" = (
+"aHX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -18788,7 +18337,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aIO" = (
+"aHY" = (
/obj/machinery/light/small{
dir = 8
},
@@ -18796,7 +18345,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aIP" = (
+"aHZ" = (
/obj/machinery/door/airlock{
id_tag = "b3"
},
@@ -18804,7 +18353,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aIQ" = (
+"aIa" = (
/obj/structure/urinal{
pixel_x = 32
},
@@ -18812,13 +18361,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aIR" = (
+"aIb" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIS" = (
+"aIc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -18828,7 +18377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIT" = (
+"aId" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -18837,7 +18386,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIU" = (
+"aIe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -18851,7 +18400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIV" = (
+"aIf" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -18860,18 +18409,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIW" = (
+"aIg" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIX" = (
+"aIh" = (
/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aIY" = (
+"aIi" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/hop,
/obj/effect/landmark/start/head_of_personnel,
@@ -18879,7 +18428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aIZ" = (
+"aIj" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -18891,7 +18440,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJa" = (
+"aIk" = (
/obj/structure/closet/secure_closet/hop,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -18903,7 +18452,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJb" = (
+"aIl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18911,7 +18460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJc" = (
+"aIm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18928,7 +18477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJd" = (
+"aIn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -18941,7 +18490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJe" = (
+"aIo" = (
/obj/structure/bed/dogbed,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -18956,7 +18505,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJf" = (
+"aIp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18968,7 +18517,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJg" = (
+"aIq" = (
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
name = "Head of Personnel's Office";
@@ -18985,7 +18534,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aJh" = (
+"aIr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -18993,7 +18542,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJi" = (
+"aIs" = (
/obj/machinery/light,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
@@ -19006,7 +18555,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJj" = (
+"aIt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -19014,7 +18563,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJk" = (
+"aIu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -19023,7 +18572,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJl" = (
+"aIv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19037,7 +18586,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJm" = (
+"aIw" = (
/obj/machinery/camera{
c_tag = "Bridge Midway 2";
dir = 1;
@@ -19048,7 +18597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJn" = (
+"aIx" = (
/obj/machinery/light,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
@@ -19058,19 +18607,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aJo" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 1";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"aJp" = (
+"aIy" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -19079,7 +18616,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJq" = (
+"aIz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -19089,13 +18626,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJr" = (
+"aIA" = (
/mob/living/simple_animal/sloth/paperwork,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aJs" = (
+"aIB" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
req_access_txt = "63"
@@ -19104,19 +18641,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJt" = (
+"aIC" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJu" = (
+"aID" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJv" = (
+"aIE" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -19128,7 +18665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJw" = (
+"aIF" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -19153,7 +18690,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aJx" = (
+"aIG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19171,7 +18708,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aJy" = (
+"aIH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -19187,7 +18724,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aJz" = (
+"aII" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -19203,7 +18740,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aJA" = (
+"aIJ" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -19223,7 +18760,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJB" = (
+"aIK" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -19233,12 +18770,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJC" = (
+"aIL" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJD" = (
+"aIM" = (
/obj/structure/chair{
dir = 4
},
@@ -19247,7 +18784,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJE" = (
+"aIN" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/item/clothing/glasses/sunglasses,
@@ -19256,7 +18793,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJF" = (
+"aIO" = (
/obj/structure/chair/comfy/brown{
dir = 8
},
@@ -19265,7 +18802,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJG" = (
+"aIP" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -19276,7 +18813,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aJH" = (
+"aIQ" = (
/obj/structure/rack,
/obj/item/weapon/storage/briefcase,
/obj/item/weapon/storage/briefcase,
@@ -19289,19 +18826,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJI" = (
+"aIR" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJJ" = (
+"aIS" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJK" = (
+"aIT" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/structure/cable/orange{
@@ -19313,7 +18850,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJL" = (
+"aIU" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19321,21 +18858,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aJM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/orange,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aJN" = (
+"aIV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -19348,7 +18871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aJO" = (
+"aIW" = (
/obj/structure/chair{
dir = 1
},
@@ -19363,7 +18886,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aJP" = (
+"aIX" = (
/obj/structure/chair{
dir = 1
},
@@ -19373,7 +18896,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aJQ" = (
+"aIY" = (
/obj/structure/chair{
dir = 1
},
@@ -19382,13 +18905,13 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aJR" = (
+"aIZ" = (
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/courtroom)
-"aJS" = (
+"aJa" = (
/obj/structure/chair{
dir = 1
},
@@ -19398,7 +18921,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aJT" = (
+"aJb" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -19412,7 +18935,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aJU" = (
+"aJc" = (
/obj/machinery/button/door{
id = "b3";
name = "Privacy Bolts";
@@ -19424,7 +18947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aJV" = (
+"aJd" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -19434,18 +18957,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJW" = (
-/obj/effect/landmark/start/assistant,
+"aJe" = (
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJX" = (
-/turf/open/floor/plasteel/barber{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/locker)
-"aJY" = (
+"aJf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -19457,7 +18974,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aJZ" = (
+"aJg" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (EAST)";
icon_state = "neutral";
@@ -19465,24 +18982,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKa" = (
+"aJh" = (
/obj/structure/closet/wardrobe/grey,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKb" = (
+"aJi" = (
/obj/structure/dresser,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKc" = (
+"aJj" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKd" = (
+"aJk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -19490,7 +19007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKe" = (
+"aJl" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel's Private Quarters";
req_access = null;
@@ -19503,7 +19020,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKf" = (
+"aJm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19515,7 +19032,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKg" = (
+"aJn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19527,7 +19044,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKh" = (
+"aJo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19538,7 +19055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKi" = (
+"aJp" = (
/obj/machinery/light{
dir = 1
},
@@ -19552,7 +19069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKj" = (
+"aJq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -19564,13 +19081,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aKk" = (
+"aJr" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aKl" = (
+"aJs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19581,13 +19098,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aKm" = (
+"aJt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aKn" = (
+"aJu" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -19609,14 +19126,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aKo" = (
+"aJv" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aKp" = (
+"aJw" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -19627,7 +19144,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aKq" = (
+"aJx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -19636,7 +19153,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKr" = (
+"aJy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19644,7 +19161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKs" = (
+"aJz" = (
/obj/machinery/photocopier,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19653,7 +19170,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKt" = (
+"aJA" = (
/obj/machinery/computer/cargo,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -19663,7 +19180,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKu" = (
+"aJB" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19673,7 +19190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKv" = (
+"aJC" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -19683,7 +19200,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKw" = (
+"aJD" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -19692,7 +19209,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKx" = (
+"aJE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19701,7 +19218,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aKy" = (
+"aJF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -19712,18 +19229,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aKz" = (
-/obj/structure/closet/secure_closet/security/engine,
+"aJG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/closet/secure_closet/security/cargo,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aKA" = (
+"aJH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -19745,14 +19262,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aKB" = (
+"aJI" = (
/obj/structure/filingcabinet,
/obj/machinery/light,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aKC" = (
+"aJJ" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/newscaster/security_unit{
@@ -19762,7 +19279,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aKD" = (
+"aJK" = (
/obj/machinery/camera{
c_tag = "Cargo Security Checkpoint";
dir = 8;
@@ -19775,7 +19292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"aKE" = (
+"aJL" = (
/obj/machinery/light/small{
dir = 4
},
@@ -19787,13 +19304,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aKF" = (
+"aJM" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aKG" = (
+"aJN" = (
/obj/machinery/light/small,
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
@@ -19801,7 +19318,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aKH" = (
+"aJO" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/evidence,
/obj/item/weapon/hand_labeler,
@@ -19818,14 +19335,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKI" = (
+"aJP" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKJ" = (
+"aJQ" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19833,12 +19350,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKK" = (
+"aJR" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aKL" = (
+"aJS" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -19850,7 +19367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKM" = (
+"aJT" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -19864,14 +19381,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKN" = (
+"aJU" = (
/obj/structure/filingcabinet,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aKO" = (
+"aJV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -19880,18 +19397,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aKP" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aKQ" = (
+"aJW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -19907,7 +19413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aKR" = (
+"aJX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -19918,13 +19424,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aKS" = (
+"aJY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aKT" = (
+"aJZ" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
icon_state = "redcorner";
@@ -19932,34 +19438,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aKU" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/red/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aKV" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/vault{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"aKW" = (
+"aKa" = (
/obj/machinery/light{
dir = 4
},
@@ -19971,7 +19450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKX" = (
+"aKb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -19979,7 +19458,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aKY" = (
+"aKc" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/obj/machinery/light{
@@ -19993,7 +19472,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aKZ" = (
+"aKd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20001,7 +19480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLa" = (
+"aKe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20010,7 +19489,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLb" = (
+"aKf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20021,7 +19500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLc" = (
+"aKg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -20031,7 +19510,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLd" = (
+"aKh" = (
/obj/structure/closet/wardrobe/mixed,
/obj/machinery/light{
dir = 4
@@ -20040,20 +19519,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLe" = (
+"aKi" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLf" = (
+"aKj" = (
/obj/structure/chair,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLg" = (
+"aKk" = (
/obj/machinery/light/small{
dir = 4
},
@@ -20062,12 +19541,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLh" = (
+"aKl" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLi" = (
+"aKm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -20076,7 +19555,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLj" = (
+"aKn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -20085,7 +19564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLk" = (
+"aKo" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -20093,7 +19572,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLl" = (
+"aKp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -20115,17 +19594,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aLm" = (
+"aKq" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aLn" = (
+"aKr" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aLo" = (
+"aKs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -20135,7 +19614,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aLp" = (
+"aKt" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -20154,7 +19633,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aLq" = (
+"aKu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -20173,7 +19652,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aLr" = (
+"aKv" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -20188,7 +19667,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aLs" = (
+"aKw" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Office";
req_access_txt = "0";
@@ -20200,14 +19679,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLt" = (
+"aKx" = (
/obj/machinery/mineral/ore_redemption,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLu" = (
+"aKy" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northright{
name = "Cargo Desk";
@@ -20217,7 +19696,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aLv" = (
+"aKz" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
@@ -20228,7 +19707,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aLw" = (
+"aKA" = (
/obj/structure/table/wood,
/obj/item/device/tape/random,
/obj/item/device/tape/random{
@@ -20242,13 +19721,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLx" = (
+"aKB" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLy" = (
+"aKC" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -20256,7 +19735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLz" = (
+"aKD" = (
/obj/structure/table/wood,
/obj/item/device/camera/detective,
/obj/item/weapon/lighter,
@@ -20264,7 +19743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLA" = (
+"aKE" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -20276,7 +19755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aLB" = (
+"aKF" = (
/obj/machinery/light{
dir = 8
},
@@ -20284,7 +19763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aLC" = (
+"aKG" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -20299,7 +19778,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aLD" = (
+"aKH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -20309,7 +19788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aLE" = (
+"aKI" = (
/obj/machinery/photocopier,
/obj/machinery/light{
dir = 4;
@@ -20320,31 +19799,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aLF" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = -29;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aLG" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/red/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aLH" = (
+"aKJ" = (
/obj/machinery/light/small{
dir = 8
},
@@ -20361,7 +19816,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aLI" = (
+"aKK" = (
/obj/machinery/door/airlock{
id_tag = "b2"
},
@@ -20369,7 +19824,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aLJ" = (
+"aKL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -20378,7 +19833,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aLK" = (
+"aKM" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -20396,7 +19851,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aLL" = (
+"aKN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -20404,7 +19859,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aLM" = (
+"aKO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -20412,7 +19867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLN" = (
+"aKP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -20420,7 +19875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLO" = (
+"aKQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -20429,7 +19884,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLP" = (
+"aKR" = (
/obj/structure/closet/wardrobe/mixed,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -20440,20 +19895,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aLQ" = (
+"aKS" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLR" = (
+"aKT" = (
/obj/structure/table/wood,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLS" = (
+"aKU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -20462,7 +19917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLT" = (
+"aKV" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -20472,7 +19927,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLU" = (
+"aKW" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Head of Personnel's Office";
@@ -20485,13 +19940,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLV" = (
+"aKX" = (
/obj/structure/filingcabinet,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLW" = (
+"aKY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/stamp/hop,
@@ -20499,13 +19954,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLX" = (
+"aKZ" = (
/obj/machinery/computer/card,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLY" = (
+"aLa" = (
/obj/structure/chair/comfy,
/obj/machinery/button/flasher{
id = "hopflash";
@@ -20531,7 +19986,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aLZ" = (
+"aLb" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -20542,7 +19997,7 @@
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"aMa" = (
+"aLc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -20552,7 +20007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMb" = (
+"aLd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20563,7 +20018,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMc" = (
+"aLe" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -20584,7 +20039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMd" = (
+"aLf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20595,7 +20050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMe" = (
+"aLg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -20605,7 +20060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aMf" = (
+"aLh" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -20621,7 +20076,7 @@
tag = "icon-darkblue (EAST)"
},
/area/bridge)
-"aMg" = (
+"aLi" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating{
@@ -20630,7 +20085,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMh" = (
+"aLj" = (
/obj/machinery/camera{
c_tag = "Command SMES";
dir = 6;
@@ -20642,31 +20097,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMi" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aMj" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Fore Asteroid Hallway APC";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/stripes/end,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aMk" = (
+"aLk" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -20681,7 +20112,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMl" = (
+"aLl" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange{
d2 = 8;
@@ -20693,7 +20124,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMm" = (
+"aLm" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 8
@@ -20702,25 +20133,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMn" = (
+"aLn" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMo" = (
+"aLo" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMp" = (
+"aLp" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aMq" = (
+"aLq" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -20739,7 +20170,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aMr" = (
+"aLr" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -20747,7 +20178,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aMs" = (
+"aLs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -20769,7 +20200,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aMt" = (
+"aLt" = (
/obj/structure/chair{
dir = 4
},
@@ -20783,7 +20214,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMu" = (
+"aLu" = (
/obj/machinery/light{
dir = 1
},
@@ -20797,7 +20228,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMv" = (
+"aLv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -20810,7 +20241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMw" = (
+"aLw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20824,7 +20255,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMx" = (
+"aLx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -20839,7 +20270,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMy" = (
+"aLy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -20855,7 +20286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMz" = (
+"aLz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20867,7 +20298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMA" = (
+"aLA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20879,7 +20310,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMB" = (
+"aLB" = (
/obj/machinery/computer/cargo/request,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -20892,7 +20323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aMC" = (
+"aLC" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -20900,7 +20331,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMD" = (
+"aLD" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -20927,7 +20358,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aME" = (
+"aLE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20939,7 +20370,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMF" = (
+"aLF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -20957,7 +20388,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMG" = (
+"aLG" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -20974,7 +20405,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aMH" = (
+"aLH" = (
/obj/structure/rack,
/obj/item/weapon/storage/briefcase,
/obj/item/weapon/storage/briefcase,
@@ -20982,7 +20413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMI" = (
+"aLI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -20990,7 +20421,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMJ" = (
+"aLJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -20998,7 +20429,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aMK" = (
+"aLK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -21008,13 +20439,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aML" = (
-/obj/effect/landmark/start/lawyer,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/lawoffice)
-"aMM" = (
+"aLL" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -21026,7 +20451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aMN" = (
+"aLM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -21040,33 +20465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aMO" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aMP" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/red/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aMQ" = (
+"aLN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -21075,7 +20474,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aMR" = (
+"aLO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -21086,7 +20485,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aMS" = (
+"aLP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -21098,7 +20497,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aMT" = (
+"aLQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -21107,7 +20506,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aMU" = (
+"aLR" = (
/obj/machinery/camera{
c_tag = "Courtroom Jury East";
dir = 9;
@@ -21118,15 +20517,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aMV" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aMW" = (
+"aLS" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -21134,7 +20525,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aMX" = (
+"aLT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -21143,7 +20534,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aMY" = (
+"aLU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -21154,7 +20545,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aMZ" = (
+"aLV" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -21165,7 +20556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aNa" = (
+"aLW" = (
/obj/structure/closet/wardrobe/mixed,
/obj/machinery/camera{
c_tag = "Dorm Lockers";
@@ -21176,7 +20567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aNb" = (
+"aLX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -21187,7 +20578,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aNc" = (
+"aLY" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
layer = 2.9;
@@ -21202,7 +20593,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aNd" = (
+"aLZ" = (
/obj/machinery/light{
dir = 8
},
@@ -21212,7 +20603,7 @@
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"aNe" = (
+"aMa" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -21221,7 +20612,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aNf" = (
+"aMb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -21230,7 +20621,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aNg" = (
+"aMc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21244,7 +20635,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aNh" = (
+"aMd" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -21252,7 +20643,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aNi" = (
+"aMe" = (
/obj/machinery/light{
dir = 4
},
@@ -21262,7 +20653,7 @@
tag = "icon-darkblue (EAST)"
},
/area/bridge)
-"aNj" = (
+"aMf" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/floorgrime{
@@ -21271,7 +20662,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNk" = (
+"aMg" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -21283,7 +20674,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNl" = (
+"aMh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21296,7 +20687,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNm" = (
+"aMi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21314,7 +20705,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNn" = (
+"aMj" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -21329,18 +20720,18 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNo" = (
+"aMk" = (
/obj/item/chair,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNp" = (
+"aMl" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNq" = (
+"aMm" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -21353,7 +20744,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aNr" = (
+"aMn" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -21377,7 +20768,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aNs" = (
+"aMo" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
@@ -21386,7 +20777,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aNt" = (
+"aMp" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -21408,7 +20799,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aNu" = (
+"aMq" = (
/obj/structure/chair{
dir = 4
},
@@ -21420,7 +20811,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aNv" = (
+"aMr" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -21433,7 +20824,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aNw" = (
+"aMs" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -21443,7 +20834,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNx" = (
+"aMt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -21460,7 +20851,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNy" = (
+"aMu" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fore Asteroid Maintenance APC";
@@ -21482,7 +20873,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNz" = (
+"aMv" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -21490,7 +20881,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNA" = (
+"aMw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -21503,7 +20894,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNB" = (
+"aMx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -21519,7 +20910,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNC" = (
+"aMy" = (
/obj/machinery/door/airlock/maintenance{
name = "Security SMES Access";
req_access_txt = "10;11;12"
@@ -21535,7 +20926,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aND" = (
+"aMz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -21555,7 +20946,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNE" = (
+"aMA" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -21572,21 +20963,14 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNF" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/orange,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aNG" = (
+"aMB" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aNH" = (
+"aMC" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -21595,7 +20979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aNI" = (
+"aMD" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -21604,7 +20988,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aNJ" = (
+"aME" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -21615,13 +20999,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aNK" = (
+"aMF" = (
/obj/machinery/photocopier,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aNL" = (
+"aMG" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -21630,7 +21014,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNM" = (
+"aMH" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -21643,7 +21027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNN" = (
+"aMI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -21657,7 +21041,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNO" = (
+"aMJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -21673,7 +21057,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNP" = (
+"aMK" = (
/obj/structure/closet/lawcloset,
/obj/machinery/firealarm{
dir = 1;
@@ -21683,7 +21067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aNQ" = (
+"aML" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -21692,7 +21076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aNR" = (
+"aMM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -21702,7 +21086,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aNS" = (
+"aMN" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/vault{
@@ -21710,7 +21094,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aNT" = (
+"aMO" = (
/obj/machinery/light,
/obj/structure/table,
/obj/machinery/firealarm{
@@ -21722,21 +21106,21 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aNU" = (
+"aMP" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/courtroom)
-"aNV" = (
+"aMQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/courtroom)
-"aNW" = (
+"aMR" = (
/obj/machinery/vending/coffee,
/obj/structure/extinguisher_cabinet{
pixel_y = -32
@@ -21746,7 +21130,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aNX" = (
+"aMS" = (
/obj/machinery/light/small,
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
@@ -21755,7 +21139,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aNY" = (
+"aMT" = (
/obj/machinery/light/small{
dir = 8
},
@@ -21772,7 +21156,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aNZ" = (
+"aMU" = (
/obj/machinery/door/airlock{
id_tag = "b1"
},
@@ -21780,7 +21164,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aOa" = (
+"aMV" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -21796,7 +21180,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"aOb" = (
+"aMW" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Dorm Laundry Room";
@@ -21808,13 +21192,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aOc" = (
+"aMX" = (
/obj/structure/table,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aOd" = (
+"aMY" = (
/obj/structure/closet/crate/bin{
name = "laundry bin"
},
@@ -21822,7 +21206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aOe" = (
+"aMZ" = (
/obj/machinery/light/small{
dir = 8
},
@@ -21838,7 +21222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aOf" = (
+"aNa" = (
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTH)";
icon_state = "blue";
@@ -21846,7 +21230,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aOg" = (
+"aNb" = (
/obj/machinery/light/small{
dir = 4
},
@@ -21861,7 +21245,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aOh" = (
+"aNc" = (
/obj/machinery/camera{
c_tag = "Bridge Midway 3";
dir = 1;
@@ -21874,7 +21258,7 @@
tag = "icon-darkblue (WEST)"
},
/area/bridge)
-"aOi" = (
+"aNd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21885,17 +21269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"aOj" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aOk" = (
+"aNe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21913,17 +21287,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOl" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aOm" = (
+"aNf" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21946,7 +21310,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOn" = (
+"aNg" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -21958,7 +21322,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOo" = (
+"aNh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -21971,7 +21335,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOp" = (
+"aNi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -21988,7 +21352,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOq" = (
+"aNj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22002,7 +21366,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOr" = (
+"aNk" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -22019,7 +21383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOs" = (
+"aNl" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -22035,7 +21399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOt" = (
+"aNm" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -22052,7 +21416,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aOu" = (
+"aNn" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -22064,14 +21428,14 @@
},
/turf/open/space,
/area/space)
-"aOv" = (
+"aNo" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/space,
/area/space)
-"aOw" = (
+"aNp" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -22084,7 +21448,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aOx" = (
+"aNq" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -22096,7 +21460,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aOy" = (
+"aNr" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -22109,7 +21473,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aOz" = (
+"aNs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -22123,7 +21487,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aOA" = (
+"aNt" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -22139,7 +21503,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aOB" = (
+"aNu" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -22151,7 +21515,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aOC" = (
+"aNv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -22159,7 +21523,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aOD" = (
+"aNw" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -22175,7 +21539,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aOE" = (
+"aNx" = (
/obj/effect/landmark/blobstart,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
@@ -22184,7 +21548,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOF" = (
+"aNy" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -22192,7 +21556,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOG" = (
+"aNz" = (
/obj/machinery/light/small{
dir = 1
},
@@ -22202,7 +21566,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOH" = (
+"aNA" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating{
@@ -22211,7 +21575,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOI" = (
+"aNB" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -22222,7 +21586,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOJ" = (
+"aNC" = (
/obj/machinery/door/airlock/maintenance{
name = "Security SMES Access";
req_access_txt = "10;11;12"
@@ -22233,7 +21597,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOK" = (
+"aND" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -22248,7 +21612,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOL" = (
+"aNE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22266,7 +21630,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOM" = (
+"aNF" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -22275,7 +21639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/detectives_office)
-"aON" = (
+"aNG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -22291,7 +21655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aOO" = (
+"aNH" = (
/obj/machinery/door/airlock{
name = "Law Office";
req_access_txt = "38"
@@ -22310,7 +21674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aOP" = (
+"aNI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -22326,7 +21690,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"aOQ" = (
+"aNJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass{
name = "Brig Lobby"
@@ -22340,7 +21704,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aOR" = (
+"aNK" = (
/obj/machinery/door/airlock/glass{
name = "Brig Lobby"
},
@@ -22348,18 +21712,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"aOS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"aOT" = (
+"aNL" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -22367,7 +21720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aOU" = (
+"aNM" = (
/obj/machinery/door/airlock/glass{
name = "Courtroom"
},
@@ -22376,7 +21729,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"aOV" = (
+"aNN" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -22385,7 +21738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"aOW" = (
+"aNO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
@@ -22402,7 +21755,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aOX" = (
+"aNP" = (
/obj/machinery/door/airlock/glass{
name = "Locker Room"
},
@@ -22412,7 +21765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aOY" = (
+"aNQ" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -22421,7 +21774,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aOZ" = (
+"aNR" = (
/obj/machinery/door/airlock/glass{
name = "Locker Room"
},
@@ -22429,25 +21782,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"aPa" = (
+"aNS" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPb" = (
+"aNT" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPc" = (
+"aNU" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPd" = (
+"aNV" = (
/obj/machinery/door/poddoor/preopen{
id = "hopexternal"
},
@@ -22458,7 +21811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aPe" = (
+"aNW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -22469,7 +21822,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aPf" = (
+"aNX" = (
/obj/machinery/door/poddoor/preopen{
id = "hopexternal"
},
@@ -22480,7 +21833,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"aPg" = (
+"aNY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -22490,7 +21843,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPh" = (
+"aNZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22506,7 +21859,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPi" = (
+"aOa" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -22522,16 +21875,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPj" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Fore Asteroid Maintenance Access";
- req_access_txt = "12"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aPk" = (
+"aOb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -22547,7 +21891,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPl" = (
+"aOc" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -22556,7 +21900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPm" = (
+"aOd" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -22575,7 +21919,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"aPn" = (
+"aOe" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -22595,41 +21939,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"aPo" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aPp" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/grille,
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aPq" = (
+"aOf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -22637,21 +21947,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"aPr" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aPs" = (
+"aOg" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -22661,7 +21957,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aPt" = (
+"aOh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -22678,7 +21974,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aPu" = (
+"aOi" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -22689,7 +21985,7 @@
/area/teleporter{
name = "Cargo Quantum Pad"
})
-"aPv" = (
+"aOj" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -22705,18 +22001,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPw" = (
-/obj/machinery/door/airlock/maintenance{
- name = "External Airlock Access";
- req_access_txt = "12"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aPx" = (
+"aOk" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -22729,7 +22014,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/office)
-"aPy" = (
+"aOl" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -22737,7 +22022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aPz" = (
+"aOm" = (
/obj/structure/chair{
dir = 8
},
@@ -22755,7 +22040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aPA" = (
+"aOn" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -22764,7 +22049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aPB" = (
+"aOo" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -22772,7 +22057,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPC" = (
+"aOp" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -22785,7 +22070,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPD" = (
+"aOq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22797,7 +22082,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPE" = (
+"aOr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22810,7 +22095,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPF" = (
+"aOs" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -22824,7 +22109,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPG" = (
+"aOt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22838,17 +22123,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPH" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aPI" = (
+"aOu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22865,7 +22140,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aPJ" = (
+"aOv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22875,7 +22150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPK" = (
+"aOw" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 10";
dir = 6;
@@ -22893,7 +22168,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPL" = (
+"aOx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -22906,7 +22181,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPM" = (
+"aOy" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -22922,7 +22197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPN" = (
+"aOz" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 2";
dir = 6;
@@ -22943,7 +22218,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPO" = (
+"aOA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -22959,7 +22234,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPP" = (
+"aOB" = (
/obj/machinery/light{
dir = 1
},
@@ -22978,7 +22253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPQ" = (
+"aOC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22994,7 +22269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPR" = (
+"aOD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23014,7 +22289,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPS" = (
+"aOE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23030,7 +22305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPT" = (
+"aOF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23049,23 +22324,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aPV" = (
+"aOG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23086,7 +22345,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPW" = (
+"aOH" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -23110,7 +22369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPX" = (
+"aOI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23129,7 +22388,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPY" = (
+"aOJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23145,7 +22404,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aPZ" = (
+"aOK" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -23154,7 +22413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQa" = (
+"aOL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23165,7 +22424,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQb" = (
+"aOM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23173,7 +22432,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQc" = (
+"aON" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23192,7 +22451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQd" = (
+"aOO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23209,7 +22468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQe" = (
+"aOP" = (
/obj/machinery/light{
dir = 1
},
@@ -23223,7 +22482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQf" = (
+"aOQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -23234,7 +22493,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQg" = (
+"aOR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23249,7 +22508,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQh" = (
+"aOS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23263,7 +22522,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQi" = (
+"aOT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23282,7 +22541,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQj" = (
+"aOU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
@@ -23292,7 +22551,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQk" = (
+"aOV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23305,7 +22564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQl" = (
+"aOW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23316,7 +22575,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQm" = (
+"aOX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23333,7 +22592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQn" = (
+"aOY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23355,7 +22614,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQo" = (
+"aOZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23374,7 +22633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQp" = (
+"aPa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23393,7 +22652,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQq" = (
+"aPb" = (
/obj/machinery/light{
dir = 1
},
@@ -23410,7 +22669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQr" = (
+"aPc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23421,7 +22680,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQs" = (
+"aPd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23440,7 +22699,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQt" = (
+"aPe" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -23459,7 +22718,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQu" = (
+"aPf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23479,7 +22738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQv" = (
+"aPg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23501,7 +22760,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQw" = (
+"aPh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23515,7 +22774,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQx" = (
+"aPi" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -23536,7 +22795,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQy" = (
+"aPj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23552,7 +22811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQz" = (
+"aPk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23571,7 +22830,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQA" = (
+"aPl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23590,7 +22849,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQB" = (
+"aPm" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23606,7 +22865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQC" = (
+"aPn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23632,7 +22891,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQD" = (
+"aPo" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -23653,7 +22912,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQE" = (
+"aPp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -23669,7 +22928,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQF" = (
+"aPq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23686,7 +22945,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQG" = (
+"aPr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -23702,7 +22961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQH" = (
+"aPs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -23718,7 +22977,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQI" = (
+"aPt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -23737,7 +22996,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQJ" = (
+"aPu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -23753,7 +23012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQK" = (
+"aPv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -23770,7 +23029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQL" = (
+"aPw" = (
/obj/machinery/light{
dir = 1
},
@@ -23781,7 +23040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQM" = (
+"aPx" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -23796,7 +23055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQN" = (
+"aPy" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -23804,7 +23063,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQO" = (
+"aPz" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 9";
dir = 6;
@@ -23817,7 +23076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQP" = (
+"aPA" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -23830,7 +23089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQQ" = (
+"aPB" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -23841,7 +23100,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQR" = (
+"aPC" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -23850,42 +23109,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQS" = (
+"aPD" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"aQT" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 2";
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"aQU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 3";
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"aQV" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aQW" = (
+"aPE" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable/orange{
d1 = 4;
@@ -23899,20 +23128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQX" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aQY" = (
+"aPF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23929,7 +23145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aQZ" = (
+"aPG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23945,7 +23161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRa" = (
+"aPH" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -23968,7 +23184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRb" = (
+"aPI" = (
/obj/machinery/light{
dir = 1
},
@@ -23987,7 +23203,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRc" = (
+"aPJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -24008,7 +23224,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRd" = (
+"aPK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24024,7 +23240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRe" = (
+"aPL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24045,7 +23261,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRf" = (
+"aPM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24056,7 +23272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRg" = (
+"aPN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24069,7 +23285,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRh" = (
+"aPO" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -24082,7 +23298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRi" = (
+"aPP" = (
/obj/structure/chair{
dir = 8
},
@@ -24103,7 +23319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aRj" = (
+"aPQ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -24111,7 +23327,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRk" = (
+"aPR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -24124,7 +23340,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRl" = (
+"aPS" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -24141,7 +23357,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRm" = (
+"aPT" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -24153,7 +23369,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRn" = (
+"aPU" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
@@ -24165,7 +23381,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRo" = (
+"aPV" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -24180,7 +23396,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRp" = (
+"aPW" = (
/obj/machinery/door/airlock/maintenance{
name = "Security SMES Access";
req_access_txt = "10;11;12"
@@ -24197,7 +23413,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aRq" = (
+"aPX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24208,7 +23424,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRr" = (
+"aPY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24222,7 +23438,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRs" = (
+"aPZ" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -24237,7 +23453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRt" = (
+"aQa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24247,7 +23463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRu" = (
+"aQb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24262,7 +23478,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRv" = (
+"aQc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24273,7 +23489,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRw" = (
+"aQd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24287,7 +23503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRx" = (
+"aQe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24298,7 +23514,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRy" = (
+"aQf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24311,7 +23527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRz" = (
+"aQg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24329,7 +23545,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRA" = (
+"aQh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -24344,7 +23560,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRB" = (
+"aQi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -24358,7 +23574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRC" = (
+"aQj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -24369,12 +23585,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRD" = (
+"aQk" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRE" = (
+"aQl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -24382,19 +23598,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRF" = (
+"aQm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRG" = (
+"aQn" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRH" = (
+"aQo" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -24403,7 +23619,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRI" = (
+"aQp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -24413,7 +23629,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRJ" = (
+"aQq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -24422,7 +23638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRK" = (
+"aQr" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -24434,20 +23650,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRL" = (
+"aQs" = (
/obj/effect/landmark/lightsout,
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRM" = (
+"aQt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRN" = (
+"aQu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24458,7 +23674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRO" = (
+"aQv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24469,13 +23685,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRP" = (
+"aQw" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRQ" = (
+"aQx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -24485,7 +23701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRR" = (
+"aQy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -24493,7 +23709,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRS" = (
+"aQz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -24502,7 +23718,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRT" = (
+"aQA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -24512,19 +23728,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRU" = (
+"aQB" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRV" = (
+"aQC" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRW" = (
+"aQD" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -24540,7 +23756,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aRX" = (
+"aQE" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
@@ -24557,7 +23773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aRY" = (
+"aQF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24567,7 +23783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aRZ" = (
+"aQG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24578,7 +23794,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aSa" = (
+"aQH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24592,7 +23808,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aSb" = (
+"aQI" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -24608,7 +23824,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSc" = (
+"aQJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -24627,7 +23843,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSd" = (
+"aQK" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -24635,7 +23851,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSe" = (
+"aQL" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -24643,7 +23859,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSf" = (
+"aQM" = (
/obj/structure/girder,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -24651,7 +23867,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSg" = (
+"aQN" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plasteel/floorgrime{
@@ -24660,7 +23876,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSh" = (
+"aQO" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -24670,7 +23886,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aSi" = (
+"aQP" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -24679,7 +23895,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSj" = (
+"aQQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -24691,7 +23907,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSk" = (
+"aQR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24704,7 +23920,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSl" = (
+"aQS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24712,7 +23928,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSm" = (
+"aQT" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -24721,7 +23937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSn" = (
+"aQU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24729,7 +23945,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSo" = (
+"aQV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24737,7 +23953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSp" = (
+"aQW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24763,7 +23979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSq" = (
+"aQX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -24771,7 +23987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSr" = (
+"aQY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24784,7 +24000,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSs" = (
+"aQZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24793,20 +24009,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSt" = (
+"aRa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSu" = (
+"aRb" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSv" = (
+"aRc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24818,7 +24034,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSw" = (
+"aRd" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -24833,7 +24049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSx" = (
+"aRe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24845,7 +24061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSy" = (
+"aRf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24863,7 +24079,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSz" = (
+"aRg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24872,7 +24088,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSA" = (
+"aRh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -24891,7 +24107,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSB" = (
+"aRi" = (
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -24903,7 +24119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSC" = (
+"aRj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24919,7 +24135,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSD" = (
+"aRk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24945,7 +24161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSE" = (
+"aRl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EngineeringMiddle";
@@ -24956,7 +24172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSF" = (
+"aRm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24971,7 +24187,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSG" = (
+"aRn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -24990,7 +24206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSH" = (
+"aRo" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -25005,7 +24221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSI" = (
+"aRp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25019,7 +24235,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSJ" = (
+"aRq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25037,7 +24253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSK" = (
+"aRr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25055,7 +24271,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSL" = (
+"aRs" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -25068,7 +24284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSM" = (
+"aRt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -25076,29 +24292,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSN" = (
+"aRu" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSO" = (
+"aRv" = (
/obj/machinery/light,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSP" = (
+"aRw" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSQ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"aSR" = (
+"aRx" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -25106,7 +24317,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSS" = (
+"aRy" = (
/obj/machinery/light,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -25114,7 +24325,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aST" = (
+"aRz" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -25125,14 +24336,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSU" = (
+"aRA" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSV" = (
+"aRB" = (
/obj/machinery/camera{
c_tag = "Cargo Asteroid Hall 1";
dir = 1;
@@ -25145,7 +24356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSW" = (
+"aRC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -25155,7 +24366,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSX" = (
+"aRD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 1;
@@ -25167,7 +24378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSY" = (
+"aRE" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -25184,7 +24395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aSZ" = (
+"aRF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -25196,7 +24407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTa" = (
+"aRG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -25206,7 +24417,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTb" = (
+"aRH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -25220,7 +24431,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTc" = (
+"aRI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -25235,7 +24446,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTd" = (
+"aRJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -25262,7 +24473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTe" = (
+"aRK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -25278,7 +24489,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTf" = (
+"aRL" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -25295,7 +24506,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTg" = (
+"aRM" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -25313,7 +24524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aTh" = (
+"aRN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25322,7 +24533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aTi" = (
+"aRO" = (
/obj/machinery/light/small,
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plasteel/floorgrime{
@@ -25331,7 +24542,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTj" = (
+"aRP" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -25339,13 +24550,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTk" = (
+"aRQ" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTl" = (
+"aRR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25360,14 +24571,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTm" = (
+"aRS" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTn" = (
+"aRT" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -25378,7 +24589,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTo" = (
+"aRU" = (
/obj/machinery/door/airlock/glass{
name = "Security Quantum Pad"
},
@@ -25394,7 +24605,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTp" = (
+"aRV" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -25405,24 +24616,24 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTq" = (
+"aRW" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTr" = (
+"aRX" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTs" = (
+"aRY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTt" = (
+"aRZ" = (
/obj/machinery/door/airlock{
name = "Custodial Closet";
req_access_txt = "26"
@@ -25438,7 +24649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aTu" = (
+"aSa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -25446,7 +24657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTv" = (
+"aSb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25455,7 +24666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTw" = (
+"aSc" = (
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
locked = 1;
@@ -25473,7 +24684,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTx" = (
+"aSd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25482,7 +24693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTy" = (
+"aSe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -25493,7 +24704,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTz" = (
+"aSf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/atmos{
name = "Command Atmospherics Checkpoint";
@@ -25506,7 +24717,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTA" = (
+"aSg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25522,7 +24733,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTB" = (
+"aSh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
@@ -25532,7 +24743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTC" = (
+"aSi" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -25546,7 +24757,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"aTD" = (
+"aSj" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -25560,20 +24771,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"aTE" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/grille,
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"aTF" = (
+"aSk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/atmos{
name = "Cargo Atmospherics Checkpoint";
@@ -25583,7 +24781,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTG" = (
+"aSl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -25593,7 +24791,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTH" = (
+"aSm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -25604,7 +24802,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTI" = (
+"aSn" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -25616,12 +24814,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aTJ" = (
+"aSo" = (
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aTK" = (
+"aSp" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -25630,16 +24828,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"aTL" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"aTM" = (
+"aSq" = (
/obj/structure/disposalpipe/segment,
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
@@ -25652,7 +24841,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTN" = (
+"aSr" = (
/obj/machinery/door/airlock/maintenance{
id_tag = "GulagCivExit2";
name = "Fore Asteroid Maintenance Access";
@@ -25664,7 +24853,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTO" = (
+"aSs" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -25672,7 +24861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTP" = (
+"aSt" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -25685,7 +24874,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTQ" = (
+"aSu" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -25705,7 +24894,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTR" = (
+"aSv" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -25717,7 +24906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTS" = (
+"aSw" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -25727,7 +24916,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTT" = (
+"aSx" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -25737,7 +24926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aTU" = (
+"aSy" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/item/device/radio/intercom{
@@ -25755,7 +24944,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTV" = (
+"aSz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25768,7 +24957,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTW" = (
+"aSA" = (
/obj/structure/noticeboard{
dir = 8;
pixel_x = 27;
@@ -25786,7 +24975,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aTX" = (
+"aSB" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -25807,7 +24996,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTY" = (
+"aSC" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -25823,7 +25012,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aTZ" = (
+"aSD" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -25840,7 +25029,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aUa" = (
+"aSE" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -25851,7 +25040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUb" = (
+"aSF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -25862,12 +25051,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUc" = (
+"aSG" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUd" = (
+"aSH" = (
/obj/structure/bed/dogbed,
/mob/living/simple_animal/hostile/lizard{
name = "Wags-His-Tail";
@@ -25877,7 +25066,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUe" = (
+"aSI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -25887,7 +25076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUf" = (
+"aSJ" = (
/obj/vehicle/janicart,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -25899,7 +25088,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUg" = (
+"aSK" = (
/obj/structure/table,
/obj/item/weapon/storage/box/mousetraps,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -25915,7 +25104,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUh" = (
+"aSL" = (
/obj/structure/table,
/obj/machinery/light{
dir = 1
@@ -25931,7 +25120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUi" = (
+"aSM" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -25942,7 +25131,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUj" = (
+"aSN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
@@ -25954,12 +25143,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUk" = (
+"aSO" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aUl" = (
+"aSP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Vault Airlock";
@@ -25969,7 +25158,7 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aUm" = (
+"aSQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -25981,7 +25170,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aUn" = (
+"aSR" = (
/obj/structure/table,
/obj/item/weapon/phone,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25989,7 +25178,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aUo" = (
+"aSS" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -26000,7 +25189,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUp" = (
+"aST" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Mix Output";
@@ -26013,7 +25202,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUq" = (
+"aSU" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -26021,7 +25210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUr" = (
+"aSV" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -26033,7 +25222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUs" = (
+"aSW" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -26044,7 +25233,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUt" = (
+"aSX" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -26054,7 +25243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUu" = (
+"aSY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -26062,7 +25251,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUv" = (
+"aSZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26079,13 +25268,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUw" = (
+"aTa" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUx" = (
+"aTb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -26096,7 +25285,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUy" = (
+"aTc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -26104,7 +25293,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUz" = (
+"aTd" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -26115,7 +25304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUA" = (
+"aTe" = (
/obj/machinery/light/small{
dir = 1
},
@@ -26127,7 +25316,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUB" = (
+"aTf" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
@@ -26135,14 +25324,14 @@
},
/turf/open/space,
/area/space)
-"aUC" = (
+"aTg" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/space,
/area/space)
-"aUD" = (
+"aTh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -26155,7 +25344,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUE" = (
+"aTi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -26167,7 +25356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUF" = (
+"aTj" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -26178,7 +25367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUG" = (
+"aTk" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Input";
@@ -26191,7 +25380,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUH" = (
+"aTl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -26202,7 +25391,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUI" = (
+"aTm" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -26210,7 +25399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUJ" = (
+"aTn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -26221,7 +25410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUK" = (
+"aTo" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Output";
@@ -26234,7 +25423,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUL" = (
+"aTp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -26243,7 +25432,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUM" = (
+"aTq" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26259,7 +25448,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aUN" = (
+"aTr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Cargo Asteroid Hall 2";
@@ -26274,7 +25463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUO" = (
+"aTs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -26283,7 +25472,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUP" = (
+"aTt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26299,7 +25488,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUQ" = (
+"aTu" = (
/obj/machinery/button/door{
id = "GulagCivExit2";
name = "Gulag Door Exit";
@@ -26316,7 +25505,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aUR" = (
+"aTv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26326,7 +25515,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aUS" = (
+"aTw" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -26342,7 +25531,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aUT" = (
+"aTx" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -26357,7 +25546,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aUU" = (
+"aTy" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -26378,21 +25567,21 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aUV" = (
+"aTz" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aUW" = (
+"aTA" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aUX" = (
+"aTB" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -26400,7 +25589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUY" = (
+"aTC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -26409,7 +25598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aUZ" = (
+"aTD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -26426,7 +25615,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVa" = (
+"aTE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -26439,7 +25628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVb" = (
+"aTF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -26454,7 +25643,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVc" = (
+"aTG" = (
/obj/machinery/light/small{
dir = 4
},
@@ -26468,7 +25657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVd" = (
+"aTH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -26484,7 +25673,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVe" = (
+"aTI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -26492,7 +25681,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVf" = (
+"aTJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -26500,14 +25689,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVg" = (
+"aTK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVh" = (
+"aTL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26518,13 +25707,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVi" = (
+"aTM" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVj" = (
+"aTN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -26545,7 +25734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVk" = (
+"aTO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -26553,7 +25742,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVl" = (
+"aTP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -26561,7 +25750,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVm" = (
+"aTQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26577,7 +25766,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVn" = (
+"aTR" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -26586,7 +25775,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aVo" = (
+"aTS" = (
/obj/machinery/light/small,
/obj/item/device/assembly/mousetrap/armed,
/turf/open/floor/plating{
@@ -26595,7 +25784,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aVp" = (
+"aTT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -26610,7 +25799,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVq" = (
+"aTU" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -26618,7 +25807,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVr" = (
+"aTV" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -26629,7 +25818,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVs" = (
+"aTW" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -26640,7 +25829,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVt" = (
+"aTX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -26655,19 +25844,19 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aVu" = (
+"aTY" = (
/obj/structure/closet/jcloset,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVv" = (
+"aTZ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVw" = (
+"aUa" = (
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/disposalpipe/segment,
@@ -26675,7 +25864,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVx" = (
+"aUb" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -26684,12 +25873,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVy" = (
+"aUc" = (
/turf/open/floor/plasteel/stairs{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVz" = (
+"aUd" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -26705,7 +25894,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVA" = (
+"aUe" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -26720,7 +25909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVB" = (
+"aUf" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -26731,7 +25920,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVC" = (
+"aUg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/machinery/light/small{
@@ -26741,7 +25930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVD" = (
+"aUh" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -26752,7 +25941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVE" = (
+"aUi" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -26761,7 +25950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVF" = (
+"aUj" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -26772,7 +25961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVG" = (
+"aUk" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -26782,7 +25971,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVH" = (
+"aUl" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -26790,7 +25979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVI" = (
+"aUm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -26803,7 +25992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVJ" = (
+"aUn" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hallway 1";
dir = 4;
@@ -26815,7 +26004,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVK" = (
+"aUo" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -26824,7 +26013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aVL" = (
+"aUp" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -26838,7 +26027,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVM" = (
+"aUq" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -26846,7 +26035,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVN" = (
+"aUr" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -26866,7 +26055,7 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aVO" = (
+"aUs" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/obj/structure/cable/orange{
d1 = 2;
@@ -26879,13 +26068,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aVP" = (
+"aUt" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aVQ" = (
+"aUu" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -26903,7 +26092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVR" = (
+"aUv" = (
/obj/structure/table,
/obj/item/weapon/grenade/chem_grenade/cleaner,
/obj/item/weapon/grenade/chem_grenade/cleaner,
@@ -26921,7 +26110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVS" = (
+"aUw" = (
/obj/structure/table,
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/weapon/storage/box/lights/mixed,
@@ -26932,13 +26121,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVT" = (
+"aUx" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVU" = (
+"aUy" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -26947,7 +26136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVV" = (
+"aUz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -26956,7 +26145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVW" = (
+"aUA" = (
/obj/structure/janitorialcart,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -26966,13 +26155,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aVX" = (
+"aUB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aVY" = (
+"aUC" = (
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
locked = 1;
@@ -26980,13 +26169,13 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aVZ" = (
+"aUD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aWa" = (
+"aUE" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -26998,13 +26187,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWb" = (
+"aUF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWc" = (
+"aUG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -27015,7 +26204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWd" = (
+"aUH" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -27026,7 +26215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWe" = (
+"aUI" = (
/obj/machinery/camera{
c_tag = "Command Asteroid Hall 10";
dir = 8;
@@ -27036,13 +26225,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWf" = (
+"aUJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWg" = (
+"aUK" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -27050,7 +26239,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWh" = (
+"aUL" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -27063,7 +26252,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWi" = (
+"aUM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 2;
@@ -27078,7 +26267,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWj" = (
+"aUN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27089,7 +26278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWk" = (
+"aUO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27108,7 +26297,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWl" = (
+"aUP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27125,7 +26314,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWm" = (
+"aUQ" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27143,7 +26332,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWn" = (
+"aUR" = (
/obj/machinery/camera{
c_tag = "Cargo Bay SMES";
dir = 6;
@@ -27155,13 +26344,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWo" = (
+"aUS" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWp" = (
+"aUT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27179,7 +26368,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWq" = (
+"aUU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -27190,21 +26379,21 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"aWr" = (
+"aUV" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWs" = (
+"aUW" = (
/turf/closed/wall/r_wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWt" = (
+"aUX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -27220,7 +26409,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWu" = (
+"aUY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment{
@@ -27230,23 +26419,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"aWv" = (
+"aUZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aWw" = (
+"aVa" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aWx" = (
+"aVb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aWy" = (
+"aVc" = (
/turf/open/space,
/area/mine/unexplored{
name = "Command Asteroid"
})
-"aWz" = (
+"aVd" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -27254,7 +26443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWA" = (
+"aVe" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -27268,7 +26457,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWB" = (
+"aVf" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Mix Input";
@@ -27281,7 +26470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWC" = (
+"aVg" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -27292,7 +26481,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWD" = (
+"aVh" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -27310,7 +26499,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWE" = (
+"aVi" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -27327,32 +26516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWF" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Cargo Hallway APC";
- pixel_x = 23;
- pixel_y = 2
- },
-/obj/structure/cable/orange{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/end{
- tag = "icon-warn_end (WEST)";
- icon_state = "warn_end";
- dir = 8
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aWG" = (
+"aVj" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -27365,7 +26529,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWH" = (
+"aVk" = (
/obj/machinery/power/smes,
/obj/structure/cable/orange{
d2 = 4;
@@ -27377,7 +26541,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWI" = (
+"aVl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -27389,7 +26553,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWJ" = (
+"aVm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -27409,7 +26573,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWK" = (
+"aVn" = (
/obj/structure/closet/crate{
name = "Gold Crate"
},
@@ -27430,14 +26594,10 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWL" = (
+"aVo" = (
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWM" = (
-/obj/machinery/computer/bank_machine,
-/turf/open/floor/circuit,
-/area/ai_monitored/nuke_storage)
-"aWN" = (
+"aVp" = (
/obj/structure/safe,
/obj/item/weapon/twohanded/fireaxe,
/obj/item/clothing/head/bearpelt,
@@ -27449,7 +26609,7 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aWO" = (
+"aVq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -27458,7 +26618,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWP" = (
+"aVr" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -27473,7 +26633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWQ" = (
+"aVs" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -27487,7 +26647,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWR" = (
+"aVt" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -27505,7 +26665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWS" = (
+"aVu" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -27518,7 +26678,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWT" = (
+"aVv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -27533,7 +26693,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aWU" = (
+"aVw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27547,7 +26707,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWV" = (
+"aVx" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -27564,7 +26724,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWW" = (
+"aVy" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27576,7 +26736,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWX" = (
+"aVz" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc{
dir = 4;
@@ -27590,7 +26750,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aWY" = (
+"aVA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -27599,7 +26759,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aWZ" = (
+"aVB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27614,21 +26774,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXa" = (
+"aVC" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXb" = (
+"aVD" = (
/turf/closed/wall/r_wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXc" = (
+"aVE" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Solars";
req_access_txt = "10;11;12"
@@ -27644,7 +26804,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXd" = (
+"aVF" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -27656,13 +26816,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXe" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"aXf" = (
+"aVG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -27679,7 +26833,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXg" = (
+"aVH" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -27687,7 +26841,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXh" = (
+"aVI" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -27695,7 +26849,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXi" = (
+"aVJ" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -27704,7 +26858,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXj" = (
+"aVK" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -27717,7 +26871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXk" = (
+"aVL" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -27733,7 +26887,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aXl" = (
+"aVM" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27750,7 +26904,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aXm" = (
+"aVN" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/floor/plasteel/floorgrime{
@@ -27759,11 +26913,11 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aXn" = (
+"aVO" = (
/obj/structure/grille,
/turf/open/space,
/area/space)
-"aXo" = (
+"aVP" = (
/obj/item/weapon/coin/silver{
pixel_x = 7;
pixel_y = 12
@@ -27792,11 +26946,11 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXp" = (
+"aVQ" = (
/obj/machinery/nuclearbomb/selfdestruct,
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXq" = (
+"aVR" = (
/obj/structure/filingcabinet,
/obj/item/weapon/folder/documents,
/obj/machinery/light{
@@ -27805,7 +26959,7 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXr" = (
+"aVS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1;
@@ -27816,7 +26970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXs" = (
+"aVT" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -27831,7 +26985,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXt" = (
+"aVU" = (
/obj/machinery/power/smes,
/obj/structure/cable/orange{
d2 = 4;
@@ -27843,7 +26997,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXu" = (
+"aVV" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -27855,7 +27009,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXv" = (
+"aVW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -27875,7 +27029,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXw" = (
+"aVX" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -27891,7 +27045,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXx" = (
+"aVY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27909,7 +27063,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXy" = (
+"aVZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -27926,7 +27080,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXz" = (
+"aWa" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -27938,7 +27092,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXA" = (
+"aWb" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -27957,7 +27111,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXB" = (
+"aWc" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -27966,7 +27120,7 @@
},
/turf/open/space,
/area/space)
-"aXC" = (
+"aWd" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -27986,7 +27140,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"aXD" = (
+"aWe" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -28000,7 +27154,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"aXE" = (
+"aWf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -28010,7 +27164,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aXF" = (
+"aWg" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Solar Maintenance";
@@ -28028,7 +27182,7 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aXG" = (
+"aWh" = (
/obj/machinery/camera{
c_tag = "Vault";
dir = 5;
@@ -28036,11 +27190,11 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXH" = (
+"aWi" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aXI" = (
+"aWj" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28057,7 +27211,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"aXJ" = (
+"aWk" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -28079,7 +27233,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"aXK" = (
+"aWl" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28091,7 +27245,7 @@
},
/turf/open/space,
/area/space)
-"aXL" = (
+"aWm" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -28108,7 +27262,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXM" = (
+"aWn" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -28120,7 +27274,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXN" = (
+"aWo" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc{
dir = 4;
@@ -28134,7 +27288,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aXO" = (
+"aWp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28145,7 +27299,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXP" = (
+"aWq" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -28159,7 +27313,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aXQ" = (
+"aWr" = (
/obj/machinery/light/small{
dir = 1
},
@@ -28169,12 +27323,12 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"aXR" = (
+"aWs" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/space)
-"aXS" = (
+"aWt" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28194,7 +27348,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"aXT" = (
+"aWu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28206,25 +27360,25 @@
/area/maintenance/portsolar{
name = "Command Asteroid Solar Maintenance"
})
-"aXU" = (
+"aWv" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09"
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXV" = (
+"aWw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXW" = (
+"aWx" = (
/obj/machinery/computer/bank_machine,
/obj/machinery/light,
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"aXX" = (
+"aWy" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28239,7 +27393,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"aXY" = (
+"aWz" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -28260,7 +27414,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"aXZ" = (
+"aWA" = (
/obj/machinery/power/solar_control{
id = "foresolar";
name = "Fore Asteroid Solar Control";
@@ -28276,7 +27430,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aYa" = (
+"aWB" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -28293,20 +27447,20 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aYb" = (
+"aWC" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aYc" = (
+"aWD" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYd" = (
+"aWE" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -28319,7 +27473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYe" = (
+"aWF" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -28330,7 +27484,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"aYf" = (
+"aWG" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28349,7 +27503,7 @@
},
/turf/open/space,
/area/space)
-"aYg" = (
+"aWH" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -28360,7 +27514,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"aYh" = (
+"aWI" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -28369,7 +27523,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/nuke_storage)
-"aYi" = (
+"aWJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -28379,7 +27533,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aYj" = (
+"aWK" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Solar Maintenance";
@@ -28397,7 +27551,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aYk" = (
+"aWL" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -28411,7 +27565,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYl" = (
+"aWM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -28428,7 +27582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYm" = (
+"aWN" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -28438,7 +27592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYn" = (
+"aWO" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28447,7 +27601,7 @@
},
/turf/open/space,
/area/space)
-"aYo" = (
+"aWP" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -28458,7 +27612,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"aYp" = (
+"aWQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -28472,7 +27626,7 @@
},
/turf/open/space,
/area/space)
-"aYq" = (
+"aWR" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -28483,7 +27637,7 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"aYr" = (
+"aWS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28495,7 +27649,7 @@
/area/maintenance/portsolar{
name = "Fore Asteroid Solar Maintenance"
})
-"aYs" = (
+"aWT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28510,7 +27664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYt" = (
+"aWU" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -28523,7 +27677,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYu" = (
+"aWV" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -28542,7 +27696,7 @@
},
/turf/open/space,
/area/space)
-"aYv" = (
+"aWW" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -28556,7 +27710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"aYw" = (
+"aWX" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28568,7 +27722,7 @@
},
/turf/open/space,
/area/space)
-"aYx" = (
+"aWY" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28590,7 +27744,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"aYy" = (
+"aWZ" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -28604,7 +27758,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"aYz" = (
+"aXa" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -28624,7 +27778,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"aYA" = (
+"aXb" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -28633,21 +27787,21 @@
},
/turf/open/space,
/area/space)
-"aYB" = (
+"aXc" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil{
amount = 2
},
/turf/open/space,
/area/space)
-"aYC" = (
+"aXd" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil{
amount = 30
},
/turf/open/space,
/area/space)
-"aYD" = (
+"aXe" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -28661,7 +27815,7 @@
},
/turf/open/space,
/area/space)
-"aYE" = (
+"aXf" = (
/obj/structure/lattice/catwalk,
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -28670,7 +27824,7 @@
},
/turf/open/space,
/area/space)
-"aYF" = (
+"aXg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -28679,7 +27833,7 @@
},
/turf/open/space,
/area/space)
-"aYG" = (
+"aXh" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -28689,7 +27843,7 @@
},
/turf/open/space,
/area/space)
-"aYH" = (
+"aXi" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28698,18 +27852,7 @@
},
/turf/open/space,
/area/space)
-"aYI" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Command-Service Bridge";
- dir = 4;
- icon_state = "camera"
- },
-/turf/open/floor/engine,
-/area/space)
-"aYJ" = (
+"aXj" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28728,19 +27871,7 @@
},
/turf/open/space,
/area/space)
-"aYK" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/camera{
- c_tag = "Command-Engineering Bridge";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"aYL" = (
+"aXk" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
@@ -28748,7 +27879,7 @@
/obj/machinery/power/tracker,
/turf/open/space,
/area/space)
-"aYM" = (
+"aXl" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -28773,12 +27904,12 @@
},
/turf/open/space,
/area/space)
-"aYN" = (
+"aXm" = (
/turf/closed/wall,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYO" = (
+"aXn" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
@@ -28789,12 +27920,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYP" = (
+"aXo" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"aYQ" = (
+"aXp" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28813,13 +27944,13 @@
},
/turf/open/space,
/area/space)
-"aYR" = (
+"aXq" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYS" = (
+"aXr" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -28828,12 +27959,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYT" = (
+"aXs" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"aYU" = (
+"aXt" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-2"
@@ -28842,7 +27973,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"aYV" = (
+"aXu" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -28852,7 +27983,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYW" = (
+"aXv" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (SOUTHEAST)";
icon_state = "conveyor0";
@@ -28862,21 +27993,21 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYX" = (
+"aXw" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYY" = (
+"aXx" = (
/obj/machinery/conveyor/auto,
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aYZ" = (
+"aXy" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -28890,7 +28021,7 @@
},
/turf/open/space,
/area/space)
-"aZa" = (
+"aXz" = (
/obj/machinery/light/small{
dir = 8
},
@@ -28903,7 +28034,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZb" = (
+"aXA" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (SOUTHWEST)";
icon_state = "conveyor0";
@@ -28913,14 +28044,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZc" = (
+"aXB" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"aZd" = (
+"aXC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -28930,19 +28061,19 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZe" = (
+"aXD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZf" = (
+"aXE" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aZg" = (
+"aXF" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -28953,7 +28084,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZh" = (
+"aXG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28961,7 +28092,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZi" = (
+"aXH" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -28972,7 +28103,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZj" = (
+"aXI" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
@@ -28981,7 +28112,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZk" = (
+"aXJ" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 8
@@ -28993,7 +28124,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZl" = (
+"aXK" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -29001,24 +28132,24 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZm" = (
+"aXL" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZn" = (
+"aXM" = (
/turf/closed/mineral,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZo" = (
+"aXN" = (
/turf/closed/mineral/random/labormineral,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZp" = (
+"aXO" = (
/obj/machinery/vending/hydronutrients,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29026,7 +28157,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZq" = (
+"aXP" = (
/obj/machinery/hydroponics/soil,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29034,7 +28165,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZr" = (
+"aXQ" = (
/obj/structure/flora/ausbushes/lavendergrass,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29042,7 +28173,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZs" = (
+"aXR" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light{
dir = 1
@@ -29053,12 +28184,12 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZt" = (
+"aXS" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aZu" = (
+"aXT" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -29074,7 +28205,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZv" = (
+"aXU" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -29082,7 +28213,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZw" = (
+"aXV" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -29093,7 +28224,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZx" = (
+"aXW" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -29102,7 +28233,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZy" = (
+"aXX" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -29113,25 +28244,25 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZz" = (
+"aXY" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZA" = (
+"aXZ" = (
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZB" = (
+"aYa" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZC" = (
+"aYb" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29139,7 +28270,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZD" = (
+"aYc" = (
/obj/structure/table/wood,
/obj/item/seeds/apple,
/obj/item/seeds/cherry,
@@ -29152,7 +28283,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZE" = (
+"aYd" = (
/obj/structure/table/wood,
/obj/item/weapon/cultivator,
/obj/item/weapon/shovel/spade,
@@ -29164,7 +28295,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZF" = (
+"aYe" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29172,7 +28303,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZG" = (
+"aYf" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/airalarm{
dir = 8;
@@ -29190,19 +28321,19 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZH" = (
+"aYg" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aZI" = (
+"aYh" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Engineering Asteroid"
})
-"aZJ" = (
+"aYi" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -29210,7 +28341,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZK" = (
+"aYj" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -29219,7 +28350,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZL" = (
+"aYk" = (
/obj/machinery/light/small{
dir = 1
},
@@ -29227,7 +28358,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZM" = (
+"aYl" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -29247,7 +28378,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"aZN" = (
+"aYm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -29257,7 +28388,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZO" = (
+"aYn" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome North";
@@ -29269,7 +28400,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZP" = (
+"aYo" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/machinery/light{
dir = 1
@@ -29280,14 +28411,14 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZQ" = (
+"aYp" = (
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZR" = (
+"aYq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -29298,7 +28429,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZS" = (
+"aYr" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/firealarm{
dir = 4;
@@ -29311,7 +28442,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"aZT" = (
+"aYs" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -29328,7 +28459,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"aZU" = (
+"aYt" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -29350,7 +28481,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"aZV" = (
+"aYu" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -29362,23 +28493,23 @@
},
/turf/open/space,
/area/space)
-"aZW" = (
+"aYv" = (
/turf/open/floor/plating,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZX" = (
+"aYw" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"aZY" = (
+"aYx" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"aZZ" = (
+"aYy" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -29391,7 +28522,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baa" = (
+"aYz" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -29399,13 +28530,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bab" = (
+"aYA" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bac" = (
+"aYB" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
icon_state = "1-2"
@@ -29414,13 +28545,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bad" = (
+"aYC" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bae" = (
+"aYD" = (
/obj/machinery/light/small{
dir = 4
},
@@ -29429,7 +28560,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baf" = (
+"aYE" = (
/obj/structure/flora/ausbushes/fullgrass,
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass{
@@ -29438,7 +28569,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bag" = (
+"aYF" = (
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29446,7 +28577,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bah" = (
+"aYG" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29454,7 +28585,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bai" = (
+"aYH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29462,7 +28593,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baj" = (
+"aYI" = (
/obj/structure/flora/ausbushes/ywflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29470,7 +28601,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bak" = (
+"aYJ" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -29481,12 +28612,12 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bal" = (
+"aYK" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bam" = (
+"aYL" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -29495,7 +28626,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"ban" = (
+"aYM" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -29504,13 +28635,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bao" = (
+"aYN" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bap" = (
+"aYO" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -29519,7 +28650,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baq" = (
+"aYP" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -29534,7 +28665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bar" = (
+"aYQ" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -29546,7 +28677,7 @@
},
/turf/open/space,
/area/space)
-"bas" = (
+"aYR" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -29568,21 +28699,21 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"bat" = (
+"aYS" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/structure/disposaloutlet,
/turf/open/floor/plating/airless,
/area/space)
-"bau" = (
+"aYT" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bav" = (
+"aYU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29596,7 +28727,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baw" = (
+"aYV" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -29607,12 +28738,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bax" = (
+"aYW" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bay" = (
+"aYX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29623,7 +28754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baz" = (
+"aYY" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -29634,7 +28765,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baA" = (
+"aYZ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -29656,7 +28787,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baB" = (
+"aZa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29675,7 +28806,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baC" = (
+"aZb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29698,7 +28829,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baD" = (
+"aZc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29718,7 +28849,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baE" = (
+"aZd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29738,7 +28869,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baF" = (
+"aZe" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -29757,7 +28888,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"baG" = (
+"aZf" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/light{
icon_state = "tube1";
@@ -29769,14 +28900,14 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baH" = (
+"aZg" = (
/turf/open/floor/plasteel/redblue{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baI" = (
+"aZh" = (
/obj/structure/flora/ausbushes/leafybush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29784,7 +28915,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baJ" = (
+"aZi" = (
/obj/structure/flora/ausbushes/grassybush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29792,7 +28923,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baK" = (
+"aZj" = (
/mob/living/simple_animal/chicken/rabbit/normal,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -29800,7 +28931,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baL" = (
+"aZk" = (
/obj/structure/flora/ausbushes/reedbush,
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass{
@@ -29809,7 +28940,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"baM" = (
+"aZl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -29819,7 +28950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baN" = (
+"aZm" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -29827,12 +28958,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baO" = (
+"aZn" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baP" = (
+"aZo" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -29840,7 +28971,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baQ" = (
+"aZp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29856,7 +28987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"baR" = (
+"aZq" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
@@ -29866,12 +28997,12 @@
},
/turf/open/space,
/area/space)
-"baS" = (
+"aZr" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baT" = (
+"aZs" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -29880,13 +29011,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baU" = (
+"aZt" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baV" = (
+"aZu" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -29895,12 +29026,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"baW" = (
+"aZv" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"baX" = (
+"aZw" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -29913,7 +29044,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baY" = (
+"aZx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -29929,7 +29060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"baZ" = (
+"aZy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -29943,7 +29074,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bba" = (
+"aZz" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -29962,7 +29093,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbb" = (
+"aZA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29985,7 +29116,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbc" = (
+"aZB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30008,7 +29139,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbd" = (
+"aZC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30028,7 +29159,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbe" = (
+"aZD" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -30048,7 +29179,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbf" = (
+"aZE" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -30056,13 +29187,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbg" = (
+"aZF" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbh" = (
+"aZG" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -30081,7 +29212,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbi" = (
+"aZH" = (
/obj/machinery/light/small{
dir = 4
},
@@ -30089,7 +29220,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbj" = (
+"aZI" = (
/obj/structure/flora/ausbushes/reedbush,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -30097,7 +29228,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bbk" = (
+"aZJ" = (
/obj/structure/sink/puddle,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -30105,7 +29236,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bbl" = (
+"aZK" = (
/obj/structure/flora/ausbushes/stalkybush,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/grass{
@@ -30114,10 +29245,10 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bbm" = (
+"aZL" = (
/turf/closed/mineral,
/area/hallway/primary/central)
-"bbn" = (
+"aZM" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -30132,24 +29263,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbo" = (
+"aZN" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bbp" = (
+"aZO" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bbq" = (
+"aZP" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bbr" = (
+"aZQ" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -30164,12 +29295,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbs" = (
+"aZR" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbt" = (
+"aZS" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -30177,13 +29308,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbu" = (
+"aZT" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbv" = (
+"aZU" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -30200,13 +29331,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbw" = (
+"aZV" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbx" = (
+"aZW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30224,7 +29355,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bby" = (
+"aZX" = (
/obj/machinery/light{
dir = 8
},
@@ -30235,13 +29366,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbz" = (
+"aZY" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbA" = (
+"aZZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30252,12 +29383,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbB" = (
+"baa" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbC" = (
+"bab" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Backroom";
req_access_txt = "25"
@@ -30266,13 +29397,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbD" = (
+"bac" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bbE" = (
+"bad" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -30280,7 +29411,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbF" = (
+"bae" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -30304,7 +29435,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbG" = (
+"baf" = (
/obj/machinery/power/apc{
dir = 1;
name = "Port Asteroid Maintence APC";
@@ -30322,7 +29453,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbH" = (
+"bag" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/map/left/ceres{
pixel_x = 32;
@@ -30335,7 +29466,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bbI" = (
+"bah" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/light,
/turf/open/floor/grass{
@@ -30344,17 +29475,17 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bbJ" = (
+"bai" = (
/turf/open/floor/plating/asteroid,
/area/hallway/primary/central)
-"bbK" = (
+"baj" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbL" = (
+"bak" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -30367,13 +29498,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbM" = (
+"bal" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbN" = (
+"bam" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 7";
dir = 4;
@@ -30387,7 +29518,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbO" = (
+"ban" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -30400,7 +29531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbP" = (
+"bao" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -30424,13 +29555,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbQ" = (
+"bap" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bbR" = (
+"baq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -30444,7 +29575,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbS" = (
+"bar" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -30452,7 +29583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbT" = (
+"bas" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -30461,7 +29592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbU" = (
+"bat" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -30472,14 +29603,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bbV" = (
+"bau" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bbW" = (
+"bav" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -30489,12 +29620,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbX" = (
+"baw" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbY" = (
+"bax" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30509,7 +29640,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bbZ" = (
+"bay" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 1";
@@ -30522,7 +29653,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bca" = (
+"baz" = (
/obj/machinery/power/apc{
dir = 1;
name = "Bar APC";
@@ -30537,7 +29668,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcb" = (
+"baA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -30548,7 +29679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcc" = (
+"baB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -30560,7 +29691,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcd" = (
+"baC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -30570,7 +29701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bce" = (
+"baD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -30589,7 +29720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcf" = (
+"baE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -30603,7 +29734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcg" = (
+"baF" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -30618,12 +29749,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bch" = (
+"baG" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bci" = (
+"baH" = (
/obj/machinery/door/airlock/maintenance{
name = "Freezer";
req_access_txt = "28"
@@ -30632,7 +29763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcj" = (
+"baI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30647,7 +29778,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bck" = (
+"baJ" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -30655,7 +29786,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcl" = (
+"baK" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
@@ -30669,7 +29800,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcm" = (
+"baL" = (
/obj/machinery/power/apc{
dir = 8;
name = "Rehabilitation Dome APC";
@@ -30686,23 +29817,23 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcn" = (
+"baM" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/hallway/primary/central)
-"bco" = (
+"baN" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcp" = (
+"baO" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcq" = (
+"baP" = (
/obj/machinery/light{
dir = 4
},
@@ -30724,7 +29855,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcr" = (
+"baQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30741,7 +29872,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcs" = (
+"baR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30751,7 +29882,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bct" = (
+"baS" = (
/obj/machinery/power/apc{
dir = 4;
name = "Central Primary Hallway APC";
@@ -30766,12 +29897,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcu" = (
+"baT" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bcv" = (
+"baU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -30786,7 +29917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcw" = (
+"baV" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -30802,7 +29933,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcx" = (
+"baW" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -30815,18 +29946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bcy" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"bcz" = (
+"baX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30836,7 +29956,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bcA" = (
+"baY" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -30845,7 +29965,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bcB" = (
+"baZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -30853,7 +29973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bcC" = (
+"bba" = (
/obj/machinery/camera{
c_tag = "Bar Backroom";
dir = 5;
@@ -30863,12 +29983,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcD" = (
+"bbb" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcE" = (
+"bbc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -30876,7 +29996,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcF" = (
+"bbd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -30885,7 +30005,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcG" = (
+"bbe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -30893,7 +30013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcH" = (
+"bbf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -30906,14 +30026,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bcI" = (
+"bbg" = (
/obj/structure/kitchenspike,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcJ" = (
+"bbh" = (
/obj/machinery/light/small{
dir = 1
},
@@ -30921,13 +30041,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcK" = (
+"bbi" = (
/obj/structure/kitchenspike,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcL" = (
+"bbj" = (
/obj/machinery/camera{
c_tag = "Freezer"
},
@@ -30935,7 +30055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcM" = (
+"bbk" = (
/obj/machinery/power/apc{
dir = 1;
name = "Kitchen APC";
@@ -30950,12 +30070,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcN" = (
+"bbl" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bcO" = (
+"bbm" = (
/obj/structure/flora/ausbushes/stalkybush,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome West 1";
@@ -30968,7 +30088,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcP" = (
+"bbn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -30978,7 +30098,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcQ" = (
+"bbo" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -30991,7 +30111,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcR" = (
+"bbp" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -31005,7 +30125,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcS" = (
+"bbq" = (
/obj/machinery/light{
dir = 1
},
@@ -31022,7 +30142,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bcT" = (
+"bbr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31032,13 +30152,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcU" = (
+"bbs" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating/asteroid,
/area/hallway/primary/central)
-"bcV" = (
+"bbt" = (
/obj/machinery/light/small{
dir = 4
},
@@ -31048,13 +30168,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcW" = (
+"bbu" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcX" = (
+"bbv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31066,7 +30186,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcY" = (
+"bbw" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -31074,7 +30194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bcZ" = (
+"bbx" = (
/obj/structure/table,
/obj/item/stack/sheet/rglass{
amount = 20
@@ -31083,7 +30203,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bda" = (
+"bby" = (
/obj/machinery/camera{
c_tag = "EVA Equipment";
dir = 6;
@@ -31093,13 +30213,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdb" = (
+"bbz" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdc" = (
+"bbA" = (
/obj/machinery/light{
dir = 1
},
@@ -31107,7 +30227,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdd" = (
+"bbB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -31116,21 +30236,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bde" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"bdf" = (
+"bbC" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -31138,7 +30244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdg" = (
+"bbD" = (
/obj/structure/table/wood,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
@@ -31146,7 +30252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdh" = (
+"bbE" = (
/obj/machinery/light/small,
/obj/structure/table/wood,
/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
@@ -31155,13 +30261,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdi" = (
+"bbF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdj" = (
+"bbG" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 0;
@@ -31172,13 +30278,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdk" = (
+"bbH" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdl" = (
+"bbI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -31189,7 +30295,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdm" = (
+"bbJ" = (
/mob/living/simple_animal/hostile/retaliate/goat{
name = "Pete"
},
@@ -31197,7 +30303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdn" = (
+"bbK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -31211,7 +30317,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdo" = (
+"bbL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31227,7 +30333,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bdp" = (
+"bbM" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -31237,7 +30343,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bdq" = (
+"bbN" = (
/obj/machinery/door/airlock/glass{
name = "Rehabilitation Dome"
},
@@ -31247,14 +30353,14 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bdr" = (
+"bbO" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bds" = (
+"bbP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome Lobby East";
@@ -31274,7 +30380,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bdt" = (
+"bbQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -31290,7 +30396,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdu" = (
+"bbR" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -31305,7 +30411,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdv" = (
+"bbS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31320,7 +30426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdw" = (
+"bbT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -31334,7 +30440,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdx" = (
+"bbU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31345,7 +30451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdy" = (
+"bbV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -31362,7 +30468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdz" = (
+"bbW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -31381,7 +30487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdA" = (
+"bbX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -31398,7 +30504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdB" = (
+"bbY" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -31413,7 +30519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bdC" = (
+"bbZ" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty{
amount = 20
@@ -31422,12 +30528,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdD" = (
+"bca" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdE" = (
+"bcb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -31435,7 +30541,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdF" = (
+"bcc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -31444,13 +30550,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bdG" = (
+"bcd" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdH" = (
+"bce" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -31463,7 +30569,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdI" = (
+"bcf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -31477,7 +30583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdJ" = (
+"bcg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -31498,7 +30604,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdK" = (
+"bch" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -31507,13 +30613,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bdL" = (
+"bci" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bdM" = (
+"bcj" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
@@ -31522,7 +30628,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bdN" = (
+"bck" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating{
@@ -31531,26 +30637,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bdO" = (
-/obj/machinery/camera{
- c_tag = "Service SMES";
- dir = 6;
- icon_state = "camera";
- network = list("SS13","QM")
- },
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bdP" = (
+"bcl" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -31566,7 +30653,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bdQ" = (
+"bcm" = (
/obj/machinery/door/airlock/maintenance{
name = "Serivce SMES Access";
req_access_txt = "10;11;12"
@@ -31582,26 +30669,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bdR" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"bdS" = (
+"bcn" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdT" = (
+"bco" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -31614,7 +30688,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdU" = (
+"bcp" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
@@ -31625,7 +30699,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdV" = (
+"bcq" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -31641,14 +30715,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bdW" = (
+"bcr" = (
/obj/machinery/vending/boozeomat,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdX" = (
+"bcs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Bar Backroom";
@@ -31663,7 +30737,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bdY" = (
+"bct" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -31671,13 +30745,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bdZ" = (
+"bcu" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bea" = (
+"bcv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -31689,7 +30763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beb" = (
+"bcw" = (
/obj/machinery/gibber,
/obj/machinery/light/small{
dir = 4
@@ -31698,13 +30772,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bec" = (
+"bcx" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bed" = (
+"bcy" = (
/obj/structure/flora/ausbushes/reedbush,
/obj/machinery/light{
icon_state = "tube1";
@@ -31716,14 +30790,14 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bee" = (
+"bcz" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bef" = (
+"bcA" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (SOUTHWEST)";
icon_state = "neutral";
@@ -31733,7 +30807,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beg" = (
+"bcB" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -31743,7 +30817,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beh" = (
+"bcC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -31758,7 +30832,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bei" = (
+"bcD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -31772,7 +30846,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bej" = (
+"bcE" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -31787,7 +30861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bek" = (
+"bcF" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -31800,7 +30874,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bel" = (
+"bcG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31813,50 +30887,50 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bem" = (
+"bcH" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"ben" = (
+"bcI" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"beo" = (
+"bcJ" = (
/obj/structure/closet/crate/rcd,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bep" = (
+"bcK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"beq" = (
+"bcL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"ber" = (
+"bcM" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bes" = (
+"bcN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bet" = (
+"bcO" = (
/obj/machinery/camera{
c_tag = "Medical SMES";
dir = 6;
@@ -31867,7 +30941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beu" = (
+"bcP" = (
/obj/machinery/computer/station_alert,
/obj/structure/cable/orange{
d2 = 2;
@@ -31877,7 +30951,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bev" = (
+"bcQ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -31885,7 +30959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bew" = (
+"bcR" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
dir = 8
@@ -31894,7 +30968,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bex" = (
+"bcS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -31905,12 +30979,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bey" = (
+"bcT" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bez" = (
+"bcU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Medbay Asteroid Hallway 6";
@@ -31925,7 +30999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"beA" = (
+"bcV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31938,7 +31012,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"beB" = (
+"bcW" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -31950,14 +31024,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"beC" = (
+"bcX" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"beD" = (
+"bcY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -31969,7 +31043,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"beE" = (
+"bcZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31984,7 +31058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"beF" = (
+"bda" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/reagent_containers/glass/rag,
@@ -31995,7 +31069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beG" = (
+"bdb" = (
/obj/structure/table,
/obj/item/weapon/book/manual/barman_recipes,
/obj/item/device/radio/intercom{
@@ -32009,21 +31083,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beH" = (
+"bdc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beI" = (
+"bdd" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beJ" = (
+"bde" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks/beer,
/obj/structure/extinguisher_cabinet{
@@ -32033,7 +31107,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beK" = (
+"bdf" = (
/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";
@@ -32045,7 +31119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beL" = (
+"bdg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -32060,13 +31134,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"beM" = (
+"bdh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beN" = (
+"bdi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -32077,13 +31151,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beO" = (
+"bdj" = (
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"beP" = (
+"bdk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -32094,7 +31168,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beQ" = (
+"bdl" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32105,7 +31179,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beR" = (
+"bdm" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32116,7 +31190,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beS" = (
+"bdn" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32127,7 +31201,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beT" = (
+"bdo" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -32142,7 +31216,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beU" = (
+"bdp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -32156,7 +31230,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beV" = (
+"bdq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -32166,7 +31240,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beW" = (
+"bdr" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
@@ -32176,7 +31250,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beX" = (
+"bds" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -32193,7 +31267,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beY" = (
+"bdt" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -32208,7 +31282,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"beZ" = (
+"bdu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
@@ -32227,7 +31301,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfa" = (
+"bdv" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -32236,7 +31310,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfb" = (
+"bdw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -32245,7 +31319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfc" = (
+"bdx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -32259,7 +31333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfd" = (
+"bdy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32278,14 +31352,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfe" = (
+"bdz" = (
/obj/structure/rack,
/obj/item/weapon/tank/jetpack/carbondioxide,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bff" = (
+"bdA" = (
/obj/structure/rack,
/obj/structure/window/reinforced{
dir = 4;
@@ -32297,7 +31371,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfg" = (
+"bdB" = (
/obj/structure/rack,
/obj/structure/window/reinforced{
dir = 8
@@ -32307,14 +31381,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfh" = (
+"bdC" = (
/obj/structure/rack,
/obj/item/clothing/shoes/magboots,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bfi" = (
+"bdD" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -32329,7 +31403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfj" = (
+"bdE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -32344,7 +31418,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfk" = (
+"bdF" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -32354,7 +31428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfl" = (
+"bdG" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -32362,7 +31436,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfm" = (
+"bdH" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -32379,7 +31453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfn" = (
+"bdI" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -32389,7 +31463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfo" = (
+"bdJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -32403,12 +31477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bfp" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"bfq" = (
+"bdK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -32421,7 +31490,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bfr" = (
+"bdL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -32433,46 +31502,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bfs" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/chair/stool,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bft" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/computer/station_alert,
-/obj/structure/cable/orange{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bfu" = (
+"bdM" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -32488,7 +31518,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bfv" = (
+"bdN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32503,7 +31533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bfw" = (
+"bdO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32517,7 +31547,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bfx" = (
+"bdP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32529,7 +31559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bfy" = (
+"bdQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32549,7 +31579,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bfz" = (
+"bdR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -32558,7 +31588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfA" = (
+"bdS" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -32567,7 +31597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfB" = (
+"bdT" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -32575,7 +31605,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfC" = (
+"bdU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -32586,13 +31616,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfD" = (
-/obj/effect/landmark/start/bartender,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/bar)
-"bfE" = (
+"bdV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -32603,7 +31627,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfF" = (
+"bdW" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -32616,32 +31640,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bfG" = (
+"bdX" = (
/obj/machinery/icecream_vat,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfH" = (
+"bdY" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfI" = (
+"bdZ" = (
/obj/structure/closet/chefcloset,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfJ" = (
+"bea" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bfK" = (
+"beb" = (
/obj/structure/chair/stool,
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass{
@@ -32650,7 +31674,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfL" = (
+"bec" = (
/obj/structure/table/wood,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -32658,7 +31682,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfM" = (
+"bed" = (
/obj/structure/chair/stool,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -32666,7 +31690,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfN" = (
+"bee" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -32677,7 +31701,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfO" = (
+"bef" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -32692,7 +31716,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfP" = (
+"beg" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -32703,7 +31727,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bfQ" = (
+"beh" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (SOUTHWEST)";
icon_state = "neutral";
@@ -32711,7 +31735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfR" = (
+"bei" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -32719,7 +31743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfS" = (
+"bej" = (
/obj/machinery/light{
dir = 1
},
@@ -32730,7 +31754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfT" = (
+"bek" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -32741,7 +31765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfU" = (
+"bel" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -32754,7 +31778,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfV" = (
+"bem" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -32772,7 +31796,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfW" = (
+"ben" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -32790,7 +31814,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfX" = (
+"beo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -32801,7 +31825,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfY" = (
+"bep" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -32812,7 +31836,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bfZ" = (
+"beq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32827,7 +31851,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bga" = (
+"ber" = (
/obj/machinery/light{
dir = 1
},
@@ -32841,7 +31865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgb" = (
+"bes" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -32852,12 +31876,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgc" = (
+"bet" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgd" = (
+"beu" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -32869,7 +31893,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bge" = (
+"bev" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_command{
name = "EVA";
@@ -32879,7 +31903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgf" = (
+"bew" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -32890,7 +31914,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgg" = (
+"bex" = (
/obj/machinery/power/apc{
dir = 8;
name = "Starboard Hallway APC";
@@ -32907,7 +31931,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgh" = (
+"bey" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -32918,7 +31942,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgi" = (
+"bez" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32934,7 +31958,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgj" = (
+"beA" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -32951,20 +31975,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgk" = (
+"beB" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgl" = (
+"beC" = (
/obj/structure/closet/crate,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgm" = (
+"beD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -32976,48 +32000,48 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgn" = (
+"beE" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgo" = (
+"beF" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgp" = (
+"beG" = (
/turf/closed/mineral/random/labormineral,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bgq" = (
+"beH" = (
/turf/closed/mineral,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bgr" = (
+"beI" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bgs" = (
+"beJ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bgt" = (
+"beK" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bgu" = (
+"beL" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plating{
@@ -33026,14 +32050,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bgv" = (
+"beM" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/bartender,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgw" = (
+"beN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/obj/structure/table/wood/poker,
@@ -33042,14 +32066,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgx" = (
+"beO" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgy" = (
+"beP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Bar Access";
@@ -33064,13 +32088,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bgz" = (
+"beQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgA" = (
+"beR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Freezer";
@@ -33085,7 +32109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bgB" = (
+"beS" = (
/obj/structure/flora/ausbushes/sparsegrass,
/mob/living/simple_animal/chicken/rabbit/normal,
/turf/open/floor/grass{
@@ -33094,7 +32118,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bgC" = (
+"beT" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/light{
dir = 4;
@@ -33106,7 +32130,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bgD" = (
+"beU" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -33118,7 +32142,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bgE" = (
+"beV" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -33133,7 +32157,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bgF" = (
+"beW" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTHEAST)";
icon_state = "neutral";
@@ -33141,19 +32165,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgG" = (
+"beX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgH" = (
+"beY" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgI" = (
+"beZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -33173,7 +32197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgJ" = (
+"bfa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -33188,7 +32212,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgK" = (
+"bfb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -33202,7 +32226,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgL" = (
+"bfc" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -33220,7 +32244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgM" = (
+"bfd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33234,7 +32258,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgN" = (
+"bfe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33248,7 +32272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgO" = (
+"bff" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -33268,7 +32292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgP" = (
+"bfg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33279,7 +32303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bgQ" = (
+"bfh" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -33291,7 +32315,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgR" = (
+"bfi" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTHWEST)";
@@ -33300,7 +32324,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgS" = (
+"bfj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33314,7 +32338,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgT" = (
+"bfk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTH)";
@@ -33323,7 +32347,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgU" = (
+"bfl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33336,7 +32360,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgV" = (
+"bfm" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/blue/side{
tag = "icon-blue (NORTHEAST)";
@@ -33345,7 +32369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bgW" = (
+"bfn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33361,7 +32385,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgX" = (
+"bfo" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -33371,7 +32395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgY" = (
+"bfp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -33386,7 +32410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bgZ" = (
+"bfq" = (
/obj/machinery/door/airlock/maintenance{
name = "Starboard Asteroid Maintenance Access";
req_access_txt = "12"
@@ -33395,7 +32419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bha" = (
+"bfr" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -33403,25 +32427,25 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhb" = (
+"bfs" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhc" = (
+"bft" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhd" = (
+"bfu" = (
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhe" = (
+"bfv" = (
/obj/machinery/light/small{
dir = 1
},
@@ -33429,25 +32453,25 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhf" = (
+"bfw" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhg" = (
+"bfx" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhh" = (
+"bfy" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bhi" = (
+"bfz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33455,7 +32479,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bhj" = (
+"bfA" = (
/obj/structure/window{
tag = "icon-window (EAST)";
icon_state = "window";
@@ -33468,7 +32492,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bhk" = (
+"bfB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33482,7 +32506,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bhl" = (
+"bfC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33490,7 +32514,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bhm" = (
+"bfD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -33500,7 +32524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bhn" = (
+"bfE" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -33512,7 +32536,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bho" = (
+"bfF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
@@ -33521,7 +32545,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhp" = (
+"bfG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table/wood/poker,
/obj/machinery/door/firedoor,
@@ -33529,13 +32553,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhq" = (
+"bfH" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhr" = (
+"bfI" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -33543,7 +32567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bhs" = (
+"bfJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -33563,7 +32587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bht" = (
+"bfK" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/stack/packageWrap,
@@ -33572,7 +32596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhu" = (
+"bfL" = (
/obj/structure/table,
/obj/structure/table,
/obj/machinery/reagentgrinder,
@@ -33585,7 +32609,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhv" = (
+"bfM" = (
/obj/machinery/processor,
/obj/machinery/camera{
c_tag = "Kitchen"
@@ -33594,7 +32618,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhw" = (
+"bfN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -33605,7 +32629,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhx" = (
+"bfO" = (
/obj/structure/sink/kitchen{
pixel_y = 32
},
@@ -33613,7 +32637,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhy" = (
+"bfP" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
@@ -33621,7 +32645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bhz" = (
+"bfQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -33637,7 +32661,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bhA" = (
+"bfR" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/camera{
c_tag = "Rehabilitation Dome South 2";
@@ -33649,7 +32673,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhB" = (
+"bfS" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/airalarm{
dir = 1;
@@ -33662,7 +32686,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhC" = (
+"bfT" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/firealarm{
dir = 1;
@@ -33675,7 +32699,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhD" = (
+"bfU" = (
/obj/structure/flora/ausbushes/grassybush,
/obj/structure/sign/nosmoking_2{
pixel_y = -32
@@ -33686,7 +32710,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhE" = (
+"bfV" = (
/obj/machinery/light,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -33694,7 +32718,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhF" = (
+"bfW" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -33711,7 +32735,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhG" = (
+"bfX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33731,7 +32755,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhH" = (
+"bfY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33743,7 +32767,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhI" = (
+"bfZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -33763,7 +32787,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"bhJ" = (
+"bga" = (
/obj/structure/sign/securearea{
pixel_x = 32;
pixel_y = -32
@@ -33773,7 +32797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhK" = (
+"bgb" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 3";
dir = 1;
@@ -33786,7 +32810,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhL" = (
+"bgc" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -33799,14 +32823,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhM" = (
+"bgd" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhN" = (
+"bge" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -33816,7 +32840,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhO" = (
+"bgf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -33830,12 +32854,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhP" = (
+"bgg" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhQ" = (
+"bgh" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -33846,7 +32870,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhR" = (
+"bgi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -33858,7 +32882,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhS" = (
+"bgj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33882,7 +32906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhT" = (
+"bgk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33899,7 +32923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bhU" = (
+"bgl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33917,7 +32941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhV" = (
+"bgm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33933,7 +32957,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhW" = (
+"bgn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33952,7 +32976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhX" = (
+"bgo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33963,7 +32987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhY" = (
+"bgp" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -33983,7 +33007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bhZ" = (
+"bgq" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -34001,13 +33025,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bia" = (
+"bgr" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bib" = (
+"bgs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -34017,7 +33041,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bic" = (
+"bgt" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -34037,7 +33061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bid" = (
+"bgu" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34057,7 +33081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bie" = (
+"bgv" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -34081,7 +33105,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bif" = (
+"bgw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -34103,7 +33127,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"big" = (
+"bgx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34122,7 +33146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bih" = (
+"bgy" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34147,7 +33171,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bii" = (
+"bgz" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34169,7 +33193,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bij" = (
+"bgA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34190,7 +33214,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bik" = (
+"bgB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34210,7 +33234,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bil" = (
+"bgC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34220,7 +33244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bim" = (
+"bgD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34234,7 +33258,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bin" = (
+"bgE" = (
/obj/machinery/door/airlock/maintenance{
name = "Starboard Asteroid Maintenance Access";
req_access_txt = "12"
@@ -34248,7 +33272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bio" = (
+"bgF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34261,7 +33285,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bip" = (
+"bgG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34273,7 +33297,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"biq" = (
+"bgH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34290,7 +33314,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bir" = (
+"bgI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -34303,7 +33327,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bis" = (
+"bgJ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -34315,18 +33339,13 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bit" = (
+"bgK" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"biu" = (
-/turf/open/floor/plasteel/bar{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"biv" = (
+"bgL" = (
/obj/structure/window{
tag = "icon-window (EAST)";
icon_state = "window";
@@ -34336,7 +33355,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"biw" = (
+"bgM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -34346,7 +33365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bix" = (
+"bgN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34359,7 +33378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"biy" = (
+"bgO" = (
/obj/machinery/camera{
c_tag = "Bar";
dir = 5;
@@ -34373,7 +33392,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biz" = (
+"bgP" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -34383,7 +33402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biA" = (
+"bgQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -34393,7 +33412,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biB" = (
+"bgR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -34401,7 +33420,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biC" = (
+"bgS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -34412,7 +33431,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biD" = (
+"bgT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -34431,7 +33450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"biE" = (
+"bgU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34451,7 +33470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biF" = (
+"bgV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34468,7 +33487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biG" = (
+"bgW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34484,7 +33503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biH" = (
+"bgX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -34500,7 +33519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biI" = (
+"bgY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -34508,7 +33527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biJ" = (
+"bgZ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -34520,7 +33539,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"biK" = (
+"bha" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34539,7 +33558,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"biL" = (
+"bhb" = (
/obj/machinery/door/airlock/atmos{
name = "Service Atmospherics Checkpoint";
req_access_txt = "24"
@@ -34550,7 +33569,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"biM" = (
+"bhc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -34559,7 +33578,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"biN" = (
+"bhd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -34568,12 +33587,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"biO" = (
+"bhe" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"biP" = (
+"bhf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34589,7 +33608,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"biQ" = (
+"bhg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34605,7 +33624,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"biR" = (
+"bhh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34616,13 +33635,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"biS" = (
+"bhi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"biT" = (
+"bhj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34630,7 +33649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"biU" = (
+"bhk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -34641,7 +33660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"biV" = (
+"bhl" = (
/obj/machinery/camera{
c_tag = "EVA Storage";
dir = 9;
@@ -34654,13 +33673,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"biW" = (
+"bhm" = (
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"biX" = (
+"bhn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -34668,7 +33687,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"biY" = (
+"bho" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34680,7 +33699,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"biZ" = (
+"bhp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -34690,7 +33709,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bja" = (
+"bhq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34701,7 +33720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjb" = (
+"bhr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -34717,7 +33736,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjc" = (
+"bhs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -34734,7 +33753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjd" = (
+"bht" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -34749,7 +33768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bje" = (
+"bhu" = (
/obj/machinery/light/small{
dir = 8
},
@@ -34759,19 +33778,13 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bjf" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bjg" = (
+"bhv" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bjh" = (
+"bhw" = (
/obj/machinery/power/apc{
dir = 2;
name = "Surgery APC";
@@ -34787,7 +33800,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bji" = (
+"bhx" = (
/obj/machinery/light/small,
/obj/structure/closet,
/turf/open/floor/plating/astplate{
@@ -34796,7 +33809,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bjj" = (
+"bhy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -34807,7 +33820,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bjk" = (
+"bhz" = (
/obj/structure/rack,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -34818,7 +33831,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bjl" = (
+"bhA" = (
/obj/structure/window{
tag = "icon-window (EAST)";
icon_state = "window";
@@ -34834,7 +33847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"bjm" = (
+"bhB" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -34843,7 +33856,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjn" = (
+"bhC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -34855,7 +33868,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjo" = (
+"bhD" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -34863,52 +33876,37 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjp" = (
+"bhE" = (
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjq" = (
+"bhF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bjr" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/open/floor/plasteel/bar{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/bar)
-"bjs" = (
+"bhG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjt" = (
+"bhH" = (
/obj/effect/landmark/start/cook,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bju" = (
+"bhI" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/peppermill,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjv" = (
+"bhJ" = (
/obj/structure/table,
/obj/item/weapon/book/manual/chef_recipes,
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -34919,18 +33917,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjw" = (
+"bhK" = (
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjx" = (
+"bhL" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bjy" = (
+"bhM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -34952,7 +33950,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bjz" = (
+"bhN" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -34962,7 +33960,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bjA" = (
+"bhO" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -34975,33 +33973,33 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bjB" = (
+"bhP" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"bjC" = (
+"bhQ" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 6
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bjD" = (
+"bhR" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bjE" = (
+"bhS" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 10
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bjF" = (
+"bhT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "SEngineering Asteroid Hallway 5";
@@ -35015,7 +34013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bjG" = (
+"bhU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35026,7 +34024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bjH" = (
+"bhV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -35035,7 +34033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bjI" = (
+"bhW" = (
/obj/structure/table,
/obj/item/stack/rods{
amount = 50
@@ -35048,21 +34046,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bjJ" = (
+"bhX" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bjK" = (
+"bhY" = (
/obj/machinery/light,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bjL" = (
+"bhZ" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
@@ -35072,7 +34070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bjM" = (
+"bia" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/blue/side{
@@ -35082,13 +34080,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"bjN" = (
+"bib" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjO" = (
+"bic" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -35096,7 +34094,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjP" = (
+"bid" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35104,7 +34102,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjQ" = (
+"bie" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35118,13 +34116,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjR" = (
+"bif" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjS" = (
+"big" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -35133,7 +34131,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjT" = (
+"bih" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35147,7 +34145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjU" = (
+"bii" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35159,7 +34157,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjV" = (
+"bij" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -35170,12 +34168,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bjW" = (
+"bik" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjX" = (
+"bil" = (
/obj/machinery/door/airlock/maintenance{
name = "Surgey Observation";
req_access_txt = "5"
@@ -35184,12 +34182,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bjY" = (
+"bim" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bjZ" = (
+"bin" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -35201,7 +34199,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bka" = (
+"bio" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -35209,7 +34207,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkb" = (
+"bip" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -35221,20 +34219,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/item/device/assembly/mousetrap/armed,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bkd" = (
+"biq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 2";
@@ -35250,7 +34235,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bke" = (
+"bir" = (
/obj/machinery/light{
dir = 8
},
@@ -35263,7 +34248,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkf" = (
+"bis" = (
/obj/structure/chair{
dir = 4
},
@@ -35272,7 +34257,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkg" = (
+"bit" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -35282,7 +34267,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkh" = (
+"biu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35294,7 +34279,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bki" = (
+"biv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35305,7 +34290,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkj" = (
+"biw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35318,7 +34303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkk" = (
+"bix" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -35330,7 +34315,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkl" = (
+"biy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -35343,7 +34328,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bkm" = (
+"biz" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -35356,13 +34341,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkn" = (
+"biA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bko" = (
+"biB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -35372,21 +34357,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkp" = (
+"biC" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkq" = (
+"biD" = (
/obj/structure/table,
/obj/item/weapon/kitchen/rollingpin,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bkr" = (
+"biE" = (
/obj/structure/table,
/obj/machinery/microwave,
/obj/machinery/light{
@@ -35397,7 +34382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bks" = (
+"biF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -35422,7 +34407,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkt" = (
+"biG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -35433,7 +34418,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bku" = (
+"biH" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -35447,49 +34432,49 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkv" = (
+"biI" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/space,
/area/space)
-"bkw" = (
+"biJ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 6
},
/turf/open/space,
/area/space)
-"bkx" = (
+"biK" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
},
/turf/open/space,
/area/space)
-"bky" = (
+"biL" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 10
},
/turf/open/space,
/area/space)
-"bkz" = (
+"biM" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bkA" = (
+"biN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bkB" = (
+"biO" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"bkC" = (
+"biP" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -35498,26 +34483,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"bkD" = (
+"biQ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bkE" = (
+"biR" = (
/obj/structure/table,
/obj/item/weapon/surgicaldrill,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkF" = (
+"biS" = (
/obj/structure/table,
/obj/item/weapon/hemostat,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkG" = (
+"biT" = (
/obj/structure/table,
/obj/item/weapon/scalpel{
pixel_y = 12
@@ -35530,14 +34515,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkH" = (
+"biU" = (
/obj/structure/table,
/obj/item/weapon/retractor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkI" = (
+"biV" = (
/obj/structure/table,
/obj/item/weapon/cautery{
pixel_x = 4
@@ -35546,7 +34531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkJ" = (
+"biW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -35554,7 +34539,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkK" = (
+"biX" = (
/obj/structure/chair{
dir = 8
},
@@ -35562,7 +34547,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkL" = (
+"biY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -35571,7 +34556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkM" = (
+"biZ" = (
/obj/structure/chair{
dir = 8
},
@@ -35582,14 +34567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bkN" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bkO" = (
+"bja" = (
/obj/structure/closet/crate,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -35598,18 +34576,18 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bkP" = (
+"bjb" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bkQ" = (
+"bjc" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bkR" = (
+"bjd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -35621,7 +34599,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bkS" = (
+"bje" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -35634,7 +34612,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bkT" = (
+"bjf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -35651,7 +34629,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkU" = (
+"bjg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -35666,7 +34644,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkV" = (
+"bjh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35682,7 +34660,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkW" = (
+"bji" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35701,7 +34679,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkX" = (
+"bjj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35720,7 +34698,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkY" = (
+"bjk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35740,7 +34718,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bkZ" = (
+"bjl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35757,7 +34735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bla" = (
+"bjm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35772,7 +34750,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"blb" = (
+"bjn" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -35792,7 +34770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"blc" = (
+"bjo" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -35800,32 +34778,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bld" = (
+"bjp" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"ble" = (
+"bjq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"blf" = (
+"bjr" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"blg" = (
+"bjs" = (
/obj/effect/landmark/xmastree,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"blh" = (
+"bjt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -35835,7 +34813,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bli" = (
+"bju" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -35845,7 +34823,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"blj" = (
+"bjv" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker,
/obj/item/weapon/reagent_containers/food/condiment/enzyme,
@@ -35853,21 +34831,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"blk" = (
+"bjw" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/mint,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bll" = (
+"bjx" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"blm" = (
+"bjy" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -35884,7 +34862,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bln" = (
+"bjz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -35894,7 +34872,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blo" = (
+"bjA" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -35912,7 +34890,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blp" = (
+"bjB" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -32
},
@@ -35924,24 +34902,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blq" = (
+"bjC" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 5
},
/turf/open/space,
/area/space)
-"blr" = (
+"bjD" = (
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bls" = (
+"bjE" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 9
},
/turf/open/space,
/area/space)
-"blt" = (
+"bjF" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -35953,14 +34931,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blu" = (
+"bjG" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"blv" = (
+"bjH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/item/device/radio/intercom{
@@ -35980,7 +34958,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blw" = (
+"bjI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35998,7 +34976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blx" = (
+"bjJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
@@ -36010,7 +34988,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bly" = (
+"bjK" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -36022,12 +35000,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"blz" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"blA" = (
+"bjL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -36036,14 +35009,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"blB" = (
+"bjM" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"blC" = (
+"bjN" = (
/obj/structure/table,
/obj/item/weapon/cartridge/medical{
pixel_x = -2;
@@ -36064,7 +35037,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"blD" = (
+"bjO" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/airalarm{
@@ -36076,7 +35049,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blE" = (
+"bjP" = (
/obj/machinery/light/small{
dir = 1
},
@@ -36088,13 +35061,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blF" = (
+"bjQ" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blG" = (
+"bjR" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/firealarm{
@@ -36104,7 +35077,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"blH" = (
+"bjS" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/mask/surgical,
@@ -36113,12 +35086,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blI" = (
+"bjT" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blJ" = (
+"bjU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -36127,7 +35100,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blK" = (
+"bjV" = (
/obj/structure/table,
/obj/item/weapon/surgical_drapes,
/obj/item/weapon/razor,
@@ -36135,13 +35108,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blL" = (
+"bjW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blM" = (
+"bjX" = (
/obj/structure/chair{
dir = 8
},
@@ -36152,34 +35125,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"blN" = (
+"bjY" = (
/obj/structure/table,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/xeno_spawn,
+"bjZ" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"blP" = (
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"blQ" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"blR" = (
+"bka" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36192,7 +35149,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"blS" = (
+"bkb" = (
/obj/machinery/light/small{
dir = 4
},
@@ -36200,7 +35157,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"blT" = (
+"bkc" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -36211,7 +35168,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blU" = (
+"bkd" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -36232,7 +35189,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blV" = (
+"bke" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36248,7 +35205,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blW" = (
+"bkf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36263,7 +35220,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blX" = (
+"bkg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36281,7 +35238,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blY" = (
+"bkh" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -36300,7 +35257,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"blZ" = (
+"bki" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36316,7 +35273,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bma" = (
+"bkj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36335,7 +35292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bmb" = (
+"bkk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36352,7 +35309,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bmc" = (
+"bkl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36366,7 +35323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmd" = (
+"bkm" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36376,7 +35333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bme" = (
+"bkn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36390,7 +35347,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmf" = (
+"bko" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36402,7 +35359,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmg" = (
+"bkp" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36419,7 +35376,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmh" = (
+"bkq" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -36432,7 +35389,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmi" = (
+"bkr" = (
/obj/structure/table/wood,
/obj/structure/cable/orange{
d1 = 4;
@@ -36443,7 +35400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmj" = (
+"bks" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -36457,7 +35414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmk" = (
+"bkt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -36467,20 +35424,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bml" = (
+"bku" = (
/obj/machinery/deepfryer,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmm" = (
+"bkv" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmn" = (
+"bkw" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/machinery/airalarm{
dir = 8;
@@ -36491,7 +35448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmo" = (
+"bkx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -36511,7 +35468,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bmp" = (
+"bky" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
@@ -36520,7 +35477,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bmq" = (
+"bkz" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -36535,7 +35492,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bmr" = (
+"bkA" = (
/obj/machinery/light/small{
dir = 4
},
@@ -36543,12 +35500,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bms" = (
+"bkB" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bmt" = (
+"bkC" = (
/obj/structure/cable{
icon_state = "0-2";
pixel_y = 1;
@@ -36567,7 +35524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bmu" = (
+"bkD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36578,7 +35535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bmv" = (
+"bkE" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -36597,7 +35554,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bmw" = (
+"bkF" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -36610,7 +35567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bmx" = (
+"bkG" = (
/obj/machinery/light/small{
dir = 8
},
@@ -36618,18 +35575,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bmy" = (
+"bkH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bmz" = (
+"bkI" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"bmA" = (
+"bkJ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
@@ -36639,12 +35596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"bmB" = (
-/turf/open/floor/plasteel/barber{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"bmC" = (
+"bkK" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 8;
@@ -36654,7 +35606,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bmD" = (
+"bkL" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -36663,7 +35615,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bmE" = (
+"bkM" = (
/obj/machinery/vending/wallmed{
pixel_x = 24
},
@@ -36671,20 +35623,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bmF" = (
+"bkN" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bmG" = (
+"bkO" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bmH" = (
+"bkP" = (
/obj/structure/table/optable,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/blobstart,
@@ -36692,13 +35644,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bmI" = (
+"bkQ" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bmJ" = (
+"bkR" = (
/obj/structure/chair{
dir = 8
},
@@ -36711,23 +35663,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bmK" = (
+"bkS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bmL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bmM" = (
+"bkT" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -36743,7 +35685,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bmN" = (
+"bkU" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -36754,12 +35696,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bmO" = (
+"bkV" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bmP" = (
+"bkW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -36769,7 +35711,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bmQ" = (
+"bkX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -36783,7 +35725,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bmR" = (
+"bkY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -36795,7 +35737,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmS" = (
+"bkZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -36803,7 +35745,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmT" = (
+"bla" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -36812,7 +35754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmU" = (
+"blb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -36821,13 +35763,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmV" = (
+"blc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmW" = (
+"bld" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -36835,20 +35777,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bmX" = (
+"ble" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmY" = (
+"blf" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bmZ" = (
+"blg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36879,7 +35821,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bna" = (
+"blh" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -36895,7 +35837,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnb" = (
+"bli" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36909,7 +35851,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnc" = (
+"blj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36926,7 +35868,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnd" = (
+"blk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36945,7 +35887,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bne" = (
+"bll" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36963,7 +35905,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnf" = (
+"blm" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -36976,7 +35918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bng" = (
+"bln" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -36987,7 +35929,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnh" = (
+"blo" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -36997,7 +35939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bni" = (
+"blp" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -37009,7 +35951,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bnj" = (
+"blq" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -37019,7 +35961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bnk" = (
+"blr" = (
/obj/machinery/computer/station_alert,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -37033,13 +35975,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bnl" = (
+"bls" = (
/obj/machinery/light,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bnm" = (
+"blt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -37052,7 +35994,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnn" = (
+"blu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37071,7 +36013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bno" = (
+"blv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37091,7 +36033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnp" = (
+"blw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37113,7 +36055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnq" = (
+"blx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37133,7 +36075,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnr" = (
+"bly" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37150,7 +36092,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bns" = (
+"blz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37168,7 +36110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnt" = (
+"blA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37182,7 +36124,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnu" = (
+"blB" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -37206,7 +36148,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bnv" = (
+"blC" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -37228,7 +36170,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bnw" = (
+"blD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37242,7 +36184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bnx" = (
+"blE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37262,7 +36204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bny" = (
+"blF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37283,7 +36225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bnz" = (
+"blG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37301,7 +36243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bnA" = (
+"blH" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -37324,7 +36266,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bnB" = (
+"blI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -37341,7 +36283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bnC" = (
+"blJ" = (
/obj/structure/cable/orange{
d2 = 8;
icon_state = "0-8"
@@ -37356,7 +36298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"bnD" = (
+"blK" = (
/obj/machinery/button/door{
id = "medp1";
name = "Privacy Shutters";
@@ -37366,13 +36308,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnE" = (
+"blL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnF" = (
+"blM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -37382,7 +36324,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnG" = (
+"blN" = (
/obj/machinery/button/door{
id = "medp2";
name = "Privacy Shutters";
@@ -37392,27 +36334,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bnH" = (
+"blO" = (
/obj/machinery/computer/operating,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnI" = (
+"blP" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnJ" = (
+"blQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnK" = (
+"blR" = (
/obj/structure/chair{
dir = 8
},
@@ -37425,7 +36367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnL" = (
+"blS" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -37434,7 +36376,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bnM" = (
+"blT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -37442,7 +36384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnN" = (
+"blU" = (
/obj/machinery/door/airlock/glass_virology{
name = "Isolation A";
req_access_txt = "39"
@@ -37452,7 +36394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnO" = (
+"blV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -37461,30 +36403,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnP" = (
-/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{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bnQ" = (
+"blW" = (
/obj/structure/bed,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnR" = (
+"blX" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bnS" = (
+"blY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -37494,7 +36426,7 @@
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"bnT" = (
+"blZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -37507,7 +36439,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bnU" = (
+"bma" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -37516,7 +36448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnV" = (
+"bmb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37524,7 +36456,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnW" = (
+"bmc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37533,7 +36465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnX" = (
+"bmd" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -37543,7 +36475,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bnY" = (
+"bme" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -37555,7 +36487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bnZ" = (
+"bmf" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -37564,7 +36496,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"boa" = (
+"bmg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -37573,7 +36505,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bob" = (
+"bmh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -37581,19 +36513,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"boc" = (
+"bmi" = (
/obj/machinery/light,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bod" = (
+"bmj" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"boe" = (
+"bmk" = (
/obj/machinery/vending/cola,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -37610,7 +36542,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bof" = (
+"bml" = (
/obj/machinery/food_cart,
/obj/machinery/light_switch{
pixel_x = -25
@@ -37624,7 +36556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"bog" = (
+"bmm" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -37633,7 +36565,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"boh" = (
+"bmn" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -37647,7 +36579,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"boi" = (
+"bmo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37655,7 +36587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"boj" = (
+"bmp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -37676,7 +36608,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bok" = (
+"bmq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -37695,7 +36627,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bol" = (
+"bmr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37713,7 +36645,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bom" = (
+"bms" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37734,7 +36666,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bon" = (
+"bmt" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -37746,7 +36678,7 @@
},
/turf/open/space,
/area/space)
-"boo" = (
+"bmu" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -37759,7 +36691,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bop" = (
+"bmv" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -37776,7 +36708,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boq" = (
+"bmw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37792,7 +36724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bor" = (
+"bmx" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -37809,7 +36741,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bos" = (
+"bmy" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -37830,7 +36762,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bot" = (
+"bmz" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -37843,7 +36775,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bou" = (
+"bmA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 2";
@@ -37857,7 +36789,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bov" = (
+"bmB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37868,7 +36800,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bow" = (
+"bmC" = (
/obj/structure/reflector/single{
anchored = 1;
dir = 4;
@@ -37879,7 +36811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"box" = (
+"bmD" = (
/obj/structure/reflector/box{
anchored = 1
},
@@ -37887,7 +36819,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"boy" = (
+"bmE" = (
/obj/structure/reflector/single{
anchored = 1;
dir = 1;
@@ -37898,7 +36830,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"boz" = (
+"bmF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -37908,7 +36840,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boA" = (
+"bmG" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -37921,7 +36853,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boB" = (
+"bmH" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -37930,7 +36862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boC" = (
+"bmI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37938,7 +36870,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boD" = (
+"bmJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -37954,7 +36886,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boE" = (
+"bmK" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -37974,7 +36906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boF" = (
+"bmL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37993,7 +36925,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boG" = (
+"bmM" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -38013,7 +36945,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"boH" = (
+"bmN" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -38029,7 +36961,7 @@
},
/turf/open/space,
/area/space)
-"boI" = (
+"bmO" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -38045,7 +36977,7 @@
},
/turf/open/space,
/area/space)
-"boJ" = (
+"bmP" = (
/obj/structure/lattice/catwalk,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -38060,7 +36992,7 @@
},
/turf/open/space,
/area/space)
-"boK" = (
+"bmQ" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -38080,7 +37012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boL" = (
+"bmR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38098,7 +37030,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boM" = (
+"bmS" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -38118,7 +37050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boN" = (
+"bmT" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -38135,7 +37067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boO" = (
+"bmU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38144,7 +37076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boP" = (
+"bmV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -38154,16 +37086,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/sign/map/left/ceres{
- pixel_x = -32
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"boR" = (
+"bmW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -38175,21 +37098,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"boS" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"boT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue)
-"boU" = (
+"bmX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38197,13 +37106,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"boV" = (
+"bmY" = (
/obj/machinery/light,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"boW" = (
+"bmZ" = (
/obj/machinery/camera{
c_tag = "Chief Medical Officer's Office";
dir = 1;
@@ -38221,13 +37130,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"boX" = (
+"bna" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"boY" = (
+"bnb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -38238,7 +37147,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"boZ" = (
+"bnc" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room";
req_access_txt = "5"
@@ -38248,7 +37157,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bpa" = (
+"bnd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -38260,7 +37169,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bpb" = (
+"bne" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -38271,7 +37180,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bpc" = (
+"bnf" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room 2";
req_access_txt = "5"
@@ -38281,7 +37190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bpd" = (
+"bng" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -38293,13 +37202,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bpe" = (
+"bnh" = (
/obj/structure/closet/secure_closet/medical2,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bpf" = (
+"bni" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -38316,13 +37225,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bpg" = (
+"bnj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bph" = (
+"bnk" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -38331,7 +37240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bpi" = (
+"bnl" = (
/obj/structure/closet/crate/freezer,
/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/blood/empty,
@@ -38357,7 +37266,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bpj" = (
+"bnm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -38367,31 +37276,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bpk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bpl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bpm" = (
+"bnn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpn" = (
+"bno" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -38399,7 +37290,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpo" = (
+"bnp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38412,7 +37303,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpp" = (
+"bnq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38420,7 +37311,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpq" = (
+"bnr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38434,7 +37325,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpr" = (
+"bns" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -38442,7 +37333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bps" = (
+"bnt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -38452,14 +37343,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpt" = (
+"bnu" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bpu" = (
+"bnv" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -38470,7 +37361,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bpv" = (
+"bnw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -38478,7 +37369,7 @@
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bpw" = (
+"bnx" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -38489,7 +37380,7 @@
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"bpx" = (
+"bny" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -38498,7 +37389,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpy" = (
+"bnz" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Primary Tool Storage North";
@@ -38509,7 +37400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpz" = (
+"bnA" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -38519,7 +37410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpA" = (
+"bnB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -38537,7 +37428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpB" = (
+"bnC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38550,7 +37441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpC" = (
+"bnD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38567,7 +37458,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpD" = (
+"bnE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -38587,7 +37478,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bpE" = (
+"bnF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -38604,7 +37495,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bpF" = (
+"bnG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -38625,7 +37516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bpG" = (
+"bnH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -38642,7 +37533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bpH" = (
+"bnI" = (
/obj/machinery/door/airlock/glass{
name = "Bar"
},
@@ -38653,7 +37544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bpI" = (
+"bnJ" = (
/obj/machinery/door/airlock/glass{
name = "Bar"
},
@@ -38662,13 +37553,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bpJ" = (
+"bnK" = (
/obj/structure/sign/barsign,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bpK" = (
+"bnL" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -38677,7 +37568,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"bpL" = (
+"bnM" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -38685,7 +37576,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bpM" = (
+"bnN" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -38704,7 +37595,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"bpN" = (
+"bnO" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -38724,7 +37615,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"bpO" = (
+"bnP" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -38743,7 +37634,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"bpP" = (
+"bnQ" = (
/obj/machinery/light{
dir = 4
},
@@ -38755,7 +37646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpQ" = (
+"bnR" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
tag = "icon-intact (NORTH)";
icon_state = "intact";
@@ -38763,7 +37654,7 @@
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bpR" = (
+"bnS" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Laser Room";
req_access_txt = "10"
@@ -38778,7 +37669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bpS" = (
+"bnT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -38786,7 +37677,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bpT" = (
+"bnU" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Laser Room";
req_access_txt = "10"
@@ -38795,7 +37686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bpU" = (
+"bnV" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -38809,7 +37700,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bpV" = (
+"bnW" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -38832,7 +37723,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"bpW" = (
+"bnX" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -38855,7 +37746,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"bpX" = (
+"bnY" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/cable{
@@ -38878,7 +37769,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"bpY" = (
+"bnZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -38888,7 +37779,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bpZ" = (
+"boa" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -38898,7 +37789,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bqa" = (
+"bob" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -38914,12 +37805,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bqb" = (
+"boc" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bqc" = (
+"bod" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -38931,7 +37822,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"bqd" = (
+"boe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -38948,12 +37839,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"bqe" = (
+"bof" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bqf" = (
+"bog" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -38966,7 +37857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bqg" = (
+"boh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -38975,7 +37866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bqh" = (
+"boi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -38984,7 +37875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bqi" = (
+"boj" = (
/obj/machinery/power/apc{
dir = 1;
name = "Morgue APC";
@@ -39002,7 +37893,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"bqj" = (
+"bok" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
icon_state = "whiteblue";
@@ -39010,13 +37901,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bqk" = (
+"bol" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bql" = (
+"bom" = (
/obj/machinery/door/airlock/medical{
name = "Operating Theatre";
req_access_txt = "45"
@@ -39026,7 +37917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bqm" = (
+"bon" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = "";
name = "Surgery Observation";
@@ -39037,7 +37928,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"bqn" = (
+"boo" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -39048,15 +37939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bqp" = (
+"bop" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39064,7 +37947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqq" = (
+"boq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39073,7 +37956,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqr" = (
+"bor" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -39082,13 +37965,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqs" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/virology)
-"bqt" = (
+"bos" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39100,7 +37977,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqu" = (
+"bot" = (
/obj/machinery/door/airlock/virology{
name = "Break Room";
req_access_txt = "39"
@@ -39115,7 +37992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqv" = (
+"bou" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39126,7 +38003,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqw" = (
+"bov" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -39139,7 +38016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqx" = (
+"bow" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -39147,7 +38024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqy" = (
+"box" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/obj/machinery/light{
@@ -39161,7 +38038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqz" = (
+"boy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -39169,7 +38046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bqA" = (
+"boz" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -39184,24 +38061,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bqB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bqC" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bqD" = (
+"boA" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -39212,14 +38072,14 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bqE" = (
+"boB" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bqF" = (
+"boC" = (
/obj/structure/table,
/obj/machinery/light{
dir = 8
@@ -39229,7 +38089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqG" = (
+"boD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -39239,24 +38099,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqH" = (
+"boE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqI" = (
+"boF" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqJ" = (
+"boG" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bqK" = (
+"boH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -39266,7 +38126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqL" = (
+"boI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -39292,7 +38152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqM" = (
+"boJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -39316,7 +38176,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqN" = (
+"boK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39329,7 +38189,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqO" = (
+"boL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39347,7 +38207,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqP" = (
+"boM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -39364,7 +38224,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqQ" = (
+"boN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39372,7 +38232,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqR" = (
+"boO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39386,7 +38246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqS" = (
+"boP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -39397,7 +38257,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqT" = (
+"boQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -39408,7 +38268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqU" = (
+"boR" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -39416,7 +38276,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqV" = (
+"boS" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -39431,7 +38291,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqW" = (
+"boT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -39446,7 +38306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqX" = (
+"boU" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -39458,7 +38318,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqY" = (
+"boV" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -39473,7 +38333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bqZ" = (
+"boW" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39485,7 +38345,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bra" = (
+"boX" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 1"
},
@@ -39496,7 +38356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brb" = (
+"boY" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -39511,7 +38371,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brc" = (
+"boZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -39522,7 +38382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brd" = (
+"bpa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -39533,7 +38393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bre" = (
+"bpb" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -39562,7 +38422,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"brf" = (
+"bpc" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -39577,7 +38437,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"brg" = (
+"bpd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -39595,7 +38455,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"brh" = (
+"bpe" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -39607,7 +38467,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bri" = (
+"bpf" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -39619,7 +38479,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"brj" = (
+"bpg" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -39631,7 +38491,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"brk" = (
+"bph" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -39640,7 +38500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"brl" = (
+"bpi" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -39652,13 +38512,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"brm" = (
+"bpj" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"brn" = (
+"bpk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -39673,7 +38533,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bro" = (
+"bpl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -39702,7 +38562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brp" = (
+"bpm" = (
/obj/machinery/camera{
c_tag = "Engineering Asteroid Hallway 6"
},
@@ -39714,7 +38574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brq" = (
+"bpn" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -39729,7 +38589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brr" = (
+"bpo" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -39740,7 +38600,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"brs" = (
+"bpp" = (
/obj/machinery/light{
dir = 1
},
@@ -39751,7 +38611,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"brt" = (
+"bpq" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -39766,7 +38626,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bru" = (
+"bpr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/security{
dir = 1;
@@ -39779,7 +38639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"brv" = (
+"bps" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -39797,7 +38657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"brw" = (
+"bpt" = (
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small criminals alike!";
name = "Criminal Delivery Chute"
@@ -39814,7 +38674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"brx" = (
+"bpu" = (
/obj/structure/table,
/obj/machinery/airalarm{
frequency = 1439;
@@ -39835,7 +38695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bry" = (
+"bpv" = (
/obj/machinery/recharger,
/obj/structure/table,
/obj/machinery/light{
@@ -39850,7 +38710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"brz" = (
+"bpw" = (
/obj/structure/filingcabinet,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -39869,7 +38729,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"brA" = (
+"bpx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -39881,7 +38741,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"brB" = (
+"bpy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -39896,7 +38756,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"brC" = (
+"bpz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -39905,7 +38765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brD" = (
+"bpA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -39923,7 +38783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brE" = (
+"bpB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -39931,7 +38791,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brF" = (
+"bpC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -39946,7 +38806,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brG" = (
+"bpD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39960,7 +38820,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brH" = (
+"bpE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39971,7 +38831,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brI" = (
+"bpF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -39989,7 +38849,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brJ" = (
+"bpG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40002,7 +38862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brK" = (
+"bpH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40018,7 +38878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brL" = (
+"bpI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40036,7 +38896,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brM" = (
+"bpJ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -40047,7 +38907,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brN" = (
+"bpK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -40056,7 +38916,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brO" = (
+"bpL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40067,7 +38927,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brP" = (
+"bpM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -40075,24 +38935,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brQ" = (
+"bpN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brR" = (
+"bpO" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brS" = (
+"bpP" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"brT" = (
+"bpQ" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/infections,
/obj/machinery/camera{
@@ -40105,7 +38965,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brU" = (
+"bpR" = (
/obj/structure/table,
/obj/item/clothing/suit/straight_jacket,
/obj/item/clothing/mask/muzzle,
@@ -40113,7 +38973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brV" = (
+"bpS" = (
/obj/structure/table/glass,
/obj/item/clothing/gloves/color/latex,
/obj/item/device/healthanalyzer,
@@ -40137,14 +38997,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brW" = (
+"bpT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brX" = (
+"bpU" = (
/obj/machinery/smartfridge/chemistry/virology/preloaded,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (EAST)";
@@ -40153,19 +39013,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brY" = (
+"bpV" = (
/obj/structure/closet/wardrobe/virology_white,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"brZ" = (
+"bpW" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bsa" = (
+"bpX" = (
/obj/structure/shuttle/engine/propulsion/burst{
tag = "icon-propulsion (WEST)";
icon_state = "propulsion";
@@ -40173,20 +39033,20 @@
},
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"bsb" = (
+"bpY" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_3)
-"bsc" = (
+"bpZ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bsd" = (
+"bqa" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bse" = (
+"bqb" = (
/obj/machinery/light/small{
dir = 4
},
@@ -40202,7 +39062,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bsf" = (
+"bqc" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/structure/sign/poster/random{
@@ -40214,14 +39074,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bsg" = (
+"bqd" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bsh" = (
+"bqe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -40235,7 +39095,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsi" = (
+"bqf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -40245,7 +39105,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsj" = (
+"bqg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -40260,7 +39120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsk" = (
+"bqh" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40276,7 +39136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsl" = (
+"bqi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -40284,7 +39144,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsm" = (
+"bqj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
tag = "icon-pipe-j2 (WEST)";
@@ -40295,7 +39155,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsn" = (
+"bqk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -40310,7 +39170,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bso" = (
+"bql" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -40319,7 +39179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsp" = (
+"bqm" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -40331,7 +39191,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bsq" = (
+"bqn" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -40343,13 +39203,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsr" = (
+"bqo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bss" = (
+"bqp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -40357,7 +39217,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bst" = (
+"bqq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40372,7 +39232,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsu" = (
+"bqr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -40386,7 +39246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsv" = (
+"bqs" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -40409,7 +39269,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsw" = (
+"bqt" = (
/obj/effect/turf_decal/stripes/corner,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -40419,7 +39279,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsx" = (
+"bqu" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
@@ -40433,7 +39293,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsy" = (
+"bqv" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -40444,7 +39304,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsz" = (
+"bqw" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
@@ -40458,7 +39318,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsA" = (
+"bqx" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -40477,7 +39337,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsB" = (
+"bqy" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -40490,7 +39350,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsC" = (
+"bqz" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
@@ -40504,7 +39364,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsD" = (
+"bqA" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/trinary/filter/flipped{
dir = 8;
@@ -40518,7 +39378,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsE" = (
+"bqB" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
@@ -40530,7 +39390,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsF" = (
+"bqC" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -40542,13 +39402,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bsG" = (
+"bqD" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bsH" = (
+"bqE" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
frequency = 1441;
@@ -40557,7 +39417,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/supermatter)
-"bsI" = (
+"bqF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
@@ -40573,7 +39433,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsJ" = (
+"bqG" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -40588,7 +39448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bsK" = (
+"bqH" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -40603,7 +39463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsL" = (
+"bqI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40612,7 +39472,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsM" = (
+"bqJ" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -40622,7 +39482,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsN" = (
+"bqK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -40634,7 +39494,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bsO" = (
+"bqL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -40656,7 +39516,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsP" = (
+"bqM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40669,7 +39529,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsQ" = (
+"bqN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40683,7 +39543,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsR" = (
+"bqO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40703,7 +39563,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsS" = (
+"bqP" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
req_access_txt = "63"
@@ -40730,7 +39590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bsT" = (
+"bqQ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40743,7 +39603,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bsU" = (
+"bqR" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -40760,7 +39620,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bsV" = (
+"bqS" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -40774,13 +39634,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bsW" = (
+"bqT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bsX" = (
+"bqU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -40788,7 +39648,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bsY" = (
+"bqV" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -40797,7 +39657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bsZ" = (
+"bqW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40812,13 +39672,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bta" = (
+"bqX" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"btb" = (
+"bqY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40826,7 +39686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"btc" = (
+"bqZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40843,7 +39703,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"btd" = (
+"bra" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -40857,7 +39717,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bte" = (
+"brb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40866,7 +39726,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"btf" = (
+"brc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -40874,7 +39734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"btg" = (
+"brd" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/machinery/light{
@@ -40885,7 +39745,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bth" = (
+"bre" = (
/obj/structure/closet/l3closet/virology,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (NORTHWEST)";
@@ -40894,7 +39754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bti" = (
+"brf" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -40905,7 +39765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"btj" = (
+"brg" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -40916,7 +39776,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"btk" = (
+"brh" = (
/obj/structure/closet/l3closet/virology,
/obj/machinery/light{
dir = 1
@@ -40928,7 +39788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"btl" = (
+"bri" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -40937,7 +39797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"btm" = (
+"brj" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -40960,14 +39820,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"btn" = (
+"brk" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/virologist,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bto" = (
+"brl" = (
/obj/machinery/computer/pandemic,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (EAST)";
@@ -40976,7 +39836,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"btp" = (
+"brm" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Medical Escape Pod"
@@ -40987,12 +39847,12 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"btq" = (
+"brn" = (
/turf/open/floor/plating,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"btr" = (
+"bro" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Medical Escape Pod"
@@ -41001,7 +39861,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bts" = (
+"brp" = (
/obj/machinery/door/airlock/shuttle{
name = "Escape Pod Airlock"
},
@@ -41013,7 +39873,7 @@
},
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"btt" = (
+"brq" = (
/obj/structure/chair{
dir = 4
},
@@ -41022,7 +39882,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"btu" = (
+"brr" = (
/obj/structure/chair{
dir = 4
},
@@ -41044,12 +39904,12 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"btv" = (
+"brs" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"btw" = (
+"brt" = (
/obj/docking_port/stationary/random{
dir = 4;
id = "pod_lavaland3";
@@ -41057,25 +39917,25 @@
},
/turf/open/space,
/area/space)
-"btx" = (
+"bru" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bty" = (
+"brv" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"btz" = (
+"brw" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"btA" = (
+"brx" = (
/obj/machinery/vending/tool,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -41084,7 +39944,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"btB" = (
+"bry" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/weapon/screwdriver,
@@ -41092,7 +39952,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"btC" = (
+"brz" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -41100,7 +39960,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"btD" = (
+"brA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -41110,13 +39970,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btE" = (
+"brB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btF" = (
+"brC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41149,7 +40009,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btG" = (
+"brD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41168,7 +40028,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btH" = (
+"brE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41176,14 +40036,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btI" = (
+"brF" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btJ" = (
+"brG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41193,14 +40053,6 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"btK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/obj/structure/sign/botany{
pixel_x = 32;
pixel_y = -32
@@ -41209,7 +40061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btL" = (
+"brH" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41221,7 +40073,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btM" = (
+"brI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41232,7 +40084,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btN" = (
+"brJ" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -41247,7 +40099,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btO" = (
+"brK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41257,7 +40109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btP" = (
+"brL" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41274,7 +40126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btQ" = (
+"brM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -41290,7 +40142,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btR" = (
+"brN" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41301,7 +40153,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btS" = (
+"brO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -41311,7 +40163,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btT" = (
+"brP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
dir = 1;
@@ -41323,7 +40175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btU" = (
+"brQ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -41331,26 +40183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"btV" = (
-/obj/structure/window/reinforced,
-/obj/machinery/camera{
- c_tag = "Service-Engineering Bridge 1";
- dir = 1
- },
-/turf/open/floor/engine,
-/area/space)
-"btW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"btX" = (
+"brR" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 4;
@@ -41364,7 +40197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btY" = (
+"brS" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -41382,7 +40215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"btZ" = (
+"brT" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -41396,7 +40229,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bua" = (
+"brU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -41412,7 +40245,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bub" = (
+"brV" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -41435,7 +40268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buc" = (
+"brW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/cable{
d1 = 4;
@@ -41449,7 +40282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bud" = (
+"brX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -41463,7 +40296,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bue" = (
+"brY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41482,7 +40315,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buf" = (
+"brZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -41493,7 +40326,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bug" = (
+"bsa" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -41508,7 +40341,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"buh" = (
+"bsb" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -41522,14 +40355,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bui" = (
+"bsc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"buj" = (
+"bsd" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -41539,7 +40372,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"buk" = (
+"bse" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -41548,7 +40381,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bul" = (
+"bsf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -41560,7 +40393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bum" = (
+"bsg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41581,7 +40414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bun" = (
+"bsh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -41598,7 +40431,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buo" = (
+"bsi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -41615,7 +40448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bup" = (
+"bsj" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
@@ -41638,7 +40471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buq" = (
+"bsk" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -41661,7 +40494,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bur" = (
+"bsl" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -41673,7 +40506,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bus" = (
+"bsm" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -41689,7 +40522,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"but" = (
+"bsn" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 4;
@@ -41701,18 +40534,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"buu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"buv" = (
+"bso" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -41720,14 +40542,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"buw" = (
+"bsp" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bux" = (
+"bsq" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -41738,7 +40560,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"buy" = (
+"bsr" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -41752,7 +40574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"buz" = (
+"bss" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/engineering{
dir = 8;
@@ -41776,7 +40598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"buA" = (
+"bst" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -41792,7 +40614,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"buB" = (
+"bsu" = (
/obj/machinery/power/apc{
dir = 8;
name = "Medbay Security Checkpoint APC";
@@ -41806,7 +40628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"buC" = (
+"bsv" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -41815,12 +40637,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"buD" = (
+"bsw" = (
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"buE" = (
+"bsx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -41829,7 +40651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"buF" = (
+"bsy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -41841,7 +40663,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"buG" = (
+"bsz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -41850,12 +40672,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"buH" = (
+"bsA" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buI" = (
+"bsB" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -41866,26 +40688,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buJ" = (
+"bsC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buK" = (
+"bsD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buL" = (
+"bsE" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buM" = (
+"bsF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -41898,7 +40720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buN" = (
+"bsG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -41906,7 +40728,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buO" = (
+"bsH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -41914,7 +40736,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buP" = (
+"bsI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41925,7 +40747,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"buQ" = (
+"bsJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41933,7 +40755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buR" = (
+"bsK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41950,7 +40772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buS" = (
+"bsL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41961,7 +40783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buT" = (
+"bsM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41972,7 +40794,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buU" = (
+"bsN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -41980,7 +40802,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buV" = (
+"bsO" = (
/obj/structure/table/glass,
/obj/item/weapon/book/manual/wiki/infections{
pixel_y = 7
@@ -41999,13 +40821,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buW" = (
+"bsP" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buX" = (
+"bsQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -42015,7 +40837,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buY" = (
+"bsR" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/device/radio/headset/headset_med,
@@ -42033,27 +40855,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"buZ" = (
+"bsS" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bva" = (
-/obj/structure/sign/pods{
- pixel_x = 32
- },
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"bvb" = (
+"bsT" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bvc" = (
+"bsU" = (
/obj/machinery/gateway{
dir = 9
},
@@ -42061,7 +40875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvd" = (
+"bsV" = (
/obj/machinery/gateway{
dir = 1
},
@@ -42069,7 +40883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bve" = (
+"bsW" = (
/obj/machinery/gateway{
dir = 5
},
@@ -42077,19 +40891,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvf" = (
+"bsX" = (
/obj/item/weapon/crowbar,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bvg" = (
+"bsY" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bvh" = (
+"bsZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -42103,7 +40917,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bvi" = (
+"bta" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
@@ -42119,21 +40933,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bvj" = (
+"btb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bvk" = (
+"btc" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/utility,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bvl" = (
+"btd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -42145,12 +40959,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bvm" = (
+"bte" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bvn" = (
+"btf" = (
/turf/open/floor/plasteel/green/corner{
tag = "icon-greencorner (WEST)";
icon_state = "greencorner";
@@ -42158,47 +40972,54 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bvo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"btg" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bvp" = (
+"bth" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bvq" = (
/turf/open/floor/plasteel/green/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bvr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
+"bti" = (
+/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/window/eastleft{
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bvs" = (
+"btj" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"btk" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bvt" = (
+"btl" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -42210,21 +41031,10 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bvu" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/floor/plating/asteroid/airless,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
})
-"bvv" = (
+"btm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -42232,7 +41042,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"bvw" = (
+"btn" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -42246,7 +41056,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"bvx" = (
+"bto" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
@@ -42256,7 +41066,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvy" = (
+"btp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42268,7 +41078,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvz" = (
+"btq" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -42277,7 +41087,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvA" = (
+"btr" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -42285,7 +41095,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvB" = (
+"bts" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -42305,7 +41115,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvC" = (
+"btt" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -42323,7 +41133,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvD" = (
+"btu" = (
/obj/effect/turf_decal/stripes/end{
tag = "icon-warn_end (EAST)";
icon_state = "warn_end";
@@ -42342,7 +41152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvE" = (
+"btv" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -42355,7 +41165,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvF" = (
+"btw" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -42367,7 +41177,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvG" = (
+"btx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -42378,13 +41188,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvH" = (
+"bty" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvI" = (
+"btz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -42394,7 +41204,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvJ" = (
+"btA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -42405,7 +41215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvK" = (
+"btB" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -42418,7 +41228,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvL" = (
+"btC" = (
/obj/effect/turf_decal/stripes/end{
tag = "icon-warn_end (WEST)";
icon_state = "warn_end";
@@ -42437,7 +41247,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvM" = (
+"btD" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -42454,7 +41264,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvN" = (
+"btE" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -42468,7 +41278,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bvO" = (
+"btF" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
@@ -42476,7 +41286,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvP" = (
+"btG" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -42491,7 +41301,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bvQ" = (
+"btH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -42503,7 +41313,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvR" = (
+"btI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42519,7 +41329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvS" = (
+"btJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -42530,7 +41340,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bvT" = (
+"btK" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -42548,7 +41358,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bvU" = (
+"btL" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -42559,7 +41369,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bvV" = (
+"btM" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -42577,7 +41387,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"bvW" = (
+"btN" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -42594,7 +41404,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"bvX" = (
+"btO" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -42612,7 +41422,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"bvY" = (
+"btP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -42627,7 +41437,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bvZ" = (
+"btQ" = (
/obj/machinery/computer/secure_data,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -42641,38 +41451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"bwa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"bwb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable/orange,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"bwc" = (
+"btR" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -42681,7 +41460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwd" = (
+"btS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -42689,7 +41468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwe" = (
+"btT" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -42698,7 +41477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwf" = (
+"btU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -42707,7 +41486,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwg" = (
+"btV" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -42716,12 +41495,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwh" = (
+"btW" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwi" = (
+"btX" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -42732,7 +41511,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwj" = (
+"btY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -42740,7 +41519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwk" = (
+"btZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -42750,13 +41529,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwl" = (
+"bua" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwm" = (
+"bub" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -42765,7 +41544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwn" = (
+"buc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -42776,7 +41555,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwo" = (
+"bud" = (
/obj/machinery/doorButtons/access_button{
idDoor = "virology_airlock_exterior";
idSelf = "virology_airlock_control";
@@ -42795,7 +41574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bwp" = (
+"bue" = (
/obj/machinery/door/airlock/virology{
autoclose = 0;
frequency = 1449;
@@ -42812,7 +41591,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwq" = (
+"buf" = (
/obj/machinery/doorButtons/access_button{
idDoor = "virology_airlock_exterior";
idSelf = "virology_airlock_control";
@@ -42831,7 +41610,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwr" = (
+"bug" = (
/obj/machinery/doorButtons/access_button{
idDoor = "virology_airlock_interior";
idSelf = "virology_airlock_control";
@@ -42850,7 +41629,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bws" = (
+"buh" = (
/obj/machinery/door/airlock/virology{
autoclose = 0;
frequency = 1449;
@@ -42867,7 +41646,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwt" = (
+"bui" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "virology_airlock_exterior";
idInterior = "virology_airlock_interior";
@@ -42887,7 +41666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwu" = (
+"buj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -42895,7 +41674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bwv" = (
+"buk" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -2;
@@ -42912,18 +41691,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bww" = (
+"bul" = (
/turf/closed/wall,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bwx" = (
+"bum" = (
/obj/item/weapon/computer_hardware/recharger/APC,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bwy" = (
+"bun" = (
/obj/machinery/gateway{
dir = 8
},
@@ -42931,13 +41710,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bwz" = (
+"buo" = (
/obj/machinery/gateway/centerstation,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bwA" = (
+"bup" = (
/obj/machinery/gateway{
dir = 4
},
@@ -42945,7 +41724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bwB" = (
+"buq" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -42954,13 +41733,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bwC" = (
+"bur" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bwD" = (
+"bus" = (
/obj/item/weapon/paper{
info = "
Nanotrasen Exploration and Colonization Program
Due to recent shutdowns of the Exploration and Colonization department shortly after this gateway was delievered on-site during station construction, this room has been condemmed and an engineering team will be on-site within the next few months to recollect the gate. Thank you for your cooperation.";
name = "NOTICE - GATEWAY STATUS"
@@ -42975,7 +41754,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bwE" = (
+"but" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -42989,7 +41768,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bwF" = (
+"buu" = (
/obj/structure/table,
/obj/machinery/power/apc{
dir = 8;
@@ -43006,7 +41785,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bwG" = (
+"buv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -43017,7 +41796,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bwH" = (
+"buw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -43026,14 +41805,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bwI" = (
+"bux" = (
/obj/structure/table,
/obj/item/device/multitool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bwJ" = (
+"buy" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -43049,80 +41828,62 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bwK" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastleft{
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/turf/open/floor/plating{
+"buz" = (
+/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwL" = (
+"buA" = (
+/obj/machinery/camera{
+ c_tag = "Hydroponics North 1"
+ },
/obj/structure/extinguisher_cabinet{
pixel_y = 32
},
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 4
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwM" = (
+"buB" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwN" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkgreen{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bwO" = (
-/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{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bwP" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bwQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
+"buC" = (
+/obj/structure/beebox,
+/obj/item/queen_bee/bought,
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/open/floor/plasteel/hydrofloor{
+/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwR" = (
+"buD" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"buE" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"buF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -43135,15 +41896,15 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bwS" = (
+"buG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/light/small{
dir = 1
},
@@ -43155,24 +41916,25 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bwT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"buH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bwU" = (
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"buI" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -43187,8 +41949,10 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bwV" = (
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"buJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -43205,8 +41969,10 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bwW" = (
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"buK" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -43216,23 +41982,17 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bwX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plating/asteroid/airless,
-/area/mine/unexplored{
- name = "Civilian Asteroid"
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
})
-"bwY" = (
+"buL" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/space,
/area/space)
-"bwZ" = (
+"buM" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -43243,7 +42003,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxa" = (
+"buN" = (
/obj/machinery/light/small{
dir = 1
},
@@ -43254,7 +42014,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxb" = (
+"buO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -43262,7 +42022,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxc" = (
+"buP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -43273,7 +42033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxd" = (
+"buQ" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -43284,7 +42044,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxe" = (
+"buR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -43301,7 +42061,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxf" = (
+"buS" = (
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (WEST)";
icon_state = "yellowcorner";
@@ -43309,7 +42069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxg" = (
+"buT" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small{
dir = 8
@@ -43318,13 +42078,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bxh" = (
+"buU" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bxi" = (
+"buV" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -43342,7 +42102,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bxj" = (
+"buW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -43362,7 +42122,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bxk" = (
+"buX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -43373,14 +42133,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bxl" = (
+"buY" = (
/obj/machinery/power/supermatter_shard/crystal,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"bxm" = (
+"buZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -43392,7 +42152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bxn" = (
+"bva" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -43406,7 +42166,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bxo" = (
+"bvb" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -43426,7 +42186,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bxp" = (
+"bvc" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -43435,7 +42195,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bxq" = (
+"bvd" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
@@ -43446,14 +42206,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bxr" = (
+"bve" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/yellow/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxs" = (
+"bvf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -43471,7 +42231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxt" = (
+"bvg" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -43484,7 +42244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bxu" = (
+"bvh" = (
/obj/machinery/light/small{
dir = 1
},
@@ -43494,7 +42254,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxv" = (
+"bvi" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -43516,7 +42276,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxw" = (
+"bvj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43538,7 +42298,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxx" = (
+"bvk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43561,7 +42321,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxy" = (
+"bvl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43574,7 +42334,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxz" = (
+"bvm" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -43590,7 +42350,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxA" = (
+"bvn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43607,7 +42367,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bxB" = (
+"bvo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -43618,7 +42378,7 @@
},
/turf/open/space,
/area/space)
-"bxC" = (
+"bvp" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -43629,7 +42389,7 @@
},
/turf/open/space,
/area/space)
-"bxD" = (
+"bvq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43639,7 +42399,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bxE" = (
+"bvr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43655,7 +42415,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxF" = (
+"bvs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -43669,7 +42429,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxG" = (
+"bvt" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -43683,7 +42443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxH" = (
+"bvu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Input";
@@ -43699,7 +42459,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxI" = (
+"bvv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -43713,7 +42473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxJ" = (
+"bvw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -43724,7 +42484,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxK" = (
+"bvx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -43735,7 +42495,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bxL" = (
+"bvy" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -43743,7 +42503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxM" = (
+"bvz" = (
/obj/structure/chair{
dir = 4
},
@@ -43751,13 +42511,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxN" = (
+"bvA" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxO" = (
+"bvB" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = -3;
@@ -43767,14 +42527,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxP" = (
+"bvC" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxQ" = (
+"bvD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -43783,48 +42543,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxR" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (EAST)";
- icon_state = "whiteblue";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"bxS" = (
+"bvE" = (
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxT" = (
+"bvF" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxU" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 30;
- pixel_y = 0;
- pixel_z = 0
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"bxV" = (
+"bvG" = (
/obj/machinery/sleeper{
dir = 4;
icon_state = "sleeper-open"
@@ -43833,13 +42564,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxW" = (
+"bvH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxX" = (
+"bvI" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
@@ -43848,7 +42579,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxY" = (
+"bvJ" = (
/obj/machinery/atmospherics/components/unary/cryo_cell{
dir = 8;
icon_state = "cell-off"
@@ -43857,7 +42588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bxZ" = (
+"bvK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side{
@@ -43867,17 +42598,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bya" = (
+"bvL" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"byb" = (
+"bvM" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"byc" = (
+"bvN" = (
/obj/machinery/door/airlock/glass_virology{
name = "Monkey Pen";
req_access_txt = "39"
@@ -43887,7 +42618,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"byd" = (
+"bvO" = (
/obj/machinery/power/apc{
dir = 8;
name = "Virology APC";
@@ -43907,7 +42638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bye" = (
+"bvP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -43920,7 +42651,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"byf" = (
+"bvQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -43937,7 +42668,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"byg" = (
+"bvR" = (
/obj/machinery/gateway{
dir = 10
},
@@ -43945,7 +42676,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byh" = (
+"bvS" = (
/obj/machinery/gateway,
/obj/structure/cable/orange{
d2 = 2;
@@ -43955,7 +42686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byi" = (
+"bvT" = (
/obj/machinery/gateway{
dir = 6
},
@@ -43963,7 +42694,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byj" = (
+"bvU" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -43977,7 +42708,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"byk" = (
+"bvV" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/structure/window/reinforced,
@@ -43985,7 +42716,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"byl" = (
+"bvW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -43993,7 +42724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bym" = (
+"bvX" = (
/obj/structure/table,
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/igniter,
@@ -44001,7 +42732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"byn" = (
+"bvY" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -44017,10 +42748,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"byo" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- tag = "icon-plant-18";
- icon_state = "plant-18"
+"bvZ" = (
+/obj/machinery/camera{
+ c_tag = "Hydroponics Front Desk";
+ dir = 4
},
/turf/open/floor/plasteel/green/corner{
tag = "icon-greencorner (WEST)";
@@ -44029,93 +42760,57 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastright{
- name = "Hydroponics Desk";
- req_access_txt = "35"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"byq" = (
+"bwa" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel/black{
+/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byr" = (
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bys" = (
-/obj/effect/landmark/lightsout,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"byt" = (
+"bwb" = (
/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (NORTHEAST)";
+ tag = "icon-darkgreen (WEST)";
icon_state = "darkgreen";
- dir = 5;
+ dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byu" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/hydrofloor{
+"bwc" = (
+/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byv" = (
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
+"bwd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless;
+ dir = 4
},
/area/hydroponics)
-"byw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"byx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/emcloset,
+"bwe" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byy" = (
-/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{
+"bwf" = (
+/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"byz" = (
+"bwg" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bwh" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -44136,7 +42831,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"byA" = (
+"bwi" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -44149,12 +42844,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"byB" = (
+"bwj" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byC" = (
+"bwk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -44167,7 +42862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byD" = (
+"bwl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44189,7 +42884,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byE" = (
+"bwm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -44201,7 +42896,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byF" = (
+"bwn" = (
/obj/structure/table,
/obj/item/weapon/pipe_dispenser,
/obj/machinery/camera{
@@ -44214,7 +42909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"byG" = (
+"bwo" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -44230,7 +42925,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"byH" = (
+"bwp" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -44244,7 +42939,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"byI" = (
+"bwq" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -44266,7 +42961,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"byJ" = (
+"bwr" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -44280,13 +42975,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"byK" = (
+"bws" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"byL" = (
+"bwt" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
@@ -44294,7 +42989,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"byM" = (
+"bwu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -44308,7 +43003,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byN" = (
+"bwv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44331,7 +43026,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"byO" = (
+"bww" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -44339,19 +43034,19 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"byP" = (
+"bwx" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"byQ" = (
+"bwy" = (
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"byR" = (
+"bwz" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -44366,14 +43061,14 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"byS" = (
+"bwA" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"byT" = (
+"bwB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -44386,7 +43081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byU" = (
+"bwC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -44394,7 +43089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byV" = (
+"bwD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -44402,7 +43097,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byW" = (
+"bwE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix Output";
@@ -44415,7 +43110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byX" = (
+"bwF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -44430,7 +43125,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byY" = (
+"bwG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -44444,7 +43139,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"byZ" = (
+"bwH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -44456,13 +43151,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bza" = (
+"bwI" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzb" = (
+"bwJ" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (EAST)";
icon_state = "whiteblue";
@@ -44470,7 +43165,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzc" = (
+"bwK" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -44479,7 +43174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzd" = (
+"bwL" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Medbay";
@@ -44489,7 +43184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bze" = (
+"bwM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/camera{
c_tag = "Medbay East";
@@ -44505,7 +43200,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzf" = (
+"bwN" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
@@ -44517,7 +43212,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzg" = (
+"bwO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -44527,7 +43222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzh" = (
+"bwP" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
@@ -44536,7 +43231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzi" = (
+"bwQ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -44551,7 +43246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzj" = (
+"bwR" = (
/obj/machinery/power/apc{
dir = 8;
name = "Medbay APC";
@@ -44572,7 +43267,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzk" = (
+"bwS" = (
/obj/structure/bed/roller,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
@@ -44582,7 +43277,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bzl" = (
+"bwT" = (
/obj/machinery/shower{
dir = 4
},
@@ -44593,7 +43288,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bzm" = (
+"bwU" = (
/obj/structure/mirror{
pixel_y = 32
},
@@ -44604,7 +43299,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bzn" = (
+"bwV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -44619,7 +43314,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bzo" = (
+"bwW" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -44634,7 +43329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bzp" = (
+"bwX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -44644,7 +43339,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bzq" = (
+"bwY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -44653,13 +43348,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bzr" = (
+"bwZ" = (
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bzs" = (
+"bxa" = (
/obj/item/wallframe/apc,
/obj/structure/cable/orange{
d2 = 4;
@@ -44669,7 +43364,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bzt" = (
+"bxb" = (
/obj/item/stack/rods,
/obj/structure/cable/orange{
d1 = 4;
@@ -44680,7 +43375,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bzu" = (
+"bxc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -44695,7 +43390,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bzv" = (
+"bxd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -44705,7 +43400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bzw" = (
+"bxe" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -44716,7 +43411,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bzx" = (
+"bxf" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -44724,7 +43419,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bzy" = (
+"bxg" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/vault{
@@ -44732,20 +43427,20 @@
dir = 5
},
/area/storage/primary)
-"bzz" = (
+"bxh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bzA" = (
+"bxi" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bzB" = (
+"bxj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 3";
@@ -44758,91 +43453,101 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bzC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bxk" = (
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
req_access_txt = "35"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzD" = (
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
+"bxl" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bxm" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bxn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bxo" = (
+/obj/structure/table,
+/obj/item/seeds/chili,
+/obj/item/seeds/grape,
+/obj/item/seeds/grape,
+/obj/item/weapon/reagent_containers/food/snacks/grown/chili,
+/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bxp" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzE" = (
-/obj/machinery/light{
- dir = 8
+"bxq" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel/black{
+/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzF" = (
-/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (SOUTHEAST)";
- icon_state = "darkgreen";
- dir = 6;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bzG" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bzH" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bzI" = (
+"bxr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
on = 1
},
-/turf/open/floor/plasteel/hydrofloor{
+/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzJ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/poster/contraband/have_a_puff{
- pixel_x = 32
- },
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bzK" = (
+"bxs" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -44851,16 +43556,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bzL" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bzM" = (
+"bxt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -44879,7 +43575,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bzN" = (
+"bxu" = (
/obj/machinery/power/apc{
dir = 8;
name = "Engineering Foyer APC";
@@ -44901,7 +43597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzO" = (
+"bxv" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -44923,7 +43619,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzP" = (
+"bxw" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -44937,7 +43633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzQ" = (
+"bxx" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-22";
icon_state = "plant-22"
@@ -44949,7 +43645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bzR" = (
+"bxy" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -44970,14 +43666,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bzS" = (
+"bxz" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bzT" = (
+"bxA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/glass_engineering{
heat_proof = 1;
@@ -44989,7 +43685,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bzU" = (
+"bxB" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 6
@@ -44997,13 +43693,13 @@
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bzV" = (
+"bxC" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bzW" = (
+"bxD" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -45024,7 +43720,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bzX" = (
+"bxE" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -45037,13 +43733,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bzY" = (
+"bxF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bzZ" = (
+"bxG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-22";
@@ -45057,7 +43753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAa" = (
+"bxH" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -45072,7 +43768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAb" = (
+"bxI" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -45090,7 +43786,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAc" = (
+"bxJ" = (
/obj/machinery/power/apc{
dir = 4;
name = "Engineering Foyer APC";
@@ -45110,12 +43806,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAd" = (
+"bxK" = (
/turf/closed/mineral,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bAe" = (
+"bxL" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -45124,13 +43820,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bAf" = (
+"bxM" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bAg" = (
+"bxN" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -45141,7 +43837,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bAh" = (
+"bxO" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -45150,7 +43846,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bAi" = (
+"bxP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -45161,7 +43857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bAj" = (
+"bxQ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -45171,7 +43867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bAk" = (
+"bxR" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -45179,7 +43875,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bAl" = (
+"bxS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -45188,14 +43884,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bAm" = (
+"bxT" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/food/drinks/britcup,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bAn" = (
+"bxU" = (
/obj/machinery/button/door{
id = "medmain";
name = "Medbay Foyer Doors";
@@ -45215,7 +43911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bAo" = (
+"bxV" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/wrench/medical,
@@ -45223,13 +43919,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bAp" = (
+"bxW" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bAq" = (
+"bxX" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
@@ -45237,7 +43933,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bAr" = (
+"bxY" = (
/obj/structure/bed/roller,
/obj/machinery/light{
icon_state = "tube1";
@@ -45251,7 +43947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bAs" = (
+"bxZ" = (
/obj/machinery/shower{
dir = 4
},
@@ -45262,17 +43958,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bAt" = (
+"bya" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bAu" = (
+"byb" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bAv" = (
+"byc" = (
/obj/machinery/dna_scannernew,
/obj/structure/cable/orange{
d1 = 1;
@@ -45289,33 +43985,33 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bAw" = (
+"byd" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bAx" = (
+"bye" = (
/obj/machinery/light,
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"bAy" = (
+"byf" = (
/obj/item/weapon/screwdriver,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bAz" = (
+"byg" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bAA" = (
+"byh" = (
/obj/structure/table,
/obj/item/weapon/paper/pamphlet,
/obj/item/weapon/coin/silver,
@@ -45323,7 +44019,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/awaymission/research/interior/gateway)
-"bAB" = (
+"byi" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/camera{
@@ -45336,13 +44032,13 @@
dir = 5
},
/area/storage/primary)
-"bAC" = (
+"byj" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bAD" = (
+"byk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/newscaster{
pixel_x = -28;
@@ -45354,79 +44050,79 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bAE" = (
+"byl" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Hydroponics West";
- dir = 4;
- icon_state = "camera"
- },
-/turf/open/floor/plasteel/green/side{
- tag = "icon-green (WEST)";
- icon_state = "green";
- dir = 8;
+/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bym" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/plasteel{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAG" = (
-/obj/machinery/vending/hydronutrients,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/green/side{
- tag = "icon-green (NORTH)";
- icon_state = "green";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bAH" = (
-/obj/machinery/vending/hydroseeds,
+"byn" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
pixel_y = 20
},
-/turf/open/floor/plasteel/green/side{
- tag = "icon-green (NORTH)";
- icon_state = "green";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hydroponics)
-"bAI" = (
/turf/open/floor/plasteel/darkgreen/side{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 4
},
/area/hydroponics)
-"bAJ" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+"byo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAK" = (
+"byp" = (
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless;
+ dir = 4
+ },
+/area/hydroponics)
+"byq" = (
+/obj/machinery/camera{
+ c_tag = "Hydroponics North 2"
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"byr" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -45443,7 +44139,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bAL" = (
+"bys" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Hydroponics"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"byt" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -45453,43 +44163,29 @@
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
-/area/hydroponics)
-"bAM" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j1s";
- name = "disposal pipe - Hydroponics";
- sortType = 21
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bAN" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bAO" = (
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"byu" = (
/obj/structure/rack,
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bAP" = (
+"byv" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"bAQ" = (
+"byw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAR" = (
+"byx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -45500,13 +44196,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAS" = (
+"byy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAT" = (
+"byz" = (
/obj/machinery/light{
dir = 4
},
@@ -45514,7 +44210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bAU" = (
+"byA" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -45529,7 +44225,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bAV" = (
+"byB" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
@@ -45537,7 +44233,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bAW" = (
+"byC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -45549,14 +44245,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bAX" = (
+"byD" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"bAY" = (
+"byE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Gas To Chamber";
@@ -45567,7 +44263,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bAZ" = (
+"byF" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
@@ -45576,7 +44272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bBa" = (
+"byG" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -45591,11 +44287,11 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bBb" = (
+"byH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bBc" = (
+"byI" = (
/obj/machinery/light{
dir = 8
},
@@ -45608,14 +44304,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBd" = (
+"byJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBe" = (
+"byK" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -45623,12 +44319,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBf" = (
+"byL" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bBg" = (
+"byM" = (
/obj/machinery/light/small{
dir = 4
},
@@ -45636,7 +44332,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bBh" = (
+"byN" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -45651,7 +44347,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bBi" = (
+"byO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -45659,7 +44355,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bBj" = (
+"byP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -45674,7 +44370,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bBk" = (
+"byQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -45686,7 +44382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBl" = (
+"byR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -45696,14 +44392,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBm" = (
+"byS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBn" = (
+"byT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -45714,7 +44410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBo" = (
+"byU" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -45726,14 +44422,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBp" = (
+"byV" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBq" = (
+"byW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -45746,7 +44442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBr" = (
+"byX" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
@@ -45760,13 +44456,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBs" = (
+"byY" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBt" = (
+"byZ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -45780,7 +44476,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBu" = (
+"bza" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -45797,7 +44493,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bBv" = (
+"bzb" = (
/obj/machinery/shower{
dir = 4
},
@@ -45807,7 +44503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bBw" = (
+"bzc" = (
/obj/structure/chair{
dir = 4
},
@@ -45816,7 +44512,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bBx" = (
+"bzd" = (
/obj/machinery/computer/cloning,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -45839,7 +44535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bBy" = (
+"bze" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/light{
@@ -45850,7 +44546,7 @@
dir = 5
},
/area/storage/primary)
-"bBz" = (
+"bzf" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/vault{
@@ -45858,7 +44554,7 @@
dir = 5
},
/area/storage/primary)
-"bBA" = (
+"bzg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -45866,7 +44562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bBB" = (
+"bzh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -45874,7 +44570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bBC" = (
+"bzi" = (
/obj/machinery/door/airlock/glass{
name = "Primary Tool Storage"
},
@@ -45886,7 +44582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bBD" = (
+"bzj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -45894,67 +44590,60 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bBE" = (
-/turf/open/floor/plasteel/green/side{
- tag = "icon-green (WEST)";
- icon_state = "green";
- dir = 8;
+"bzk" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bBG" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bBH" = (
+"bzl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
+ dir = 4;
on = 1
},
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBI" = (
-/obj/machinery/light{
+"bzm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Hydroponics East";
- dir = 9;
- icon_state = "camera"
- },
/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (NORTHEAST)";
- icon_state = "darkgreen";
- dir = 5;
+ baseturf = /turf/open/floor/plating/asteroid/airless;
+ dir = 4
+ },
+/area/hydroponics)
+"bzn" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/camera{
- c_tag = "Hydroponics Backroom";
- dir = 9;
- icon_state = "camera"
+"bzo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
},
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/hydrofloor{
+/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBK" = (
+"bzp" = (
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bzq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -45963,7 +44652,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBL" = (
+"bzr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -45971,21 +44660,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bBM" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bBN" = (
+"bzs" = (
/turf/closed/mineral/random/labormineral,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bBO" = (
+"bzt" = (
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
req_access_txt = "12"
@@ -45996,7 +44676,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bBP" = (
+"bzu" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -46006,7 +44686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBQ" = (
+"bzv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -46017,7 +44697,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBR" = (
+"bzw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46033,7 +44713,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBS" = (
+"bzx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -46044,7 +44724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBT" = (
+"bzy" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
@@ -46064,7 +44744,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bBU" = (
+"bzz" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -46074,7 +44754,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bBV" = (
+"bzA" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -46083,7 +44763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bBW" = (
+"bzB" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -46092,11 +44772,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bBX" = (
+"bzC" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bBY" = (
+"bzD" = (
/obj/machinery/door/airlock/glass_engineering{
heat_proof = 1;
name = "Supermatter Chamber";
@@ -46107,14 +44787,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bBZ" = (
+"bzE" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bCa" = (
+"bzF" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -46132,7 +44812,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCb" = (
+"bzG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46144,12 +44824,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCc" = (
+"bzH" = (
/turf/open/floor/plasteel/red/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bCd" = (
+"bzI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -46169,7 +44849,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating/airless,
/area/security/checkpoint/engineering)
-"bCe" = (
+"bzJ" = (
/obj/structure/closet/secure_closet/security/engine,
/obj/machinery/newscaster/security_unit{
pixel_y = 32
@@ -46181,7 +44861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCf" = (
+"bzK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -46197,7 +44877,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCg" = (
+"bzL" = (
/obj/machinery/power/apc{
dir = 4;
name = "Engineering Security Checkpoint APC";
@@ -46218,7 +44898,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bCh" = (
+"bzM" = (
/obj/structure/janitorialcart,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -46226,7 +44906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bCi" = (
+"bzN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -46238,7 +44918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bCj" = (
+"bzO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -46246,7 +44926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bCk" = (
+"bzP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -46263,7 +44943,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bCl" = (
+"bzQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -46278,7 +44958,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCm" = (
+"bzR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -46289,7 +44969,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCn" = (
+"bzS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -46300,7 +44980,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCo" = (
+"bzT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -46312,7 +44992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCp" = (
+"bzU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -46323,7 +45003,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCq" = (
+"bzV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -46337,7 +45017,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCr" = (
+"bzW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -46351,7 +45031,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCs" = (
+"bzX" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = "medmain";
name = "Medbay";
@@ -46367,7 +45047,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCt" = (
+"bzY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -46380,7 +45060,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCu" = (
+"bzZ" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -46390,7 +45070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCv" = (
+"bAa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -46398,7 +45078,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCw" = (
+"bAb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -46408,14 +45088,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCx" = (
+"bAc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCy" = (
+"bAd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (EAST)";
@@ -46424,7 +45104,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bCz" = (
+"bAe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -46432,7 +45112,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bCA" = (
+"bAf" = (
/obj/machinery/disposal/bin,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/trunk,
@@ -46440,7 +45120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bCB" = (
+"bAg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -46449,7 +45129,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bCC" = (
+"bAh" = (
/obj/machinery/clonepod,
/obj/machinery/light{
icon_state = "tube1";
@@ -46467,7 +45147,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bCD" = (
+"bAi" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/light/small{
brightness = 3;
@@ -46479,7 +45159,7 @@
dir = 5
},
/area/medical/morgue)
-"bCE" = (
+"bAj" = (
/obj/machinery/light/small{
dir = 8
},
@@ -46493,7 +45173,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCF" = (
+"bAk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -46503,7 +45183,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCG" = (
+"bAl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -46514,7 +45194,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCH" = (
+"bAm" = (
/obj/machinery/light/small{
dir = 1
},
@@ -46527,7 +45207,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCI" = (
+"bAn" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -46537,7 +45217,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bCJ" = (
+"bAo" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -46549,112 +45229,65 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"bCK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bAp" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (SOUTHEAST)";
+ tag = "icon-darkgreen (WEST)";
icon_state = "darkgreen";
- dir = 6;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCS" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bCT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- layer = 2.4;
- on = 1
- },
-/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bCU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/plantgenes,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bAq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/hydrofloor{
+/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bCV" = (
+"bAr" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bAs" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bAt" = (
+/obj/machinery/door/airlock/glass{
+ name = "Bee Reserve";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bAu" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bAv" = (
/obj/machinery/power/apc{
dir = 8;
name = "Port Asteroid Maintenance APC";
@@ -46676,7 +45309,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCW" = (
+"bAw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -46688,7 +45321,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCX" = (
+"bAx" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -46706,7 +45339,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCY" = (
+"bAy" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -46718,7 +45351,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bCZ" = (
+"bAz" = (
/obj/machinery/light/small{
dir = 8
},
@@ -46729,19 +45362,19 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bDa" = (
+"bAA" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bDb" = (
+"bAB" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bDc" = (
+"bAC" = (
/obj/machinery/light/small{
dir = 1
},
@@ -46749,7 +45382,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bDd" = (
+"bAD" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -46760,7 +45393,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bDe" = (
+"bAE" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -46776,7 +45409,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bDf" = (
+"bAF" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -46786,7 +45419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDg" = (
+"bAG" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -46796,7 +45429,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDh" = (
+"bAH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -46813,7 +45446,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDi" = (
+"bAI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46830,7 +45463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDj" = (
+"bAJ" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/yellow/side{
@@ -46840,13 +45473,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDk" = (
+"bAK" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bDl" = (
+"bAL" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -46865,7 +45498,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDm" = (
+"bAM" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -46889,7 +45522,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDn" = (
+"bAN" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -46907,7 +45540,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDo" = (
+"bAO" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -46927,7 +45560,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDp" = (
+"bAP" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -46948,7 +45581,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDq" = (
+"bAQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -46969,7 +45602,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDr" = (
+"bAR" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -46988,7 +45621,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDs" = (
+"bAS" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -46998,7 +45631,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDt" = (
+"bAT" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -47014,7 +45647,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDu" = (
+"bAU" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -47029,7 +45662,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDv" = (
+"bAV" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -47044,7 +45677,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bDw" = (
+"bAW" = (
/obj/structure/table,
/obj/machinery/microwave,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -47058,7 +45691,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDx" = (
+"bAX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -47068,7 +45701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDy" = (
+"bAY" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -47090,7 +45723,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDz" = (
+"bAZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -47103,7 +45736,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bDA" = (
+"bBa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -47129,7 +45762,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating/airless,
/area/security/checkpoint/engineering)
-"bDB" = (
+"bBb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -47142,7 +45775,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDC" = (
+"bBc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -47154,7 +45787,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDD" = (
+"bBd" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -47166,7 +45799,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bDE" = (
+"bBe" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -47177,7 +45810,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bDF" = (
+"bBf" = (
/obj/machinery/door/airlock/maintenance{
name = "Broom Closet";
req_access_txt = "0"
@@ -47186,7 +45819,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bDG" = (
+"bBg" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -47200,7 +45833,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bDH" = (
+"bBh" = (
/obj/structure/chair{
dir = 4
},
@@ -47212,7 +45845,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDI" = (
+"bBi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -47221,7 +45854,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDJ" = (
+"bBj" = (
/obj/machinery/camera{
c_tag = "Medbay Lobby";
dir = 1;
@@ -47232,7 +45865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDK" = (
+"bBk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -47240,7 +45873,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDL" = (
+"bBl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -47253,7 +45886,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDM" = (
+"bBm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -47265,7 +45898,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDN" = (
+"bBn" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = "medmain";
name = "Medbay";
@@ -47278,7 +45911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDO" = (
+"bBo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -47286,26 +45919,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDP" = (
+"bBp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDQ" = (
+"bBq" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDR" = (
+"bBr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDS" = (
+"bBs" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -47314,7 +45947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDT" = (
+"bBt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -47329,7 +45962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDU" = (
+"bBu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -47342,7 +45975,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDV" = (
+"bBv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -47361,7 +45994,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bDW" = (
+"bBw" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = "cloningmain";
name = "Genetics";
@@ -47383,7 +46016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bDX" = (
+"bBx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -47401,7 +46034,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bDY" = (
+"bBy" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -47422,7 +46055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bDZ" = (
+"bBz" = (
/obj/structure/table,
/obj/item/weapon/book/manual/medical_cloning{
pixel_y = 6
@@ -47443,7 +46076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bEa" = (
+"bBA" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -47455,7 +46088,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bEb" = (
+"bBB" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -47467,7 +46100,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bEc" = (
+"bBC" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
@@ -47475,7 +46108,7 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating/airless,
/area/space)
-"bEd" = (
+"bBD" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -47491,7 +46124,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bEe" = (
+"bBE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -47507,52 +46140,31 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bEf" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bEg" = (
-/obj/machinery/camera{
- c_tag = "Hydroponics East";
- dir = 9;
- icon_state = "camera";
- tag = ""
- },
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/darkgreen{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bEh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/chem_master/condimaster,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bBF" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bEi" = (
+"bBG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bBH" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bEj" = (
+"bBI" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -47564,7 +46176,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bEk" = (
+"bBJ" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -47576,7 +46188,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bEl" = (
+"bBK" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -47588,13 +46200,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bEm" = (
+"bBL" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEn" = (
+"bBM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47609,7 +46221,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEo" = (
+"bBN" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/turf/open/floor/plasteel/yellow/side{
@@ -47619,7 +46231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEp" = (
+"bBO" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/obj/machinery/status_display{
density = 0;
@@ -47629,7 +46241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEq" = (
+"bBP" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -47639,7 +46251,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEr" = (
+"bBQ" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
icon_state = "1-4";
@@ -47651,7 +46263,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEs" = (
+"bBR" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
@@ -47666,7 +46278,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEt" = (
+"bBS" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -47678,7 +46290,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEu" = (
+"bBT" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -47696,7 +46308,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEv" = (
+"bBU" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -47713,7 +46325,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEw" = (
+"bBV" = (
/obj/effect/turf_decal/stripes/corner,
/obj/structure/cable/yellow{
d1 = 4;
@@ -47726,7 +46338,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEx" = (
+"bBW" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
d1 = 1;
@@ -47738,7 +46350,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEy" = (
+"bBX" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -47752,7 +46364,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bEz" = (
+"bBY" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -47761,7 +46373,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bEA" = (
+"bBZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47779,7 +46391,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEB" = (
+"bCa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -47788,7 +46400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEC" = (
+"bCb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47803,14 +46415,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bED" = (
+"bCc" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bEE" = (
+"bCd" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 1;
@@ -47822,7 +46434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEF" = (
+"bCe" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -47833,13 +46445,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEG" = (
+"bCf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEH" = (
+"bCg" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/camera{
@@ -47862,7 +46474,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bEI" = (
+"bCh" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -47871,7 +46483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bEJ" = (
+"bCi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -47889,22 +46501,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bEK" = (
+"bCj" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEL" = (
+"bCk" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
name = "Chemistry Desk";
req_access_txt = "33"
},
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEM" = (
+"bCl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -47912,13 +46525,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEN" = (
+"bCm" = (
/obj/machinery/smartfridge/chemistry/preloaded,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bEO" = (
+"bCn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/button/door{
id = "medmain";
@@ -47930,21 +46543,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bEP" = (
+"bCo" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bEQ" = (
+"bCp" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bER" = (
+"bCq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -47953,7 +46566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bES" = (
+"bCr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -47961,7 +46574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bET" = (
+"bCs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -47972,7 +46585,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bEU" = (
+"bCt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -47983,7 +46596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bEV" = (
+"bCu" = (
/obj/structure/closet/wardrobe/white,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
@@ -47992,7 +46605,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bEW" = (
+"bCv" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -48004,7 +46617,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bEX" = (
+"bCw" = (
/obj/machinery/button/door{
id = "cloningmain";
name = "Cloning Door";
@@ -48028,7 +46641,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bEY" = (
+"bCx" = (
/obj/structure/table,
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 3;
@@ -48050,17 +46663,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"bEZ" = (
+"bCy" = (
/turf/closed/wall/rust,
/area/space)
-"bFa" = (
+"bCz" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bFb" = (
+"bCA" = (
/obj/machinery/light/small{
dir = 1
},
@@ -48074,7 +46687,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bFc" = (
+"bCB" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -48085,128 +46698,41 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bFd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+"bCC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bFe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bCD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
dir = 4
},
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bFf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bFg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bFh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bFi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (NORTHEAST)";
+ tag = "icon-darkgreen (WEST)";
icon_state = "darkgreen";
- dir = 5;
+ dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bFj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"bCE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bFk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/hydrofloor{
+"bCF" = (
+/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bFl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bFm" = (
+"bCG" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -48218,13 +46744,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bFn" = (
+"bCH" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bFo" = (
+"bCI" = (
/obj/machinery/light/small{
dir = 8
},
@@ -48232,13 +46758,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bFp" = (
+"bCJ" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bFq" = (
+"bCK" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -48246,7 +46772,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bFr" = (
+"bCL" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/obj/structure/rack,
/turf/open/floor/plating/astplate{
@@ -48255,13 +46781,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bFs" = (
+"bCM" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFt" = (
+"bCN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48275,7 +46801,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFu" = (
+"bCO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -48283,7 +46809,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFv" = (
+"bCP" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
@@ -48292,7 +46818,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFw" = (
+"bCQ" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -48302,26 +46828,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bFx" = (
+"bCR" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bFy" = (
+"bCS" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bFz" = (
+"bCT" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bFA" = (
+"bCU" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -48331,7 +46857,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFB" = (
+"bCV" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/closet/radiation,
/turf/open/floor/engine{
@@ -48339,7 +46865,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFC" = (
+"bCW" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/light,
/turf/open/floor/engine{
@@ -48347,14 +46873,14 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFD" = (
+"bCX" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFE" = (
+"bCY" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
d1 = 1;
@@ -48373,7 +46899,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFF" = (
+"bCZ" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
d1 = 1;
@@ -48385,7 +46911,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFG" = (
+"bDa" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -48395,7 +46921,7 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"bFH" = (
+"bDb" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -48403,13 +46929,13 @@
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bFI" = (
+"bDc" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 9
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bFJ" = (
+"bDd" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -48420,7 +46946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFK" = (
+"bDe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48433,7 +46959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFL" = (
+"bDf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48443,7 +46969,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bFM" = (
+"bDg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48461,7 +46987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bFN" = (
+"bDh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -48471,7 +46997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bFO" = (
+"bDi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -48479,7 +47005,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bFP" = (
+"bDj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -48495,14 +47021,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bFQ" = (
+"bDk" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bFR" = (
+"bDl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -48519,7 +47045,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bFS" = (
+"bDm" = (
/obj/machinery/chem_master,
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (NORTHWEST)";
@@ -48528,7 +47054,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFT" = (
+"bDn" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -48540,7 +47066,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFU" = (
+"bDo" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -48555,7 +47081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFV" = (
+"bDp" = (
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (NORTH)";
icon_state = "whiteyellow";
@@ -48563,7 +47089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFW" = (
+"bDq" = (
/obj/machinery/chem_master,
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (NORTH)";
@@ -48572,7 +47098,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFX" = (
+"bDr" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -48585,7 +47111,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFY" = (
+"bDs" = (
/obj/structure/chair{
dir = 4
},
@@ -48596,7 +47122,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bFZ" = (
+"bDt" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
name = "Chemistry Desk";
@@ -48606,7 +47132,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bGa" = (
+"bDu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -48619,7 +47145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGb" = (
+"bDv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -48629,7 +47155,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGc" = (
+"bDw" = (
/obj/machinery/light{
dir = 1
},
@@ -48637,7 +47163,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGd" = (
+"bDx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48646,7 +47172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGe" = (
+"bDy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48659,7 +47185,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGf" = (
+"bDz" = (
/obj/machinery/light{
dir = 1
},
@@ -48670,7 +47196,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGg" = (
+"bDA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -48679,7 +47205,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bGh" = (
+"bDB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -48687,7 +47213,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGi" = (
+"bDC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -48696,7 +47222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGj" = (
+"bDD" = (
/obj/machinery/door/airlock/glass_research{
name = "Genetics Research";
req_access_txt = "0";
@@ -48713,12 +47239,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGk" = (
+"bDE" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bGl" = (
+"bDF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -48733,11 +47259,11 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bGm" = (
+"bDG" = (
/obj/item/weapon/storage/toolbox/mechanical/old,
/turf/open/floor/plating,
/area/space)
-"bGn" = (
+"bDH" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
@@ -48746,13 +47272,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bGo" = (
+"bDI" = (
/obj/machinery/light/small,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bGp" = (
+"bDJ" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 4
@@ -48763,7 +47289,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bGq" = (
+"bDK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -48772,7 +47298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bGr" = (
+"bDL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -48786,84 +47312,87 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bGs" = (
+"bDM" = (
/obj/structure/table,
-/obj/item/seeds/grape,
-/obj/item/seeds/grape,
-/turf/open/floor/plasteel/green/side{
- tag = "icon-green (NORTHWEST)";
- icon_state = "green";
- dir = 9;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGt" = (
-/obj/structure/table,
-/obj/machinery/light,
-/obj/item/seeds/apple,
-/obj/item/seeds/chili,
-/turf/open/floor/plasteel/green/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGu" = (
-/obj/structure/table,
-/obj/item/weapon/shovel/spade,
-/turf/open/floor/plasteel/green/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGv" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel/green/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGw" = (
-/obj/machinery/seed_extractor,
-/turf/open/floor/plasteel/green/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
+/obj/machinery/reagentgrinder,
+/obj/machinery/camera{
+ c_tag = "Hydroponics Storage";
dir = 1;
- on = 1
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGy" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGz" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/darkgreen/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGA" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plasteel/darkgreen/side{
- tag = "icon-darkgreen (SOUTHEAST)";
- icon_state = "darkgreen";
- dir = 6;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"bGB" = (
-/obj/machinery/light,
/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bGC" = (
+"bDN" = (
+/obj/machinery/chem_master/condimaster,
+/turf/open/floor/plasteel/hydrofloor{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDO" = (
+/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,
+/obj/item/weapon/shovel/spade,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/turf/open/floor/plasteel/hydrofloor{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDP" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDQ" = (
+/obj/machinery/seed_extractor,
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDR" = (
+/obj/structure/table,
+/obj/item/weapon/storage/bag/plants/portaseeder,
+/obj/item/weapon/storage/bag/plants/portaseeder,
+/obj/item/weapon/storage/bag/plants,
+/obj/item/weapon/storage/bag/plants,
+/obj/machinery/light,
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDS" = (
+/obj/structure/closet/wardrobe/botanist,
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDT" = (
+/obj/structure/beebox,
+/obj/item/queen_bee/bought,
+/obj/machinery/camera{
+ c_tag = "Hydroponics Bee Reserve South";
+ dir = 5;
+ icon_state = "camera";
+ network = list("SS13")
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"bDU" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
/obj/item/weapon/paper/hydroponics,
@@ -48873,39 +47402,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bGD" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Hydroponics APC";
- pixel_x = -23;
- pixel_y = 2
- },
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/stripes/asteroid/end{
- tag = "icon-ast_warn_end (EAST)";
- icon_state = "ast_warn_end";
- dir = 4
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bGE" = (
+"bDV" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bGF" = (
+"bDW" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -48914,7 +47416,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bGG" = (
+"bDX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -48926,7 +47428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bGH" = (
+"bDY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48935,7 +47437,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bGI" = (
+"bDZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -48943,7 +47445,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bGJ" = (
+"bEa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -48951,7 +47453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bGK" = (
+"bEb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 8
@@ -48960,7 +47462,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGL" = (
+"bEc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48972,12 +47474,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGM" = (
+"bEd" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGN" = (
+"bEe" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -48989,7 +47491,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGO" = (
+"bEf" = (
/obj/machinery/light{
dir = 1
},
@@ -48998,7 +47500,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bGP" = (
+"bEg" = (
/obj/machinery/power/apc{
dir = 1;
name = "Engineering APC";
@@ -49014,20 +47516,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bGQ" = (
+"bEh" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bGR" = (
+"bEi" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 5
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"bGS" = (
+"bEj" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Supermatter Engine Room";
req_access_txt = "10"
@@ -49039,7 +47541,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bGT" = (
+"bEk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/orange/visible{
@@ -49061,7 +47563,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bGU" = (
+"bEl" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Supermatter Engine Room";
req_access_txt = "10"
@@ -49078,13 +47580,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"bGV" = (
+"bEm" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bGW" = (
+"bEn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/map/left/ceres{
pixel_y = 32
@@ -49093,7 +47595,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bGX" = (
+"bEo" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -49107,7 +47609,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGY" = (
+"bEp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -49120,7 +47622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bGZ" = (
+"bEq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49131,7 +47633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHa" = (
+"bEr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -49151,7 +47653,7 @@
},
/turf/open/floor/plating/airless,
/area/security/checkpoint/engineering)
-"bHb" = (
+"bEs" = (
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -49166,7 +47668,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bHc" = (
+"bEt" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -49180,7 +47682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bHd" = (
+"bEu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -49194,13 +47696,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"bHe" = (
+"bEv" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bHf" = (
+"bEw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -49211,7 +47713,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bHg" = (
+"bEx" = (
/obj/machinery/chem_dispenser,
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (WEST)";
@@ -49220,24 +47722,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHh" = (
+"bEy" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHi" = (
+"bEz" = (
/obj/machinery/chem_heater,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHj" = (
+"bEA" = (
/obj/machinery/chem_dispenser,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHk" = (
+"bEB" = (
/turf/open/floor/plasteel/whiteyellow/side{
tag = "icon-whiteyellow (EAST)";
icon_state = "whiteyellow";
@@ -49245,7 +47747,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bHl" = (
+"bEC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -49258,7 +47760,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bHm" = (
+"bED" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
@@ -49268,7 +47770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bHn" = (
+"bEE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -49276,7 +47778,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bHo" = (
+"bEF" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -49288,7 +47790,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bHp" = (
+"bEG" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -32
},
@@ -49300,7 +47802,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bHq" = (
+"bEH" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -49309,7 +47811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bHr" = (
+"bEI" = (
/obj/machinery/disposal/bin,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/trunk{
@@ -49319,7 +47821,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHs" = (
+"bEJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -49331,7 +47833,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHt" = (
+"bEK" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -49344,7 +47846,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHu" = (
+"bEL" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -49352,12 +47854,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHv" = (
+"bEM" = (
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bHw" = (
+"bEN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -49374,11 +47876,11 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bHx" = (
+"bEO" = (
/obj/item/weapon/coin/gold,
/turf/open/floor/plating,
/area/space)
-"bHy" = (
+"bEP" = (
/obj/machinery/light/small{
dir = 8
},
@@ -49386,7 +47888,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bHz" = (
+"bEQ" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/electronics/airlock,
@@ -49396,12 +47898,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bHA" = (
+"bER" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHB" = (
+"bES" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -49412,7 +47914,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bHC" = (
+"bET" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -49421,7 +47923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bHD" = (
+"bEU" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -49435,7 +47937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bHE" = (
+"bEV" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -49445,7 +47947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bHF" = (
+"bEW" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
@@ -49462,7 +47964,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bHG" = (
+"bEX" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j1s";
@@ -49473,14 +47975,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"bHH" = (
+"bEY" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/atmos)
-"bHI" = (
+"bEZ" = (
/obj/machinery/portable_atmospherics/canister/freon,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -49488,7 +47990,7 @@
dir = 5
},
/area/atmos)
-"bHJ" = (
+"bFa" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -49496,7 +47998,7 @@
dir = 5
},
/area/atmos)
-"bHK" = (
+"bFb" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -49504,7 +48006,7 @@
dir = 5
},
/area/atmos)
-"bHL" = (
+"bFc" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -49513,13 +48015,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHM" = (
+"bFd" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHN" = (
+"bFe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -49528,7 +48030,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHO" = (
+"bFf" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/rods{
@@ -49539,7 +48041,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHP" = (
+"bFg" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/machinery/power/apc{
@@ -49557,7 +48059,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHQ" = (
+"bFh" = (
/obj/structure/table,
/obj/item/weapon/grenade/chem_grenade/metalfoam,
/obj/item/weapon/grenade/chem_grenade/metalfoam,
@@ -49565,7 +48067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHR" = (
+"bFi" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
@@ -49575,7 +48077,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHS" = (
+"bFj" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
@@ -49584,7 +48086,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHT" = (
+"bFk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -49594,7 +48096,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bHU" = (
+"bFl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -49603,7 +48105,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHV" = (
+"bFm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -49618,7 +48120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHW" = (
+"bFn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49626,7 +48128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHX" = (
+"bFo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49637,7 +48139,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bHY" = (
+"bFp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -49648,7 +48150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bHZ" = (
+"bFq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49656,7 +48158,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIa" = (
+"bFr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49670,13 +48172,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIb" = (
+"bFs" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIc" = (
+"bFt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49691,7 +48193,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bId" = (
+"bFu" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/item/stack/sheet/glass/fifty,
@@ -49702,7 +48204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIe" = (
+"bFv" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -49713,7 +48215,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIf" = (
+"bFw" = (
/obj/structure/table,
/obj/item/stack/rods{
amount = 50
@@ -49728,7 +48230,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIg" = (
+"bFx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49741,7 +48243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIh" = (
+"bFy" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -49761,7 +48263,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIi" = (
+"bFz" = (
/obj/structure/table,
/obj/item/stack/sheet/rglass{
amount = 50
@@ -49778,7 +48280,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIj" = (
+"bFA" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
@@ -49794,7 +48296,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIk" = (
+"bFB" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -49806,7 +48308,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIl" = (
+"bFC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -49818,7 +48320,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIm" = (
+"bFD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -49833,7 +48335,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIn" = (
+"bFE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -49847,7 +48349,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bIo" = (
+"bFF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -49860,7 +48362,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIp" = (
+"bFG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -49873,7 +48375,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIq" = (
+"bFH" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
@@ -49882,7 +48384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bIr" = (
+"bFI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -49897,7 +48399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bIs" = (
+"bFJ" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
@@ -49909,7 +48411,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bIt" = (
+"bFK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/obj/structure/cable{
@@ -49926,7 +48428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bIu" = (
+"bFL" = (
/obj/machinery/requests_console{
department = "Chemistry";
departmentType = 2;
@@ -49944,7 +48446,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIv" = (
+"bFM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -49953,7 +48455,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIw" = (
+"bFN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49961,7 +48463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIx" = (
+"bFO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49970,7 +48472,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIy" = (
+"bFP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49982,7 +48484,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIz" = (
+"bFQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49993,7 +48495,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIA" = (
+"bFR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50007,7 +48509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIB" = (
+"bFS" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Chemistry Lab";
@@ -50023,7 +48525,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bIC" = (
+"bFT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50038,7 +48540,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bID" = (
+"bFU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -50050,12 +48552,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bIE" = (
+"bFV" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bIF" = (
+"bFW" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -50064,13 +48566,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bIG" = (
+"bFX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bIH" = (
+"bFY" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -50086,7 +48588,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bII" = (
+"bFZ" = (
/obj/machinery/computer/scan_consolenew,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -50095,7 +48597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bIJ" = (
+"bGa" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -50104,13 +48606,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bIK" = (
+"bGb" = (
/obj/structure/flora/tree/palm,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bIL" = (
+"bGc" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -50118,7 +48620,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIM" = (
+"bGd" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -50128,7 +48630,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIN" = (
+"bGe" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -50139,7 +48641,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIO" = (
+"bGf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50149,7 +48651,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIP" = (
+"bGg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50160,7 +48662,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIQ" = (
+"bGh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50170,7 +48672,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIR" = (
+"bGi" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -50181,7 +48683,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bIS" = (
+"bGj" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
@@ -50190,7 +48692,7 @@
},
/turf/open/floor/plating/airless,
/area/space)
-"bIT" = (
+"bGk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50198,14 +48700,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/space)
-"bIU" = (
+"bGl" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/space)
-"bIV" = (
+"bGm" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -50218,12 +48720,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bIW" = (
+"bGn" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bIX" = (
+"bGo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -50233,13 +48735,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bIY" = (
+"bGp" = (
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/fitness)
-"bIZ" = (
+"bGq" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -50251,7 +48753,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bJa" = (
+"bGr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -50268,7 +48770,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bJb" = (
+"bGs" = (
/mob/living/simple_animal/crab{
desc = "The local trainer hired to keep the crew in shape by aggressively snipping at them.";
name = "Crabohydrates"
@@ -50278,7 +48780,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bJc" = (
+"bGt" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = 0;
@@ -50299,7 +48801,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bJd" = (
+"bGu" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -50310,12 +48812,12 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bJe" = (
+"bGv" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJf" = (
+"bGw" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
},
@@ -50326,7 +48828,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJg" = (
+"bGx" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder{
pixel_y = 0
@@ -50339,7 +48841,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJh" = (
+"bGy" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -50355,7 +48857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJi" = (
+"bGz" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -50365,7 +48867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJj" = (
+"bGA" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 8
@@ -50374,7 +48876,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJk" = (
+"bGB" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -50387,7 +48889,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJl" = (
+"bGC" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 24
},
@@ -50405,14 +48907,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bJm" = (
+"bGD" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library{
name = "Lounge"
})
-"bJn" = (
+"bGE" = (
/obj/machinery/vending/coffee,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -50420,7 +48922,7 @@
/area/library{
name = "Lounge"
})
-"bJo" = (
+"bGF" = (
/obj/structure/chair/comfy/black{
dir = 4
},
@@ -50433,7 +48935,7 @@
/area/library{
name = "Lounge"
})
-"bJp" = (
+"bGG" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
@@ -50443,7 +48945,7 @@
/area/library{
name = "Lounge"
})
-"bJq" = (
+"bGH" = (
/obj/structure/fireplace,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -50451,14 +48953,14 @@
/area/library{
name = "Lounge"
})
-"bJr" = (
+"bGI" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library{
name = "Lounge"
})
-"bJs" = (
+"bGJ" = (
/obj/structure/chair/comfy/black{
dir = 8
},
@@ -50471,7 +48973,7 @@
/area/library{
name = "Lounge"
})
-"bJt" = (
+"bGK" = (
/obj/structure/rack,
/obj/item/weapon/grown/log,
/obj/item/weapon/grown/log,
@@ -50489,7 +48991,7 @@
/area/library{
name = "Lounge"
})
-"bJu" = (
+"bGL" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -50497,7 +48999,7 @@
/area/library{
name = "Lounge"
})
-"bJv" = (
+"bGM" = (
/obj/machinery/portable_atmospherics/canister/water_vapor,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -50505,7 +49007,7 @@
dir = 5
},
/area/atmos)
-"bJw" = (
+"bGN" = (
/obj/machinery/camera{
c_tag = "Atmospherics North-West";
dir = 4;
@@ -50516,24 +49018,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJx" = (
+"bGO" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJy" = (
+"bGP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJz" = (
+"bGQ" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJA" = (
+"bGR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50544,7 +49046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJB" = (
+"bGS" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -50556,7 +49058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJC" = (
+"bGT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -50569,7 +49071,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bJD" = (
+"bGU" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
icon_state = "yellow";
@@ -50577,7 +49079,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJE" = (
+"bGV" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -50600,7 +49102,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJF" = (
+"bGW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50617,7 +49119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJG" = (
+"bGX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50638,7 +49140,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJH" = (
+"bGY" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Engine Room";
@@ -50660,7 +49162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJI" = (
+"bGZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50680,7 +49182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJJ" = (
+"bHa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50704,7 +49206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJK" = (
+"bHb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50718,7 +49220,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJL" = (
+"bHc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -50737,22 +49239,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engineering)
-"bJN" = (
+"bHd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50776,7 +49263,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJO" = (
+"bHe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50791,7 +49278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJP" = (
+"bHf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -50815,7 +49302,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJQ" = (
+"bHg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50832,7 +49319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJR" = (
+"bHh" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -50851,7 +49338,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJS" = (
+"bHi" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -50867,7 +49354,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJT" = (
+"bHj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50887,7 +49374,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJU" = (
+"bHk" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Engine Room";
@@ -50912,7 +49399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bJV" = (
+"bHl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50933,7 +49420,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJW" = (
+"bHm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50951,7 +49438,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJX" = (
+"bHn" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -50969,7 +49456,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJY" = (
+"bHo" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
dir = 4
@@ -50984,12 +49471,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bJZ" = (
+"bHp" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bKa" = (
+"bHq" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -50998,14 +49485,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bKb" = (
+"bHr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bKc" = (
+"bHs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -51014,7 +49501,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bKd" = (
+"bHt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51022,7 +49509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bKe" = (
+"bHu" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -51036,7 +49523,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bKf" = (
+"bHv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51044,7 +49531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bKg" = (
+"bHw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -51055,19 +49542,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bKh" = (
+"bHx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bKi" = (
+"bHy" = (
/turf/open/floor/plasteel/whiteblue/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"bKj" = (
+"bHz" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/gun/syringe,
@@ -51080,7 +49567,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bKk" = (
+"bHA" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2{
pixel_x = 3;
@@ -51100,7 +49587,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bKl" = (
+"bHB" = (
/obj/structure/table,
/obj/item/device/radio/intercom,
/obj/item/weapon/storage/firstaid/toxin{
@@ -51116,7 +49603,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bKm" = (
+"bHC" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire{
pixel_x = 3;
@@ -51136,7 +49623,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bKn" = (
+"bHD" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute{
pixel_x = 3;
@@ -51158,14 +49645,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bKo" = (
+"bHE" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bKp" = (
+"bHF" = (
/obj/structure/closet/secure_closet/medical1,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -51177,7 +49664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKq" = (
+"bHG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -51186,7 +49673,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKr" = (
+"bHH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -51199,7 +49686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKs" = (
+"bHI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -51214,7 +49701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKt" = (
+"bHJ" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -51223,7 +49710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bKu" = (
+"bHK" = (
/obj/machinery/light/small{
dir = 8
},
@@ -51231,7 +49718,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bKv" = (
+"bHL" = (
/obj/structure/disposalpipe/junction{
tag = "icon-pipe-j2 (WEST)";
icon_state = "pipe-j2";
@@ -51243,7 +49730,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bKw" = (
+"bHM" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -51257,14 +49744,14 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bKx" = (
+"bHN" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bKy" = (
+"bHO" = (
/obj/item/chair,
/obj/machinery/light/small{
dir = 4
@@ -51275,7 +49762,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bKz" = (
+"bHP" = (
/obj/structure/weightlifter,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -51284,18 +49771,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKA" = (
+"bHQ" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKB" = (
+"bHR" = (
/obj/structure/stacklifter,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKC" = (
+"bHS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -51303,7 +49790,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKD" = (
+"bHT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51312,7 +49799,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKE" = (
+"bHU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51322,7 +49809,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bKF" = (
+"bHV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51331,7 +49818,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bKG" = (
+"bHW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/assistant,
@@ -51340,7 +49827,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bKH" = (
+"bHX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51353,7 +49840,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bKI" = (
+"bHY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51361,7 +49848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bKJ" = (
+"bHZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -51372,7 +49859,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bKK" = (
+"bIa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51380,7 +49867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bKL" = (
+"bIb" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -51391,7 +49878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKM" = (
+"bIc" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
@@ -51399,7 +49886,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKN" = (
+"bId" = (
/obj/structure/destructible/cult/tome,
/obj/item/clothing/under/suit_jacket/red,
/obj/item/weapon/book/codex_gigas,
@@ -51407,12 +49894,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKO" = (
+"bIe" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKP" = (
+"bIf" = (
/obj/machinery/door/window{
dir = 8;
icon_state = "right";
@@ -51425,7 +49912,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKQ" = (
+"bIg" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -51444,27 +49931,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bKR" = (
+"bIh" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library{
name = "Lounge"
})
-"bKS" = (
-/obj/structure/chair/comfy/black{
- tag = "icon-comfychair (NORTH)";
- icon_state = "comfychair";
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/grimy{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library{
- name = "Lounge"
- })
-"bKT" = (
+"bIi" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -51472,7 +49946,7 @@
/area/library{
name = "Lounge"
})
-"bKU" = (
+"bIj" = (
/obj/structure/chair/comfy/black{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -51484,7 +49958,7 @@
/area/library{
name = "Lounge"
})
-"bKV" = (
+"bIk" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
@@ -51494,20 +49968,7 @@
/area/library{
name = "Lounge"
})
-"bKW" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bKX" = (
+"bIl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -51517,7 +49978,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bKY" = (
+"bIm" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -51527,13 +49988,13 @@
dir = 5
},
/area/atmos)
-"bKZ" = (
+"bIn" = (
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/atmos)
-"bLa" = (
+"bIo" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "Atmospherics Storage";
@@ -51544,7 +50005,7 @@
dir = 5
},
/area/atmos)
-"bLb" = (
+"bIp" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -51554,7 +50015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bLc" = (
+"bIq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -51564,7 +50025,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bLd" = (
+"bIr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -51574,7 +50035,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bLe" = (
+"bIs" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -51592,13 +50053,13 @@
dir = 6
},
/area/atmos)
-"bLf" = (
+"bIt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bLg" = (
+"bIu" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/yellow/side{
@@ -51608,7 +50069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLh" = (
+"bIv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -51620,7 +50081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLi" = (
+"bIw" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -51629,7 +50090,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLj" = (
+"bIx" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -51641,7 +50102,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLk" = (
+"bIy" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
icon_state = "yellow";
@@ -51649,20 +50110,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLl" = (
+"bIz" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLm" = (
+"bIA" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLn" = (
+"bIB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -51674,12 +50135,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLo" = (
+"bIC" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLp" = (
+"bID" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -51691,7 +50152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLq" = (
+"bIE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -51702,7 +50163,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLr" = (
+"bIF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 1;
@@ -51713,7 +50174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLs" = (
+"bIG" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -4;
@@ -51727,7 +50188,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLt" = (
+"bIH" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
icon_state = "yellow";
@@ -51735,7 +50196,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bLu" = (
+"bII" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -51747,7 +50208,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLv" = (
+"bIJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -51755,7 +50216,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLw" = (
+"bIK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -51768,7 +50229,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLx" = (
+"bIL" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/stack/packageWrap,
@@ -51780,7 +50241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"bLy" = (
+"bIM" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -51790,12 +50251,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bLz" = (
+"bIN" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bLA" = (
+"bIO" = (
/obj/machinery/light/small{
dir = 4
},
@@ -51805,7 +50266,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bLB" = (
+"bIP" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -51820,13 +50281,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bLC" = (
+"bIQ" = (
/obj/structure/closet/secure_closet/chemical,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLD" = (
+"bIR" = (
/obj/structure/table/glass,
/obj/item/hand_labeler_refill,
/obj/item/hand_labeler_refill,
@@ -51837,7 +50298,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLE" = (
+"bIS" = (
/obj/structure/table/glass,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
@@ -51846,7 +50307,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLF" = (
+"bIT" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/obj/item/stack/sheet/mineral/plasma{
@@ -51866,7 +50327,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLG" = (
+"bIU" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -51875,14 +50336,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLH" = (
+"bIV" = (
/obj/structure/table/glass,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLI" = (
+"bIW" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/syringes,
/obj/item/clothing/glasses/science{
@@ -51894,7 +50355,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLJ" = (
+"bIX" = (
/obj/structure/table/glass,
/obj/item/weapon/grenade/chem_grenade,
/obj/item/weapon/grenade/chem_grenade,
@@ -51909,13 +50370,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLK" = (
+"bIY" = (
/obj/structure/closet/wardrobe/chemistry_white,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bLL" = (
+"bIZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -51924,7 +50385,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bLM" = (
+"bJa" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Medbay Storage";
@@ -51936,7 +50397,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bLN" = (
+"bJb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -51944,7 +50405,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bLO" = (
+"bJc" = (
/obj/structure/table,
/obj/structure/bedsheetbin{
pixel_x = 2
@@ -51958,18 +50419,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bLP" = (
+"bJd" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bLQ" = (
+"bJe" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bLR" = (
+"bJf" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/requests_console{
department = "Genetics";
@@ -51982,18 +50443,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLS" = (
+"bJg" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLT" = (
+"bJh" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLU" = (
+"bJi" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -52007,7 +50468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLV" = (
+"bJj" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
icon_state = "whitepurple";
@@ -52015,7 +50476,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLW" = (
+"bJk" = (
/obj/machinery/door/window/westleft{
name = "Monkey Pen";
req_access_txt = "9"
@@ -52025,12 +50486,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bLX" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/genetics)
-"bLY" = (
+"bJl" = (
/obj/structure/disposalpipe/segment,
/obj/structure/girder,
/obj/structure/grille,
@@ -52040,7 +50496,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bLZ" = (
+"bJm" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -52053,7 +50509,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bMa" = (
+"bJn" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -52068,7 +50524,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bMb" = (
+"bJo" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -52076,7 +50532,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bMc" = (
+"bJp" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/effect/spawner/lootdrop/maintenance,
@@ -52084,7 +50540,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bMd" = (
+"bJq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
@@ -52093,7 +50549,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bMe" = (
+"bJr" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = -32;
@@ -52103,26 +50559,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bMf" = (
+"bJs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bMg" = (
+"bJt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bMh" = (
+"bJu" = (
/obj/structure/table,
/turf/open/floor/plasteel/vault{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 5
},
/area/crew_quarters/fitness)
-"bMi" = (
+"bJv" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -52134,7 +50590,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bMj" = (
+"bJw" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -52142,7 +50598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bMk" = (
+"bJx" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (WEST)";
@@ -52151,23 +50607,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bMl" = (
+"bJy" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bMm" = (
+"bJz" = (
/turf/open/floor/plasteel/chapel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bMn" = (
+"bJA" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bMo" = (
+"bJB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -52175,7 +50631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bMp" = (
+"bJC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -52188,7 +50644,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bMq" = (
+"bJD" = (
/obj/machinery/door/airlock/glass{
name = "Library"
},
@@ -52202,7 +50658,7 @@
/area/library{
name = "Lounge"
})
-"bMr" = (
+"bJE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -52212,7 +50668,7 @@
/area/library{
name = "Lounge"
})
-"bMs" = (
+"bJF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -52222,7 +50678,7 @@
/area/library{
name = "Lounge"
})
-"bMt" = (
+"bJG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -52237,7 +50693,7 @@
/area/library{
name = "Lounge"
})
-"bMu" = (
+"bJH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -52250,7 +50706,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bMv" = (
+"bJI" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/camera{
c_tag = "Atmospherics Storage";
@@ -52263,7 +50719,7 @@
dir = 5
},
/area/atmos)
-"bMw" = (
+"bJJ" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -52271,7 +50727,7 @@
dir = 5
},
/area/atmos)
-"bMx" = (
+"bJK" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -52279,7 +50735,7 @@
dir = 5
},
/area/atmos)
-"bMy" = (
+"bJL" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/vault{
@@ -52287,7 +50743,7 @@
dir = 5
},
/area/atmos)
-"bMz" = (
+"bJM" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 5
},
@@ -52295,7 +50751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bMA" = (
+"bJN" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
},
@@ -52303,7 +50759,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bMB" = (
+"bJO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -52311,13 +50767,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bMC" = (
+"bJP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bMD" = (
+"bJQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52336,7 +50792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bME" = (
+"bJR" = (
/obj/machinery/camera{
c_tag = "Engineering West";
dir = 4;
@@ -52351,14 +50807,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMF" = (
+"bJS" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMG" = (
+"bJT" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -4;
@@ -52379,7 +50835,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMH" = (
+"bJU" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/engineering_construction,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52390,7 +50846,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMI" = (
+"bJV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -52399,7 +50855,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMJ" = (
+"bJW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52411,13 +50867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMK" = (
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engineering)
-"bML" = (
+"bJX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table,
/obj/structure/cable/yellow{
@@ -52430,13 +50880,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMM" = (
+"bJY" = (
/obj/structure/table,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMN" = (
+"bJZ" = (
/obj/structure/table,
/obj/item/clothing/head/welding,
/obj/item/clothing/head/welding,
@@ -52445,7 +50895,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMO" = (
+"bKa" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/weapon/pickaxe/mini,
/obj/machinery/camera{
@@ -52461,7 +50911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bMP" = (
+"bKb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -52477,13 +50927,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMQ" = (
+"bKc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMR" = (
+"bKd" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -52494,7 +50944,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bMS" = (
+"bKe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -52503,7 +50953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bMT" = (
+"bKf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -52513,7 +50963,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bMU" = (
+"bKg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -52521,7 +50971,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bMV" = (
+"bKh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -52531,13 +50981,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bMW" = (
-/obj/effect/landmark/start/medical_doctor,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay2)
-"bMX" = (
+"bKi" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -52546,7 +50990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bMY" = (
+"bKj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52555,7 +50999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bMZ" = (
+"bKk" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -52574,7 +51018,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bNa" = (
+"bKl" = (
/obj/structure/closet/wardrobe/genetics_white,
/obj/machinery/light{
icon_state = "tube1";
@@ -52584,7 +51028,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bNb" = (
+"bKm" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -52593,7 +51037,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bNc" = (
+"bKn" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -52611,7 +51055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bNd" = (
+"bKo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light/small{
dir = 8
@@ -52626,7 +51070,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bNe" = (
+"bKp" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -52638,7 +51082,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bNf" = (
+"bKq" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -52652,13 +51096,13 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bNg" = (
+"bKr" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bNh" = (
+"bKs" = (
/obj/structure/weightlifter,
/obj/machinery/camera{
c_tag = "Fitness West";
@@ -52669,14 +51113,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNi" = (
+"bKt" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNj" = (
+"bKu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -52684,7 +51128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNk" = (
+"bKv" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
@@ -52693,7 +51137,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNl" = (
+"bKw" = (
/obj/machinery/door/airlock/glass{
name = "Fitness Area"
},
@@ -52702,7 +51146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bNm" = (
+"bKx" = (
/obj/machinery/door/morgue{
name = "Private Study";
req_access_txt = "37"
@@ -52711,13 +51155,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNn" = (
+"bKy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNo" = (
+"bKz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -52730,7 +51174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bNp" = (
+"bKA" = (
/obj/machinery/door/airlock/glass{
name = "Library"
},
@@ -52749,7 +51193,7 @@
/area/library{
name = "Lounge"
})
-"bNq" = (
+"bKB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -52764,7 +51208,7 @@
/area/library{
name = "Lounge"
})
-"bNr" = (
+"bKC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -52779,7 +51223,7 @@
/area/library{
name = "Lounge"
})
-"bNs" = (
+"bKD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -52791,7 +51235,7 @@
/area/library{
name = "Lounge"
})
-"bNt" = (
+"bKE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 4;
@@ -52804,24 +51248,7 @@
/area/library{
name = "Lounge"
})
-"bNu" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"bNv" = (
+"bKF" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -52829,7 +51256,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNw" = (
+"bKG" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8
@@ -52838,7 +51265,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNx" = (
+"bKH" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 10
@@ -52850,14 +51277,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNy" = (
+"bKI" = (
/obj/effect/landmark/lightsout,
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNz" = (
+"bKJ" = (
/mob/living/simple_animal/pet/dog/pug{
desc = "It's Spaghetti, the official pug of Atmospherics. Appropriately named after the jumbled mess of piping.";
name = "Spaghetti"
@@ -52866,7 +51293,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNA" = (
+"bKK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52883,7 +51310,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNB" = (
+"bKL" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -52892,7 +51319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNC" = (
+"bKM" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -52900,7 +51327,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bND" = (
+"bKN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52915,7 +51342,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNE" = (
+"bKO" = (
/obj/structure/reagent_dispensers/watertank/high,
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -52924,13 +51351,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNF" = (
+"bKP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bNG" = (
+"bKQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52944,7 +51371,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bNH" = (
+"bKR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -52953,13 +51380,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bNI" = (
+"bKS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bNJ" = (
+"bKT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -52967,26 +51394,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bNK" = (
+"bKU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bNL" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/window/brigdoor/westright{
- name = "Chief Engineer's Hardsuit";
- req_access_txt = "56"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engineering)
-"bNM" = (
+"bKV" = (
/obj/structure/closet/radiation,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -52998,7 +51412,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bNN" = (
+"bKW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -53012,7 +51426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bNO" = (
+"bKX" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -53023,7 +51437,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bNP" = (
+"bKY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53031,7 +51445,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bNQ" = (
+"bKZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -53045,19 +51459,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bNR" = (
+"bLa" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bNS" = (
+"bLb" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bNT" = (
+"bLc" = (
/obj/machinery/light/small{
dir = 8
},
@@ -53065,7 +51479,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNU" = (
+"bLd" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -53073,7 +51487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNV" = (
+"bLe" = (
/obj/machinery/door/airlock/maintenance/external{
name = "External Airlock Access";
req_access_txt = "12"
@@ -53082,7 +51496,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bNW" = (
+"bLf" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53095,7 +51509,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bNX" = (
+"bLg" = (
/obj/machinery/power/apc{
dir = 1;
name = "Chemistry APC";
@@ -53111,24 +51525,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"bNY" = (
+"bLh" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bNZ" = (
+"bLi" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOa" = (
-/obj/structure/closet/secure_closet/medical3,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay2)
-"bOb" = (
+"bLj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -53140,7 +51548,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOc" = (
+"bLk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53151,7 +51559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOd" = (
+"bLl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53163,7 +51571,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOe" = (
+"bLm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53175,7 +51583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOf" = (
+"bLn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53187,7 +51595,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOg" = (
+"bLo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -53206,7 +51614,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bOh" = (
+"bLp" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/disks{
pixel_x = 2;
@@ -53216,7 +51624,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bOi" = (
+"bLq" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/rxglasses,
/obj/machinery/firealarm{
@@ -53227,7 +51635,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bOj" = (
+"bLr" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
/obj/item/device/radio/headset/headset_medsci,
@@ -53247,7 +51655,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bOk" = (
+"bLs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -53258,7 +51666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bOl" = (
+"bLt" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (SOUTHEAST)";
@@ -53267,7 +51675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bOm" = (
+"bLu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -53283,7 +51691,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOn" = (
+"bLv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -53293,7 +51701,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOo" = (
+"bLw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -53302,7 +51710,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOp" = (
+"bLx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -53313,7 +51721,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOq" = (
+"bLy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -53325,7 +51733,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bOr" = (
+"bLz" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -53339,7 +51747,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOs" = (
+"bLA" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -53350,7 +51758,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOt" = (
+"bLB" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -53364,7 +51772,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOu" = (
+"bLC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
@@ -53373,7 +51781,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bOv" = (
+"bLD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -53391,7 +51799,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bOw" = (
+"bLE" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fitness APC";
@@ -53411,7 +51819,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOx" = (
+"bLF" = (
/obj/machinery/light{
dir = 8
},
@@ -53422,13 +51830,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOy" = (
+"bLG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOz" = (
+"bLH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -53436,7 +51844,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOA" = (
+"bLI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53444,7 +51852,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOB" = (
+"bLJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53453,7 +51861,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOC" = (
+"bLK" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -53464,7 +51872,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bOD" = (
+"bLL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -53477,7 +51885,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bOE" = (
+"bLM" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole/bookmanagement{
pixel_y = 0
@@ -53489,7 +51897,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOF" = (
+"bLN" = (
/obj/machinery/light{
dir = 1
},
@@ -53498,13 +51906,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOG" = (
+"bLO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bOH" = (
+"bLP" = (
/obj/machinery/light{
dir = 8
},
@@ -53514,7 +51922,7 @@
/area/library{
name = "Lounge"
})
-"bOI" = (
+"bLQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -53522,7 +51930,7 @@
/area/library{
name = "Lounge"
})
-"bOJ" = (
+"bLR" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/assistant,
/turf/open/floor/wood{
@@ -53531,7 +51939,7 @@
/area/library{
name = "Lounge"
})
-"bOK" = (
+"bLS" = (
/obj/structure/chair/office/dark,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -53539,7 +51947,7 @@
/area/library{
name = "Lounge"
})
-"bOL" = (
+"bLT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -53549,24 +51957,24 @@
/area/library{
name = "Lounge"
})
-"bOM" = (
+"bLU" = (
/obj/structure/grille,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bON" = (
+"bLV" = (
/obj/machinery/pipedispenser/disposal/transit_tube,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOO" = (
+"bLW" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOP" = (
+"bLX" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -53579,7 +51987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOQ" = (
+"bLY" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Canister To Waste";
@@ -53593,7 +52001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOR" = (
+"bLZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53611,7 +52019,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOS" = (
+"bMa" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -53626,14 +52034,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOT" = (
+"bMb" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOU" = (
+"bMc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53646,7 +52054,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOV" = (
+"bMd" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -53655,7 +52063,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bOW" = (
+"bMe" = (
/obj/machinery/vending/engivend,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -53664,7 +52072,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bOX" = (
+"bMf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -53679,7 +52087,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bOY" = (
+"bMg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -53699,7 +52107,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bOZ" = (
+"bMh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -53727,7 +52135,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bPa" = (
+"bMi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -53735,7 +52143,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPb" = (
+"bMj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -53751,11 +52159,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bPc" = (
+"bMk" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/crew_quarters/chief)
-"bPd" = (
+"bMl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -53777,7 +52185,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPe" = (
+"bMm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53793,7 +52201,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPf" = (
+"bMn" = (
/obj/machinery/light,
/obj/structure/rack,
/obj/item/weapon/pickaxe/mini,
@@ -53809,7 +52217,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPg" = (
+"bMo" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/gloves/color/black,
@@ -53832,7 +52240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPh" = (
+"bMp" = (
/obj/structure/rack,
/obj/item/clothing/glasses/meson/engine,
/obj/item/clothing/glasses/meson/engine,
@@ -53845,7 +52253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPi" = (
+"bMq" = (
/obj/structure/rack,
/obj/item/weapon/storage/belt/utility,
/obj/item/weapon/storage/belt/utility,
@@ -53860,7 +52268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPj" = (
+"bMr" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -53873,7 +52281,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPk" = (
+"bMs" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHEAST)";
@@ -53882,7 +52290,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"bPl" = (
+"bMt" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -53897,7 +52305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPm" = (
+"bMu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -53909,7 +52317,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPn" = (
+"bMv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53923,7 +52331,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPo" = (
+"bMw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53942,7 +52350,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPp" = (
+"bMx" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -53965,7 +52373,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPq" = (
+"bMy" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -53982,7 +52390,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPr" = (
+"bMz" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -54001,7 +52409,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPs" = (
+"bMA" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -54019,13 +52427,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/gravity_generator)
-"bPt" = (
+"bMB" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bPu" = (
+"bMC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -54040,7 +52448,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPv" = (
+"bMD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -54055,7 +52463,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPw" = (
+"bME" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -54069,7 +52477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPx" = (
+"bMF" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -54078,7 +52486,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPy" = (
+"bMG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -54094,7 +52502,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPz" = (
+"bMH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -54115,7 +52523,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPA" = (
+"bMI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -54134,7 +52542,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPB" = (
+"bMJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54142,7 +52550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPC" = (
+"bMK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54153,19 +52561,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bPD" = (
-/obj/machinery/door/airlock/maintenance{
- name = "External Maintenance Access";
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"bPE" = (
+"bML" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54178,7 +52574,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPF" = (
+"bMM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -54193,7 +52589,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPG" = (
+"bMN" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -54209,7 +52605,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPH" = (
+"bMO" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -54232,7 +52628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPI" = (
+"bMP" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/medical{
pixel_x = 0;
@@ -54255,7 +52651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPJ" = (
+"bMQ" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/gun/syringe,
@@ -54263,7 +52659,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPK" = (
+"bMR" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/spray/cleaner,
/obj/item/clothing/glasses/hud/health,
@@ -54273,7 +52669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPL" = (
+"bMS" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags{
pixel_x = 3;
@@ -54286,7 +52682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPM" = (
+"bMT" = (
/obj/structure/closet/l3closet,
/obj/machinery/camera{
c_tag = "Medbay Storage";
@@ -54298,13 +52694,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPN" = (
+"bMU" = (
/obj/structure/closet/wardrobe/white/medical,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPO" = (
+"bMV" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -54313,7 +52709,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bPP" = (
+"bMW" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Research";
req_access_txt = "9"
@@ -54328,7 +52724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bPQ" = (
+"bMX" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -54339,7 +52735,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPR" = (
+"bMY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -54355,7 +52751,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPS" = (
+"bMZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54366,7 +52762,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPT" = (
+"bNa" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -54380,7 +52776,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPU" = (
+"bNb" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -54391,7 +52787,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPV" = (
+"bNc" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -54406,7 +52802,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bPW" = (
+"bNd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -54419,20 +52815,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bPX" = (
+"bNe" = (
/obj/structure/weightlifter,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bPY" = (
-/obj/structure/stacklifter,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/fitness)
-"bPZ" = (
+"bNf" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -54440,7 +52829,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bQa" = (
+"bNg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -54449,7 +52838,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bQb" = (
+"bNh" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -54457,39 +52846,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bQc" = (
+"bNi" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bQd" = (
+"bNj" = (
/obj/machinery/libraryscanner,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQe" = (
+"bNk" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/librarian,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQf" = (
+"bNl" = (
/obj/machinery/holopad,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQg" = (
+"bNm" = (
/obj/structure/table/wood,
/obj/item/device/camera_film,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bQh" = (
+"bNn" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole,
/turf/open/floor/wood{
@@ -54498,7 +52887,7 @@
/area/library{
name = "Lounge"
})
-"bQi" = (
+"bNo" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck,
/turf/open/floor/wood{
@@ -54507,7 +52896,7 @@
/area/library{
name = "Lounge"
})
-"bQj" = (
+"bNp" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/turf/open/floor/wood{
@@ -54516,7 +52905,7 @@
/area/library{
name = "Lounge"
})
-"bQk" = (
+"bNq" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -54529,7 +52918,7 @@
/area/library{
name = "Lounge"
})
-"bQl" = (
+"bNr" = (
/obj/machinery/camera{
c_tag = "Library East";
dir = 9;
@@ -54541,7 +52930,7 @@
/area/library{
name = "Lounge"
})
-"bQm" = (
+"bNs" = (
/obj/machinery/power/apc{
dir = 8;
name = "Lounge APC";
@@ -54565,10 +52954,10 @@
/area/library{
name = "Lounge"
})
-"bQn" = (
+"bNt" = (
/turf/open/floor/engine/n2,
/area/atmos)
-"bQo" = (
+"bNu" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
@@ -54576,7 +52965,7 @@
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bQp" = (
+"bNv" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -54586,7 +52975,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQq" = (
+"bNw" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -54594,7 +52983,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQr" = (
+"bNx" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
filter_type = "n2";
@@ -54608,7 +52997,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQs" = (
+"bNy" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -54617,7 +53006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQt" = (
+"bNz" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Atmos To Chamber";
@@ -54628,13 +53017,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQu" = (
+"bNA" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQv" = (
+"bNB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -54649,7 +53038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQw" = (
+"bNC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -54665,7 +53054,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bQx" = (
+"bND" = (
/obj/machinery/computer/card/minor/ce,
/obj/machinery/button/door{
id = "engiestoragesmes";
@@ -54692,14 +53081,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bQy" = (
+"bNE" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bQz" = (
+"bNF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -54710,7 +53099,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bQA" = (
+"bNG" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = null;
name = "SMES Room";
@@ -54728,12 +53117,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQB" = (
+"bNH" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQC" = (
+"bNI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -54745,7 +53134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQD" = (
+"bNJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -54762,7 +53151,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQE" = (
+"bNK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -54790,7 +53179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQF" = (
+"bNL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -54809,7 +53198,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQG" = (
+"bNM" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -54818,19 +53207,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQH" = (
+"bNN" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bQI" = (
+"bNO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bQJ" = (
+"bNP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -54840,7 +53229,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bQK" = (
+"bNQ" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -54849,7 +53238,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bQL" = (
+"bNR" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 4
@@ -54858,7 +53247,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bQM" = (
+"bNS" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -54866,7 +53255,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQN" = (
+"bNT" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -54880,7 +53269,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQO" = (
+"bNU" = (
/obj/machinery/door/airlock/maintenance{
name = "Medical Storage";
req_access_txt = "45"
@@ -54890,20 +53279,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bQP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor/northright{
- name = "Chief Medical Officer's Hardsuit";
- req_access_txt = "40"
- },
-/obj/machinery/suit_storage_unit/cmo,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay2)
-"bQQ" = (
+"bNV" = (
/obj/machinery/power/apc{
dir = 1;
name = "Genetics APC";
@@ -54919,7 +53295,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"bQR" = (
+"bNW" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -54940,7 +53316,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQS" = (
+"bNX" = (
/obj/machinery/light/small{
dir = 1
},
@@ -54950,7 +53326,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQT" = (
+"bNY" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -54958,7 +53334,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQU" = (
+"bNZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -54971,7 +53347,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQV" = (
+"bOa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -54983,7 +53359,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQW" = (
+"bOb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -54992,7 +53368,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQX" = (
+"bOc" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 1
@@ -55003,7 +53379,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bQY" = (
+"bOd" = (
/obj/machinery/light/small{
dir = 4
},
@@ -55019,7 +53395,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bQZ" = (
+"bOe" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -55031,7 +53407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRa" = (
+"bOf" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -55040,7 +53416,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRb" = (
+"bOg" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -55050,7 +53426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bRc" = (
+"bOh" = (
/obj/structure/table/wood,
/obj/machinery/camera{
c_tag = "Library West";
@@ -55061,21 +53437,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRd" = (
+"bOi" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRe" = (
+"bOj" = (
/obj/structure/table/wood,
/obj/item/weapon/pen/fourcolor,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRf" = (
+"bOk" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -55086,7 +53462,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bRg" = (
+"bOl" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -55099,7 +53475,7 @@
/area/library{
name = "Lounge"
})
-"bRh" = (
+"bOm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -55112,7 +53488,7 @@
/area/library{
name = "Lounge"
})
-"bRi" = (
+"bOn" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/wood{
@@ -55121,7 +53497,7 @@
/area/library{
name = "Lounge"
})
-"bRj" = (
+"bOo" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -55129,7 +53505,7 @@
/area/library{
name = "Lounge"
})
-"bRk" = (
+"bOp" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck/cas,
/obj/item/toy/cards/deck/cas/black,
@@ -55139,7 +53515,7 @@
/area/library{
name = "Lounge"
})
-"bRl" = (
+"bOq" = (
/obj/machinery/photocopier,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -55147,29 +53523,29 @@
/area/library{
name = "Lounge"
})
-"bRm" = (
+"bOr" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bRn" = (
+"bOs" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
/area/atmos)
-"bRo" = (
+"bOt" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bRp" = (
+"bOu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bRq" = (
+"bOv" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "n2_in";
@@ -55182,7 +53558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRr" = (
+"bOw" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 5
@@ -55194,13 +53570,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRs" = (
+"bOx" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRt" = (
+"bOy" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -55208,7 +53584,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRu" = (
+"bOz" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -55221,7 +53597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRv" = (
+"bOA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55234,7 +53610,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRw" = (
+"bOB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55252,7 +53628,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRx" = (
+"bOC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55269,7 +53645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRy" = (
+"bOD" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -55284,7 +53660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRz" = (
+"bOE" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -55293,13 +53669,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRA" = (
+"bOF" = (
/obj/machinery/suit_storage_unit/atmos,
/turf/open/floor/plasteel/delivery{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bRB" = (
+"bOG" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -55319,7 +53695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRC" = (
+"bOH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55347,7 +53723,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRD" = (
+"bOI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55364,7 +53740,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRE" = (
+"bOJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55382,7 +53758,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRF" = (
+"bOK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55397,7 +53773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRG" = (
+"bOL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55412,7 +53788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRH" = (
+"bOM" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -55432,7 +53808,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRI" = (
+"bON" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
icon_state = "0-4";
@@ -55451,7 +53827,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRJ" = (
+"bOO" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
d1 = 4;
@@ -55467,7 +53843,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRK" = (
+"bOP" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
d1 = 4;
@@ -55486,7 +53862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRL" = (
+"bOQ" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
d1 = 4;
@@ -55505,7 +53881,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRM" = (
+"bOR" = (
/obj/machinery/computer/station_alert,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -55527,7 +53903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRN" = (
+"bOS" = (
/obj/machinery/modular_computer/console/preset/engineering,
/obj/structure/cable{
d2 = 8;
@@ -55537,7 +53913,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bRO" = (
+"bOT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/sign/securearea{
@@ -55552,7 +53928,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRP" = (
+"bOU" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -55564,7 +53940,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRQ" = (
+"bOV" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -55574,7 +53950,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRR" = (
+"bOW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -55593,14 +53969,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRS" = (
+"bOX" = (
/obj/structure/table,
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bRT" = (
+"bOY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -55616,7 +53992,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bRU" = (
+"bOZ" = (
/obj/machinery/power/apc{
dir = 1;
name = "Medbay Storage APC";
@@ -55632,7 +54008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"bRV" = (
+"bPa" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -55643,7 +54019,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bRW" = (
+"bPb" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -55651,7 +54027,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bRX" = (
+"bPc" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -55667,7 +54043,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bRY" = (
+"bPd" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -55678,7 +54054,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bRZ" = (
+"bPe" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -55686,14 +54062,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bSa" = (
-/obj/structure/weightlifter,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/fitness)
-"bSb" = (
+"bPf" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -55701,18 +54070,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSc" = (
+"bPg" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSd" = (
+"bPh" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSe" = (
+"bPi" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -55720,7 +54089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSf" = (
+"bPj" = (
/obj/structure/chair{
dir = 8
},
@@ -55728,7 +54097,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSg" = (
+"bPk" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -55737,7 +54106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bSh" = (
+"bPl" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -55750,7 +54119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bSi" = (
+"bPm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -55758,7 +54127,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bSj" = (
+"bPn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -55773,7 +54142,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bSk" = (
+"bPo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -55789,7 +54158,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSl" = (
+"bPp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -55797,7 +54166,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSm" = (
+"bPq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -55806,7 +54175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSn" = (
+"bPr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -55823,7 +54192,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bSo" = (
+"bPs" = (
/obj/structure/sign/poster/random{
name = "random official poster";
pixel_x = 0;
@@ -55836,7 +54205,7 @@
/area/library{
name = "Lounge"
})
-"bSp" = (
+"bPt" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -55846,7 +54215,7 @@
/area/library{
name = "Lounge"
})
-"bSq" = (
+"bPu" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -55857,7 +54226,7 @@
/area/library{
name = "Lounge"
})
-"bSr" = (
+"bPv" = (
/obj/machinery/light,
/obj/machinery/bookbinder,
/turf/open/floor/wood{
@@ -55866,7 +54235,7 @@
/area/library{
name = "Lounge"
})
-"bSs" = (
+"bPw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -55878,7 +54247,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bSt" = (
+"bPx" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -55890,7 +54259,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bSu" = (
+"bPy" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
@@ -55898,7 +54267,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bSv" = (
+"bPz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
@@ -55913,7 +54282,7 @@
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bSw" = (
+"bPA" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -55923,7 +54292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSx" = (
+"bPB" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
@@ -55931,7 +54300,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSy" = (
+"bPC" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -55939,7 +54308,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSz" = (
+"bPD" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -55953,7 +54322,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSA" = (
+"bPE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -55964,7 +54333,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSB" = (
+"bPF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
@@ -55974,7 +54343,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSC" = (
+"bPG" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
icon_state = "yellow";
@@ -55982,14 +54351,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSD" = (
+"bPH" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
/turf/closed/wall,
/area/atmos)
-"bSE" = (
+"bPI" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
icon_state = "yellow";
@@ -55997,13 +54366,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSF" = (
+"bPJ" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSG" = (
+"bPK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -56012,13 +54381,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSH" = (
+"bPL" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSI" = (
+"bPM" = (
/obj/machinery/light/small{
dir = 4
},
@@ -56027,14 +54396,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bSJ" = (
+"bPN" = (
/obj/machinery/computer/apc_control,
/obj/machinery/light,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bSK" = (
+"bPO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -56049,7 +54418,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bSL" = (
+"bPP" = (
/obj/machinery/suit_storage_unit/ce,
/obj/machinery/airalarm{
dir = 1;
@@ -56060,7 +54429,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bSM" = (
+"bPQ" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable{
d1 = 4;
@@ -56072,7 +54441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bSN" = (
+"bPR" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -56091,7 +54460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bSO" = (
+"bPS" = (
/obj/structure/table,
/obj/item/weapon/book/manual/engineering_particle_accelerator,
/turf/open/floor/plasteel/yellow/side{
@@ -56101,7 +54470,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSP" = (
+"bPT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -56113,12 +54482,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSQ" = (
+"bPU" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSR" = (
+"bPV" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -56127,7 +54496,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSS" = (
+"bPW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56135,7 +54504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bST" = (
+"bPX" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -56150,7 +54519,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSU" = (
+"bPY" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -56168,7 +54537,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSV" = (
+"bPZ" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -56181,7 +54550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSW" = (
+"bQa" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -56195,7 +54564,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSX" = (
+"bQb" = (
/obj/machinery/power/apc{
dir = 4;
name = "Engineering SMES Storage APC";
@@ -56210,7 +54579,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bSY" = (
+"bQc" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -56220,12 +54589,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bSZ" = (
+"bQd" = (
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bTa" = (
+"bQe" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -56241,7 +54610,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTb" = (
+"bQf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56256,7 +54625,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTc" = (
+"bQg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56272,7 +54641,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTd" = (
+"bQh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56288,7 +54657,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTe" = (
+"bQi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56303,7 +54672,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTf" = (
+"bQj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56324,7 +54693,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTg" = (
+"bQk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56340,7 +54709,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTh" = (
+"bQl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56358,7 +54727,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTi" = (
+"bQm" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56376,7 +54745,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTj" = (
+"bQn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56396,7 +54765,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTk" = (
+"bQo" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -56412,7 +54781,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTl" = (
+"bQp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -56433,7 +54802,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTm" = (
+"bQq" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -56442,7 +54811,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bTn" = (
+"bQr" = (
/obj/machinery/newscaster{
pixel_x = -28;
pixel_y = 4
@@ -56454,7 +54823,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTo" = (
+"bQs" = (
/obj/structure/chair{
dir = 8
},
@@ -56463,7 +54832,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTp" = (
+"bQt" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -56472,7 +54841,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bTq" = (
+"bQu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -56482,7 +54851,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bTr" = (
+"bQv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -56495,7 +54864,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTs" = (
+"bQw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -56503,13 +54872,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTt" = (
+"bQx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTu" = (
+"bQy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -56518,7 +54887,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTv" = (
+"bQz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -56533,7 +54902,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bTw" = (
+"bQA" = (
/obj/machinery/door/morgue{
name = "Explicit Section"
},
@@ -56543,7 +54912,7 @@
/area/library{
name = "Lounge"
})
-"bTx" = (
+"bQB" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -56554,7 +54923,7 @@
/area/library{
name = "Lounge"
})
-"bTy" = (
+"bQC" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -56565,14 +54934,14 @@
/area/library{
name = "Lounge"
})
-"bTz" = (
+"bQD" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bTA" = (
+"bQE" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -56589,7 +54958,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTB" = (
+"bQF" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -56602,7 +54971,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTC" = (
+"bQG" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 10
@@ -56614,13 +54983,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTD" = (
+"bQH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTE" = (
+"bQI" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plasteel/yellow/side{
@@ -56630,7 +54999,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTF" = (
+"bQJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -56638,7 +55007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTG" = (
+"bQK" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
tag = "icon-connector_map (EAST)";
icon_state = "connector_map";
@@ -56649,7 +55018,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTH" = (
+"bQL" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 10
@@ -56658,7 +55027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTI" = (
+"bQM" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Canister To Waste";
@@ -56669,7 +55038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTJ" = (
+"bQN" = (
/obj/structure/fireaxecabinet{
pixel_x = 32
},
@@ -56681,16 +55050,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bTK" = (
+"bQO" = (
/turf/closed/wall,
/area/atmos)
-"bTL" = (
+"bQP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
/area/crew_quarters/chief)
-"bTM" = (
+"bQQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -56698,7 +55067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bTN" = (
+"bQR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -56706,7 +55075,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bTO" = (
+"bQS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -56714,7 +55083,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"bTP" = (
+"bQT" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/engineering_construction,
/obj/item/weapon/book/manual/wiki/engineering_guide,
@@ -56728,7 +55097,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTQ" = (
+"bQU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -56740,8 +55109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTR" = (
-/obj/effect/landmark/start/station_engineer,
+"bQV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -56749,15 +55117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engine_smes)
-"bTT" = (
+"bQW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -56767,7 +55127,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTU" = (
+"bQX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -56776,7 +55136,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTV" = (
+"bQY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -56788,7 +55148,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTW" = (
+"bQZ" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -56807,7 +55167,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTX" = (
+"bRa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56815,7 +55175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTY" = (
+"bRb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56835,7 +55195,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bTZ" = (
+"bRc" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -56846,7 +55206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUa" = (
+"bRd" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -56854,7 +55214,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bUb" = (
+"bRe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -56865,7 +55225,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bUc" = (
+"bRf" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -56878,7 +55238,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bUd" = (
+"bRg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -56893,7 +55253,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bUe" = (
+"bRh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -56907,7 +55267,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bUf" = (
+"bRi" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 8
@@ -56918,7 +55278,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bUg" = (
+"bRj" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -56926,7 +55286,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bUh" = (
+"bRk" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/light/small{
dir = 8
@@ -56937,7 +55297,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bUi" = (
+"bRl" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -56946,7 +55306,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bUj" = (
+"bRm" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/turf/open/floor/plasteel/vault{
@@ -56954,7 +55314,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bUk" = (
+"bRn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -56964,7 +55324,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bUl" = (
+"bRo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -56975,20 +55335,20 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bUm" = (
+"bRp" = (
/obj/structure/window/reinforced,
/obj/machinery/door/window/westright,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUn" = (
+"bRq" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUo" = (
+"bRr" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
@@ -56997,14 +55357,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUp" = (
+"bRs" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUq" = (
+"bRt" = (
/obj/structure/noticeboard{
dir = 8;
icon_state = "nboard00";
@@ -57016,7 +55376,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bUr" = (
+"bRu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -57031,7 +55391,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bUs" = (
+"bRv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57040,7 +55400,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUt" = (
+"bRw" = (
/obj/machinery/light{
dir = 8
},
@@ -57055,7 +55415,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUu" = (
+"bRx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57063,7 +55423,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUv" = (
+"bRy" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -57075,7 +55435,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUw" = (
+"bRz" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -57091,7 +55451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUx" = (
+"bRA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -57102,7 +55462,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUy" = (
+"bRB" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -57111,7 +55471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bUz" = (
+"bRC" = (
/obj/machinery/light/small{
dir = 8
},
@@ -57121,7 +55481,7 @@
/area/library{
name = "Lounge"
})
-"bUA" = (
+"bRD" = (
/obj/machinery/light/small{
dir = 4
},
@@ -57131,7 +55491,7 @@
/area/library{
name = "Lounge"
})
-"bUB" = (
+"bRE" = (
/obj/machinery/light/small{
dir = 4
},
@@ -57140,12 +55500,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bUC" = (
+"bRF" = (
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUD" = (
+"bRG" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
@@ -57155,7 +55515,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUE" = (
+"bRH" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
filter_type = "o2";
@@ -57169,14 +55529,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUF" = (
+"bRI" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUG" = (
+"bRJ" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
@@ -57184,7 +55544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUH" = (
+"bRK" = (
/obj/machinery/light{
dir = 1
},
@@ -57197,7 +55557,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUI" = (
+"bRL" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
@@ -57208,7 +55568,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUJ" = (
+"bRM" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -57221,7 +55581,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUK" = (
+"bRN" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
initialize_directions = 10
@@ -57233,7 +55593,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUL" = (
+"bRO" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -57242,7 +55602,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUM" = (
+"bRP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -57252,7 +55612,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUN" = (
+"bRQ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Waste to Filter";
@@ -57262,7 +55622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUO" = (
+"bRR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
tag = "icon-manifold (NORTH)";
name = "scrubbers pipe";
@@ -57273,7 +55633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUP" = (
+"bRS" = (
/obj/machinery/meter{
frequency = 1441;
id_tag = "waste_meter";
@@ -57289,13 +55649,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUQ" = (
+"bRT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bUR" = (
+"bRU" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
d1 = 2;
@@ -57309,7 +55669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUS" = (
+"bRV" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Engineering Power Storage 2";
@@ -57326,7 +55686,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUT" = (
+"bRW" = (
/obj/machinery/button/door{
id = "engiestoragesmes";
name = "Engineering SMES Blast Door Control";
@@ -57338,13 +55698,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUU" = (
+"bRX" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUV" = (
+"bRY" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/storage/toolbox/electrical{
@@ -57360,19 +55720,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUW" = (
+"bRZ" = (
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUX" = (
+"bSa" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUY" = (
+"bSb" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -57386,7 +55746,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bUZ" = (
+"bSc" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -57395,13 +55755,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bVa" = (
+"bSd" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bVb" = (
+"bSe" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHEAST)";
@@ -57410,7 +55770,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bVc" = (
+"bSf" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -57421,7 +55781,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bVd" = (
+"bSg" = (
/obj/machinery/camera{
c_tag = "Medbay Asteroid Hallway 1";
dir = 8;
@@ -57432,7 +55792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bVe" = (
+"bSh" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -57446,7 +55806,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bVf" = (
+"bSi" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -57459,7 +55819,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bVg" = (
+"bSj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
@@ -57468,7 +55828,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVh" = (
+"bSk" = (
/obj/structure/chair,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -57476,14 +55836,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVi" = (
+"bSl" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVj" = (
+"bSm" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/cobweb,
/obj/item/weapon/coin/silver,
@@ -57492,7 +55852,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVk" = (
+"bSn" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -57508,7 +55868,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVl" = (
+"bSo" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -57524,7 +55884,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVm" = (
+"bSp" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/light{
dir = 8
@@ -57534,7 +55894,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bVn" = (
+"bSq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -57543,7 +55903,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bVo" = (
+"bSr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -57553,7 +55913,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bVp" = (
+"bSs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -57564,7 +55924,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVq" = (
+"bSt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -57573,42 +55933,42 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVr" = (
+"bSu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bVs" = (
+"bSv" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVt" = (
+"bSw" = (
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVu" = (
+"bSx" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVv" = (
+"bSy" = (
/obj/structure/bookcase/random/reference,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVw" = (
+"bSz" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bVx" = (
+"bSA" = (
/obj/structure/bookcase/random/adult,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -57616,7 +55976,7 @@
/area/library{
name = "Lounge"
})
-"bVy" = (
+"bSB" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -57624,7 +55984,7 @@
/area/library{
name = "Lounge"
})
-"bVz" = (
+"bSC" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 32;
@@ -57636,13 +55996,13 @@
/area/library{
name = "Lounge"
})
-"bVA" = (
+"bSD" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bVB" = (
+"bSE" = (
/obj/machinery/light/small{
dir = 8
},
@@ -57650,13 +56010,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVC" = (
+"bSF" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVD" = (
+"bSG" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
@@ -57665,7 +56025,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVE" = (
+"bSH" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "o2_in";
@@ -57678,7 +56038,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVF" = (
+"bSI" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 9
},
@@ -57686,7 +56046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVG" = (
+"bSJ" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 5
@@ -57695,16 +56055,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVH" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/atmos)
-"bVI" = (
+"bSK" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
@@ -57712,7 +56063,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVJ" = (
+"bSL" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -57721,7 +56072,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVK" = (
+"bSM" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix To Canisters";
@@ -57734,7 +56085,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVL" = (
+"bSN" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -57747,7 +56098,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVM" = (
+"bSO" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
name = "Mix to Filter";
@@ -57757,7 +56108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVN" = (
+"bSP" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1;
min_temperature = 80;
@@ -57768,7 +56119,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVO" = (
+"bSQ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Distro to Waste";
@@ -57778,13 +56129,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVP" = (
+"bSR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bVQ" = (
+"bSS" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "10"
@@ -57801,7 +56152,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bVR" = (
+"bST" = (
/obj/machinery/door/poddoor{
id = "engiestoragesmes";
name = "Engineering SMES Storage"
@@ -57810,7 +56161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bVS" = (
+"bSU" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -57819,13 +56170,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bVT" = (
+"bSV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bVU" = (
+"bSW" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -57836,7 +56187,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bVV" = (
+"bSX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -57846,7 +56197,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"bVW" = (
+"bSY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/floorgrime{
@@ -57855,7 +56206,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVX" = (
+"bSZ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -57863,7 +56214,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVY" = (
+"bTa" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille/broken,
/turf/open/floor/plating/astplate{
@@ -57872,7 +56223,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bVZ" = (
+"bTb" = (
/obj/machinery/light/small{
dir = 4
},
@@ -57889,7 +56240,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bWa" = (
+"bTc" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -57899,7 +56250,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bWb" = (
+"bTd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57909,7 +56260,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bWc" = (
+"bTe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57921,7 +56272,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bWd" = (
+"bTf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57939,7 +56290,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bWe" = (
+"bTg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57949,7 +56300,7 @@
dir = 5
},
/area/crew_quarters/fitness)
-"bWf" = (
+"bTh" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -57964,7 +56315,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWg" = (
+"bTi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -57975,32 +56326,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWh" = (
+"bTj" = (
/obj/structure/punching_bag,
/obj/machinery/light,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWi" = (
+"bTk" = (
/obj/structure/punching_bag,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWj" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/fitness)
-"bWk" = (
+"bTl" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWl" = (
+"bTm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/map/left/ceres{
pixel_x = -32
@@ -58011,13 +56356,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bWm" = (
+"bTn" = (
/obj/machinery/light/small,
/turf/open/floor/carpet{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bWn" = (
+"bTo" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -58025,7 +56370,7 @@
/area/library{
name = "Lounge"
})
-"bWo" = (
+"bTp" = (
/obj/machinery/camera{
c_tag = "Library Explicits";
dir = 9;
@@ -58037,13 +56382,13 @@
/area/library{
name = "Lounge"
})
-"bWp" = (
+"bTq" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bWq" = (
+"bTr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
@@ -58060,7 +56405,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWr" = (
+"bTs" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -58071,7 +56416,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWs" = (
+"bTt" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -58085,7 +56430,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWt" = (
+"bTu" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -58097,7 +56442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWu" = (
+"bTv" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 2;
name = "air mixer";
@@ -58112,7 +56457,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWv" = (
+"bTw" = (
/obj/machinery/camera{
c_tag = "Atmospherics South";
dir = 4;
@@ -58126,7 +56471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWw" = (
+"bTx" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix To Canisters";
@@ -58136,7 +56481,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWx" = (
+"bTy" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
dir = 10
@@ -58148,7 +56493,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWy" = (
+"bTz" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -58157,7 +56502,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWz" = (
+"bTA" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -58170,7 +56515,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWA" = (
+"bTB" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 4;
on = 1
@@ -58179,7 +56524,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWB" = (
+"bTC" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,
/obj/machinery/meter{
frequency = 1441;
@@ -58190,7 +56535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWC" = (
+"bTD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -58198,7 +56543,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWD" = (
+"bTE" = (
/obj/machinery/light/small{
dir = 8
},
@@ -58217,7 +56562,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bWE" = (
+"bTF" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
@@ -58225,7 +56570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bWF" = (
+"bTG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -58233,7 +56578,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bWG" = (
+"bTH" = (
/obj/machinery/button/door{
id = "engiestoragesmes";
name = "Engineering SMES Blast Door Control";
@@ -58247,7 +56592,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bWH" = (
+"bTI" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/metal{
amount = 50
@@ -58266,16 +56611,16 @@
},
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bWI" = (
+"bTJ" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bWJ" = (
+"bTK" = (
/obj/machinery/power/emitter,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bWK" = (
+"bTL" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/floorgrime{
@@ -58284,7 +56629,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bWL" = (
+"bTM" = (
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -58292,7 +56637,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bWM" = (
+"bTN" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -58300,21 +56645,21 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bWN" = (
+"bTO" = (
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bWO" = (
+"bTP" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bWP" = (
+"bTQ" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -58325,7 +56670,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bWQ" = (
+"bTR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -58333,7 +56678,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bWR" = (
+"bTS" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -58342,7 +56687,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWS" = (
+"bTT" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Arena"
},
@@ -58350,7 +56695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bWT" = (
+"bTU" = (
/obj/machinery/door/airlock{
name = "Private Study"
},
@@ -58358,7 +56703,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bWU" = (
+"bTV" = (
/obj/machinery/light/small,
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
@@ -58367,7 +56712,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bWV" = (
+"bTW" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -58375,7 +56720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWW" = (
+"bTX" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -58389,7 +56734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWX" = (
+"bTY" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
@@ -58400,13 +56745,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWY" = (
+"bTZ" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bWZ" = (
+"bUa" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
@@ -58417,7 +56762,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXa" = (
+"bUb" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -58429,7 +56774,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXb" = (
+"bUc" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Pure to Mix";
@@ -58442,7 +56787,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXc" = (
+"bUd" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -58452,7 +56797,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXd" = (
+"bUe" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
@@ -58460,7 +56805,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXe" = (
+"bUf" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Mix to Distro";
@@ -58470,7 +56815,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXf" = (
+"bUg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -58486,23 +56831,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXg" = (
+"bUh" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bXh" = (
+"bUi" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bXi" = (
+"bUj" = (
/obj/machinery/power/emitter,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bXj" = (
+"bUk" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -58512,7 +56857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bXk" = (
+"bUl" = (
/obj/structure/closet/crate,
/obj/item/weapon/pickaxe/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -58520,7 +56865,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bXl" = (
+"bUm" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -58535,7 +56880,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bXm" = (
+"bUn" = (
/obj/machinery/light/small{
dir = 8
},
@@ -58547,7 +56892,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bXn" = (
+"bUo" = (
/obj/structure/barricade/wooden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -58558,7 +56903,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bXo" = (
+"bUp" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/structure/barricade/wooden,
@@ -58568,7 +56913,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bXp" = (
+"bUq" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -58580,7 +56925,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bXq" = (
+"bUr" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -58592,7 +56937,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXr" = (
+"bUs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -58600,7 +56945,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXs" = (
+"bUt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -58608,7 +56953,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXt" = (
+"bUu" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -58625,7 +56970,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bXu" = (
+"bUv" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -58634,7 +56979,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXv" = (
+"bUw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -58642,7 +56987,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXw" = (
+"bUx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -58656,7 +57001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXx" = (
+"bUy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -58670,7 +57015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXy" = (
+"bUz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -58690,7 +57035,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXz" = (
+"bUA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -58701,7 +57046,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXA" = (
+"bUB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -58718,7 +57063,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXB" = (
+"bUC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -58731,7 +57076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bXC" = (
+"bUD" = (
/obj/machinery/door/airlock/maintenance{
name = "Broom Closet";
req_access_txt = "0"
@@ -58741,7 +57086,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bXD" = (
+"bUE" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/sink{
dir = 4;
@@ -58753,7 +57098,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bXE" = (
+"bUF" = (
/obj/machinery/newscaster{
pixel_x = -28;
pixel_y = 4
@@ -58762,7 +57107,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bXF" = (
+"bUG" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/item/device/radio/intercom{
@@ -58774,12 +57119,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bXG" = (
+"bUH" = (
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXH" = (
+"bUI" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
frequency = 1441;
@@ -58789,7 +57134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXI" = (
+"bUJ" = (
/obj/machinery/meter{
name = "Mixed Air Tank In"
},
@@ -58801,7 +57146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXJ" = (
+"bUK" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -58811,7 +57156,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXK" = (
+"bUL" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
@@ -58825,7 +57170,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXL" = (
+"bUM" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (WEST)";
@@ -58839,7 +57184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXM" = (
+"bUN" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -58849,7 +57194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXN" = (
+"bUO" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
@@ -58857,7 +57202,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXO" = (
+"bUP" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
@@ -58865,7 +57210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXP" = (
+"bUQ" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
@@ -58873,7 +57218,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXQ" = (
+"bUR" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
@@ -58884,7 +57229,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXR" = (
+"bUS" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
@@ -58895,7 +57240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXS" = (
+"bUT" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -58906,7 +57251,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXT" = (
+"bUU" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Air to Distro";
@@ -58921,13 +57266,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bXU" = (
+"bUV" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bXV" = (
+"bUW" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/mineral/plasma{
amount = 5
@@ -58936,40 +57281,40 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bXW" = (
+"bUX" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"bXX" = (
+"bUY" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bXY" = (
+"bUZ" = (
/obj/machinery/the_singularitygen{
anchored = 0
},
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bXZ" = (
+"bVa" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bYa" = (
+"bVb" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bYb" = (
+"bVc" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"bYc" = (
+"bVd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -58981,14 +57326,14 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bYd" = (
+"bVe" = (
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYe" = (
+"bVf" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -58996,7 +57341,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYf" = (
+"bVg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -59005,7 +57350,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYg" = (
+"bVh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -59013,7 +57358,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYh" = (
+"bVi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -59021,7 +57366,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYi" = (
+"bVj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/structure/disposalpipe/segment,
@@ -59029,7 +57374,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYj" = (
+"bVk" = (
/obj/structure/janitorialcart,
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
@@ -59037,7 +57382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bYk" = (
+"bVl" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -59048,7 +57393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bYl" = (
+"bVm" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -59059,12 +57404,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"bYm" = (
+"bVn" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYn" = (
+"bVo" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -59073,7 +57418,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYo" = (
+"bVp" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -59082,7 +57427,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYp" = (
+"bVq" = (
/obj/machinery/light/small{
dir = 8
},
@@ -59090,13 +57435,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYq" = (
+"bVr" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/engine/air{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYr" = (
+"bVs" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
@@ -59105,7 +57450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYs" = (
+"bVt" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "air_in";
@@ -59123,7 +57468,7 @@
dir = 5
},
/area/atmos)
-"bYt" = (
+"bVu" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -59135,7 +57480,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYu" = (
+"bVv" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
filter_type = "co2";
@@ -59153,7 +57498,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYv" = (
+"bVw" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "co2_in";
@@ -59169,7 +57514,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYw" = (
+"bVx" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59186,7 +57531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYx" = (
+"bVy" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59198,7 +57543,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYy" = (
+"bVz" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
filter_type = "plasma";
@@ -59213,7 +57558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYz" = (
+"bVA" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59228,7 +57573,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYA" = (
+"bVB" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59245,7 +57590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYB" = (
+"bVC" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
filter_type = "n2";
@@ -59260,7 +57605,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYC" = (
+"bVD" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59275,7 +57620,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYD" = (
+"bVE" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59288,7 +57633,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYE" = (
+"bVF" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59300,7 +57645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYF" = (
+"bVG" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -59316,13 +57661,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYG" = (
+"bVH" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYH" = (
+"bVI" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -59332,7 +57677,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYI" = (
+"bVJ" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
initialize_directions = 11
@@ -59342,7 +57687,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYJ" = (
+"bVK" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -59352,7 +57697,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bYK" = (
+"bVL" = (
/obj/machinery/light/small,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -59360,7 +57705,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bYL" = (
+"bVM" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -59381,7 +57726,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"bYM" = (
+"bVN" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -59403,7 +57748,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"bYN" = (
+"bVO" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -59415,7 +57760,7 @@
},
/turf/open/space,
/area/space)
-"bYO" = (
+"bVP" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -59430,7 +57775,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"bYP" = (
+"bVQ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -59446,7 +57791,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"bYQ" = (
+"bVR" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fitness Bathroom APC";
@@ -59468,7 +57813,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYR" = (
+"bVS" = (
/obj/machinery/camera{
c_tag = "Fitness Bathrooms";
dir = 4;
@@ -59488,7 +57833,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYS" = (
+"bVT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -59498,20 +57843,20 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bYT" = (
+"bVU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYU" = (
+"bVV" = (
/obj/structure/table,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYV" = (
+"bVW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute,
@@ -59526,7 +57871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bYW" = (
+"bVX" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -59536,12 +57881,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYX" = (
+"bVY" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYY" = (
+"bVZ" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -59551,7 +57896,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bYZ" = (
+"bWa" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 24
},
@@ -59559,13 +57904,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZa" = (
+"bWb" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZb" = (
+"bWc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 4;
external_pressure_bound = 0;
@@ -59581,7 +57926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZc" = (
+"bWd" = (
/obj/machinery/meter{
name = "Mixed Air Tank Out"
},
@@ -59593,7 +57938,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZd" = (
+"bWe" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1;
initialize_directions = 11
@@ -59602,7 +57947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZe" = (
+"bWf" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Air to Pure"
@@ -59611,7 +57956,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZf" = (
+"bWg" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -59621,14 +57966,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZg" = (
+"bWh" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZh" = (
+"bWi" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -59639,7 +57984,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZi" = (
+"bWj" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -59649,19 +57994,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZj" = (
+"bWk" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZk" = (
+"bWl" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZl" = (
+"bWm" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (WEST)";
@@ -59670,7 +58015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZm" = (
+"bWn" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -59678,7 +58023,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZn" = (
+"bWo" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -59694,7 +58039,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"bZo" = (
+"bWp" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -59714,7 +58059,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"bZp" = (
+"bWq" = (
/obj/machinery/light{
dir = 8
},
@@ -59727,7 +58072,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZq" = (
+"bWr" = (
/obj/machinery/door/airlock{
id_tag = "fb1"
},
@@ -59738,7 +58083,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZr" = (
+"bWs" = (
/obj/machinery/light/small,
/obj/structure/toilet{
icon_state = "toilet00";
@@ -59757,13 +58102,13 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"bZs" = (
+"bWt" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "Holodeck Projector Floor"
},
/area/holodeck/rec_center)
-"bZt" = (
+"bWu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/table,
/obj/machinery/light{
@@ -59776,7 +58121,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"bZu" = (
+"bWv" = (
/obj/machinery/camera{
c_tag = "Chapel West";
dir = 5;
@@ -59789,7 +58134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZv" = (
+"bWw" = (
/obj/machinery/light{
dir = 1
},
@@ -59800,7 +58145,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZw" = (
+"bWx" = (
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (NORTH)";
icon_state = "chapel";
@@ -59808,7 +58153,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZx" = (
+"bWy" = (
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (EAST)";
icon_state = "chapel";
@@ -59816,16 +58161,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZy" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/chapel/main)
-"bZz" = (
+"bWz" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -59833,7 +58169,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZA" = (
+"bWA" = (
/obj/structure/chair{
dir = 4
},
@@ -59841,7 +58177,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZB" = (
+"bWB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -59850,7 +58186,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZC" = (
+"bWC" = (
/obj/machinery/light{
dir = 1
},
@@ -59861,12 +58197,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZD" = (
+"bWD" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZE" = (
+"bWE" = (
/obj/machinery/light{
dir = 4
},
@@ -59874,7 +58210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZF" = (
+"bWF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -59888,7 +58224,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZG" = (
+"bWG" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -59897,7 +58233,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZH" = (
+"bWH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -59905,7 +58241,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZI" = (
+"bWI" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -59914,7 +58250,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZJ" = (
+"bWJ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -59928,7 +58264,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZK" = (
+"bWK" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -59937,7 +58273,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZL" = (
+"bWL" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -59947,7 +58283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZM" = (
+"bWM" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -59956,7 +58292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZN" = (
+"bWN" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -59968,7 +58304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZO" = (
+"bWO" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "mix_in";
@@ -59983,7 +58319,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZP" = (
+"bWP" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -59992,7 +58328,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZQ" = (
+"bWQ" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -60003,7 +58339,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZR" = (
+"bWR" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
@@ -60011,17 +58347,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"bZS" = (
+"bWS" = (
/turf/closed/wall,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"bZT" = (
+"bWT" = (
/turf/closed/wall,
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"bZU" = (
+"bWU" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
@@ -60031,7 +58367,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"bZV" = (
+"bWV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Service Asteroid Hallway 5";
@@ -60044,7 +58380,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"bZW" = (
+"bWW" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -60053,7 +58389,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZX" = (
+"bWX" = (
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (WEST)";
icon_state = "chapel";
@@ -60061,30 +58397,30 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZY" = (
+"bWY" = (
/turf/open/floor/plasteel/chapel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"bZZ" = (
+"bWZ" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"caa" = (
+"bXa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cab" = (
+"bXb" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cac" = (
+"bXc" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -60094,7 +58430,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cad" = (
+"bXd" = (
/obj/machinery/light/small,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -60102,7 +58438,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cae" = (
+"bXe" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -60112,7 +58448,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"caf" = (
+"bXf" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -60127,7 +58463,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cag" = (
+"bXg" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -60135,7 +58471,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cah" = (
+"bXh" = (
/obj/machinery/meter,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
@@ -60143,17 +58479,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cai" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"caj" = (
+"bXi" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -60161,7 +58487,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cak" = (
+"bXj" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/floor/plating{
@@ -60170,7 +58496,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cal" = (
+"bXk" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 1
@@ -60181,18 +58507,18 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cam" = (
+"bXl" = (
/turf/closed/wall/rust,
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"can" = (
+"bXm" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/rust,
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cao" = (
+"bXn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -60205,7 +58531,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cap" = (
+"bXo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -60216,7 +58542,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"caq" = (
+"bXp" = (
/obj/machinery/door/airlock{
id_tag = "fb2"
},
@@ -60229,7 +58555,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"car" = (
+"bXq" = (
/obj/machinery/light/small,
/obj/structure/toilet{
icon_state = "toilet00";
@@ -60247,7 +58573,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cas" = (
+"bXr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -60258,7 +58584,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cat" = (
+"bXs" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -60272,7 +58598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cau" = (
+"bXt" = (
/obj/machinery/door/airlock/glass{
name = "Chapel"
},
@@ -60282,7 +58608,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cav" = (
+"bXu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -60290,19 +58616,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"caw" = (
+"bXv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cax" = (
+"bXw" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cay" = (
+"bXx" = (
/obj/machinery/camera{
c_tag = "Chapel East";
dir = 9;
@@ -60312,7 +58638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"caz" = (
+"bXy" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chapel APC";
@@ -60334,7 +58660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"caA" = (
+"bXz" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -60345,7 +58671,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caB" = (
+"bXA" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "co2_sensor"
@@ -60354,7 +58680,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caC" = (
+"bXB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -60371,7 +58697,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caD" = (
+"bXC" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -60382,7 +58708,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caE" = (
+"bXD" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "tox_sensor"
@@ -60391,7 +58717,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caF" = (
+"bXE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -60409,7 +58735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caG" = (
+"bXF" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -60420,7 +58746,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caH" = (
+"bXG" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2o_sensor"
@@ -60429,7 +58755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caI" = (
+"bXH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -60446,7 +58772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caJ" = (
+"bXI" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -60457,7 +58783,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caK" = (
+"bXJ" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
@@ -60466,7 +58792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caL" = (
+"bXK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -60483,14 +58809,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"caM" = (
+"bXL" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"caN" = (
+"bXM" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/structure/barricade/wooden,
@@ -60500,14 +58826,14 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"caO" = (
+"bXN" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"caP" = (
+"bXO" = (
/obj/structure/chair/stool,
/obj/structure/sign/poster/contraband/hacking_guide{
pixel_x = 32
@@ -60518,7 +58844,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"caQ" = (
+"bXP" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
d1 = 1;
@@ -60527,7 +58853,7 @@
},
/turf/open/space,
/area/space)
-"caR" = (
+"bXQ" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -60540,7 +58866,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caS" = (
+"bXR" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -60551,7 +58877,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caT" = (
+"bXS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -60561,7 +58887,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caU" = (
+"bXT" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -60572,7 +58898,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caV" = (
+"bXU" = (
/obj/effect/turf_decal/stripes/end,
/obj/structure/cable/orange{
d2 = 8;
@@ -60588,7 +58914,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caW" = (
+"bXV" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (NORTHEAST)";
icon_state = "conveyor0";
@@ -60598,7 +58924,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caX" = (
+"bXW" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -60609,7 +58935,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"caY" = (
+"bXX" = (
/obj/machinery/door/airlock{
name = "Shower Room"
},
@@ -60619,7 +58945,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"caZ" = (
+"bXY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -60627,7 +58953,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cba" = (
+"bXZ" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Arena"
},
@@ -60635,7 +58961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbb" = (
+"bYa" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -60644,13 +58970,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbc" = (
+"bYb" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbd" = (
+"bYc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -60665,7 +58991,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbe" = (
+"bYd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -60678,7 +59004,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbf" = (
+"bYe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -60686,7 +59012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbg" = (
+"bYf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -60694,40 +59020,40 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbh" = (
+"bYg" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbi" = (
+"bYh" = (
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbj" = (
+"bYi" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbk" = (
+"bYj" = (
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbl" = (
+"bYk" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbm" = (
+"bYl" = (
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbn" = (
+"bYm" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide{
valve_open = 1
},
@@ -60735,19 +59061,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbo" = (
+"bYn" = (
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbp" = (
+"bYo" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbq" = (
+"bYp" = (
/obj/machinery/light/small{
dir = 1
},
@@ -60758,14 +59084,14 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbr" = (
+"bYq" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbs" = (
+"bYr" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -60775,13 +59101,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbt" = (
+"bYs" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cbu" = (
+"bYt" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -60789,7 +59115,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cbv" = (
+"bYu" = (
/obj/machinery/light/small{
dir = 4
},
@@ -60803,7 +59129,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cbw" = (
+"bYv" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/emergency,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -60813,7 +59139,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cbx" = (
+"bYw" = (
/obj/machinery/shower{
dir = 4
},
@@ -60823,7 +59149,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cby" = (
+"bYx" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -60831,7 +59157,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cbz" = (
+"bYy" = (
/obj/machinery/shower{
dir = 8
},
@@ -60841,14 +59167,14 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cbA" = (
+"bYz" = (
/obj/machinery/computer/holodeck,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbB" = (
+"bYA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -60856,7 +59182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbC" = (
+"bYB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60866,7 +59192,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbD" = (
+"bYC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60878,7 +59204,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cbE" = (
+"bYD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -60887,7 +59213,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbF" = (
+"bYE" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -60902,7 +59228,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cbG" = (
+"bYF" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -60914,7 +59240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbH" = (
+"bYG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60929,7 +59255,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbI" = (
+"bYH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60940,7 +59266,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbJ" = (
+"bYI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60948,7 +59274,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbK" = (
+"bYJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60959,7 +59285,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbL" = (
+"bYK" = (
/obj/structure/chair{
dir = 4
},
@@ -60970,7 +59296,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbM" = (
+"bYL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -60979,7 +59305,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbN" = (
+"bYM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -60987,38 +59313,38 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cbO" = (
+"bYN" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cbP" = (
+"bYO" = (
/obj/machinery/light/small,
/turf/open/floor/engine/co2{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbQ" = (
+"bYP" = (
/obj/machinery/light/small,
/turf/open/floor/engine/plasma{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbR" = (
+"bYQ" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2o{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbS" = (
+"bYR" = (
/obj/machinery/light/small,
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cbT" = (
+"bYS" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime{
@@ -61027,7 +59353,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbU" = (
+"bYT" = (
/obj/structure/grille/broken,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61035,7 +59361,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbV" = (
+"bYU" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61043,7 +59369,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cbW" = (
+"bYV" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 4
@@ -61052,7 +59378,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cbX" = (
+"bYW" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -61063,7 +59389,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cbY" = (
+"bYX" = (
/obj/machinery/conveyor/auto{
dir = 10;
icon_state = "conveyor0";
@@ -61074,7 +59400,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"cbZ" = (
+"bYY" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -61085,7 +59411,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cca" = (
+"bYZ" = (
/obj/item/weapon/bikehorn/rubberducky,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61093,7 +59419,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"ccb" = (
+"bZa" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -61104,7 +59430,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"ccc" = (
+"bZb" = (
/obj/structure/table,
/obj/item/weapon/paper{
desc = "";
@@ -61115,7 +59441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccd" = (
+"bZc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -61126,7 +59452,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cce" = (
+"bZd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/junction{
dir = 4;
@@ -61136,7 +59462,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccf" = (
+"bZe" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck Arena"
},
@@ -61148,7 +59474,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccg" = (
+"bZf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61157,7 +59483,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cch" = (
+"bZg" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -61166,7 +59492,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cci" = (
+"bZh" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -61185,7 +59511,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccj" = (
+"bZi" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -61197,19 +59523,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cck" = (
+"bZj" = (
/obj/machinery/light,
/turf/open/floor/plasteel/chapel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccl" = (
+"bZk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccm" = (
+"bZl" = (
/obj/machinery/light,
/turf/open/floor/plasteel/chapel{
tag = "icon-chapel (WEST)";
@@ -61218,7 +59544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccn" = (
+"bZm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -61233,14 +59559,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cco" = (
+"bZn" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ccp" = (
+"bZo" = (
/obj/structure/toilet{
icon_state = "toilet00";
dir = 8
@@ -61254,19 +59580,19 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ccq" = (
+"bZp" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"ccr" = (
+"bZq" = (
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ccs" = (
+"bZr" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61274,7 +59600,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cct" = (
+"bZs" = (
/obj/item/weapon/soap/nanotrasen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer{
@@ -61283,20 +59609,20 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"ccu" = (
+"bZt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ccv" = (
+"bZu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccw" = (
+"bZv" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -61305,7 +59631,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccx" = (
+"bZw" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -61323,7 +59649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccy" = (
+"bZx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61331,7 +59657,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccz" = (
+"bZy" = (
/obj/machinery/door/morgue{
name = "Confession Room"
},
@@ -61342,7 +59668,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccA" = (
+"bZz" = (
/obj/machinery/door/morgue{
name = "Confession Room";
req_access_txt = "22"
@@ -61354,7 +59680,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccB" = (
+"bZA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61362,7 +59688,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccC" = (
+"bZB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61371,7 +59697,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccD" = (
+"bZC" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -61382,7 +59708,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccE" = (
+"bZD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
name = "Chaplain's Office";
@@ -61395,7 +59721,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccF" = (
+"bZE" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -61404,7 +59730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccG" = (
+"bZF" = (
/obj/structure/mineral_door/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61412,7 +59738,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ccH" = (
+"bZG" = (
/obj/structure/sign/barsign,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61420,7 +59746,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ccI" = (
+"bZH" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -61429,7 +59755,7 @@
/area/maintenance/disposal{
name = "Eastern External Waste Belt"
})
-"ccJ" = (
+"bZI" = (
/obj/machinery/light,
/turf/open/floor/plasteel/freezer{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61437,7 +59763,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"ccK" = (
+"bZJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -61448,7 +59774,7 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"ccL" = (
+"bZK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -61459,7 +59785,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ccM" = (
+"bZL" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -61469,10 +59795,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccN" = (
+"bZM" = (
/turf/closed/mineral,
/area/chapel/main)
-"ccO" = (
+"bZN" = (
/obj/structure/chair{
dir = 4
},
@@ -61481,14 +59807,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccP" = (
+"bZO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccQ" = (
+"bZP" = (
/obj/structure/chair{
dir = 8
},
@@ -61497,7 +59823,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccR" = (
+"bZQ" = (
/obj/machinery/door/morgue{
name = "Confession Room";
req_access_txt = "22"
@@ -61506,7 +59832,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccS" = (
+"bZR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-applebush";
@@ -61516,7 +59842,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccT" = (
+"bZS" = (
/obj/machinery/light_switch{
pixel_y = 24
},
@@ -61525,13 +59851,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccU" = (
+"bZT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccV" = (
+"bZU" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -61541,12 +59867,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccW" = (
+"bZV" = (
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccX" = (
+"bZW" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -61555,7 +59881,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ccY" = (
+"bZX" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -61567,7 +59893,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"ccZ" = (
+"bZY" = (
/obj/machinery/door/window/northleft{
name = "Casket Storage";
req_access_txt = "22"
@@ -61579,7 +59905,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cda" = (
+"bZZ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -61588,7 +59914,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cdb" = (
+"caa" = (
/obj/machinery/computer/arcade,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -61597,7 +59923,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdc" = (
+"cab" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
@@ -61605,7 +59931,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdd" = (
+"cac" = (
/obj/item/chair/stool,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -61619,7 +59945,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cde" = (
+"cad" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
/turf/open/floor/wood{
@@ -61629,14 +59955,14 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdf" = (
+"cae" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdg" = (
+"caf" = (
/obj/machinery/vending/boozeomat{
req_access_txt = "0"
},
@@ -61646,7 +59972,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdh" = (
+"cag" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
@@ -61655,7 +59981,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdi" = (
+"cah" = (
/obj/structure/sign/mining{
pixel_y = -32
},
@@ -61670,12 +59996,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cdj" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"cdk" = (
+"cai" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -61686,7 +60007,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdl" = (
+"caj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61696,7 +60017,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdm" = (
+"cak" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61706,7 +60027,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdn" = (
+"cal" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61718,7 +60039,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdo" = (
+"cam" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61729,7 +60050,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdp" = (
+"can" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61741,7 +60062,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdq" = (
+"cao" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
@@ -61757,12 +60078,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cdr" = (
+"cap" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cds" = (
+"caq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Chapel Office";
@@ -61773,13 +60094,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdt" = (
+"car" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdu" = (
+"cas" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -61788,7 +60109,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdv" = (
+"cat" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -61796,7 +60117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdw" = (
+"cau" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -61806,13 +60127,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdx" = (
+"cav" = (
/obj/structure/closet/coffin,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cdy" = (
+"caw" = (
/obj/structure/chair/stool,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61820,7 +60141,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdz" = (
+"cax" = (
/obj/structure/table/wood/poker,
/obj/item/weapon/gun/ballistic/revolver/russian,
/turf/open/floor/wood{
@@ -61830,7 +60151,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdA" = (
+"cay" = (
/obj/structure/light_construct{
dir = 4
},
@@ -61842,7 +60163,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdB" = (
+"caz" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -61853,7 +60174,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cdC" = (
+"caA" = (
/obj/machinery/light/small{
dir = 1
},
@@ -61863,7 +60184,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdD" = (
+"caB" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -61876,7 +60197,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdE" = (
+"caC" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -61893,7 +60214,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdF" = (
+"caD" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61901,7 +60222,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdG" = (
+"caE" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -61909,7 +60230,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdH" = (
+"caF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 4;
@@ -61919,7 +60240,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cdI" = (
+"caG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -61938,7 +60259,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cdJ" = (
+"caH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -61957,7 +60278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cdK" = (
+"caI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -61976,20 +60297,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cdL" = (
+"caJ" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cdM" = (
+"caK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdN" = (
+"caL" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
/obj/structure/disposalpipe/segment,
@@ -61997,7 +60318,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdO" = (
+"caM" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/obj/item/stack/packageWrap,
@@ -62006,13 +60327,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdP" = (
+"caN" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdQ" = (
+"caO" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -62027,7 +60348,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cdR" = (
+"caP" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -62044,7 +60365,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdS" = (
+"caQ" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
/turf/open/floor/wood{
@@ -62053,7 +60374,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cdT" = (
+"caR" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating{
@@ -62062,7 +60383,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdU" = (
+"caS" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -62075,7 +60396,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdV" = (
+"caT" = (
/obj/structure/disposalpipe/junction,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62083,7 +60404,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdW" = (
+"caU" = (
/obj/structure/grille/broken,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62091,7 +60412,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdX" = (
+"caV" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -62101,25 +60422,25 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdY" = (
+"caW" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cdZ" = (
+"caX" = (
/turf/closed/mineral,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cea" = (
+"caY" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ceb" = (
+"caZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -62130,13 +60451,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cec" = (
+"cba" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ced" = (
+"cbb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -62145,7 +60466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cee" = (
+"cbc" = (
/obj/structure/table/wood,
/obj/item/weapon/nullrod,
/obj/structure/disposalpipe/segment,
@@ -62153,13 +60474,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cef" = (
+"cbd" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ceg" = (
+"cbe" = (
/obj/structure/chair/wood/wings{
icon_state = "wooden_chair_wings";
dir = 1
@@ -62169,7 +60490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ceh" = (
+"cbf" = (
/obj/machinery/newscaster{
pixel_x = 32
},
@@ -62177,7 +60498,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cei" = (
+"cbg" = (
/obj/structure/closet/coffin,
/obj/machinery/camera{
c_tag = "Chapel Coffins";
@@ -62188,7 +60509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cej" = (
+"cbh" = (
/obj/item/chair/stool,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62196,7 +60517,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cek" = (
+"cbi" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 0;
@@ -62210,7 +60531,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cel" = (
+"cbj" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -62223,7 +60544,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cem" = (
+"cbk" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
@@ -62234,7 +60555,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cen" = (
+"cbl" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -62246,7 +60567,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceo" = (
+"cbm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62259,7 +60580,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cep" = (
+"cbn" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "12"
@@ -62273,7 +60594,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceq" = (
+"cbo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62287,7 +60608,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cer" = (
+"cbp" = (
/obj/machinery/light/small,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62298,7 +60619,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ces" = (
+"cbq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62309,26 +60630,26 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cet" = (
+"cbr" = (
/obj/structure/glowshroom/single,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating/asteroid,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ceu" = (
+"cbs" = (
/turf/open/floor/plating/asteroid,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cev" = (
+"cbt" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cew" = (
+"cbu" = (
/obj/structure/falsewall{
desc = "A huge chunk of metal used to separate rooms. Nothing odd here, sir.";
name = "inconspicuous wall"
@@ -62337,7 +60658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cex" = (
+"cbv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -62346,19 +60667,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cey" = (
+"cbw" = (
/obj/machinery/light,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cez" = (
+"cbx" = (
/obj/structure/closet/wardrobe/chaplain_black,
/turf/open/floor/plasteel/grimy{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ceA" = (
+"cby" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -62375,7 +60696,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceB" = (
+"cbz" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -62388,7 +60709,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceC" = (
+"cbA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -62403,7 +60724,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ceD" = (
+"cbB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -62416,7 +60737,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ceE" = (
+"cbC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -62428,7 +60749,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"ceF" = (
+"cbD" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62436,7 +60757,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceG" = (
+"cbE" = (
/obj/item/chair,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62444,7 +60765,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceH" = (
+"cbF" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -62457,7 +60778,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceI" = (
+"cbG" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -62469,7 +60790,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceJ" = (
+"cbH" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -62481,7 +60802,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceK" = (
+"cbI" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62489,13 +60810,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ceL" = (
+"cbJ" = (
/obj/structure/glowshroom/single,
/turf/open/floor/plating/asteroid,
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"ceM" = (
+"cbK" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -62508,7 +60829,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceN" = (
+"cbL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62529,7 +60850,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceO" = (
+"cbM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -62545,7 +60866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceP" = (
+"cbN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -62563,7 +60884,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceQ" = (
+"cbO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -62581,7 +60902,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceR" = (
+"cbP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -62601,7 +60922,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceS" = (
+"cbQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -62609,7 +60930,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"ceT" = (
+"cbR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -62624,7 +60945,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ceU" = (
+"cbS" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -62639,7 +60960,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ceV" = (
+"cbT" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -62655,7 +60976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"ceW" = (
+"cbU" = (
/obj/machinery/door/window/northleft{
name = "Chapel Mail";
req_access_txt = "22"
@@ -62667,13 +60988,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ceX" = (
+"cbV" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ceY" = (
+"cbW" = (
/obj/machinery/door/airlock{
name = "Crematorium";
req_access_txt = "22"
@@ -62682,7 +61003,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"ceZ" = (
+"cbX" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc{
dir = 2;
@@ -62696,7 +61017,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cfa" = (
+"cbY" = (
/obj/machinery/computer/slot_machine,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62704,7 +61025,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cfb" = (
+"cbZ" = (
/obj/machinery/computer/slot_machine,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -62718,7 +61039,7 @@
/area/crew_quarters/bar{
name = "Gambler's Den"
})
-"cfc" = (
+"cca" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -62730,7 +61051,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfd" = (
+"ccb" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -62743,7 +61064,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfe" = (
+"ccc" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -62755,7 +61076,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cff" = (
+"ccd" = (
/obj/machinery/light/small,
/obj/structure/closet/toolcloset,
/turf/open/floor/plating{
@@ -62764,7 +61085,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfg" = (
+"cce" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62772,7 +61093,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfh" = (
+"ccf" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -62781,7 +61102,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cfi" = (
+"ccg" = (
/obj/machinery/light{
dir = 8
},
@@ -62791,7 +61112,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cfj" = (
+"cch" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -62805,7 +61126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cfk" = (
+"cci" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -62817,7 +61138,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfl" = (
+"ccj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -62826,7 +61147,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfm" = (
+"cck" = (
/obj/structure/bodycontainer/crematorium{
id = "creamed"
},
@@ -62834,12 +61155,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfn" = (
+"ccl" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfo" = (
+"ccm" = (
/obj/machinery/camera{
c_tag = "Crematorium";
dir = 9;
@@ -62854,7 +61175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfp" = (
+"ccn" = (
/obj/structure/plasticflaps,
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
@@ -62866,7 +61187,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfq" = (
+"cco" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -62879,7 +61200,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfr" = (
+"ccp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/floorgrime{
@@ -62888,7 +61209,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfs" = (
+"ccq" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62896,7 +61217,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cft" = (
+"ccr" = (
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -62904,7 +61225,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfu" = (
+"ccs" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/clown,
/turf/open/floor/plating{
@@ -62913,7 +61234,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfv" = (
+"cct" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/bananalamp,
/obj/item/device/instrument/violin,
@@ -62927,7 +61248,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfw" = (
+"ccu" = (
/obj/structure/mineral_door/wood{
name = "Secret Clown HQ"
},
@@ -62937,7 +61258,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfx" = (
+"ccv" = (
/obj/machinery/light/small{
dir = 4
},
@@ -62947,7 +61268,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cfy" = (
+"ccw" = (
/obj/structure/sign/map/left/ceres{
pixel_x = -32
},
@@ -62957,7 +61278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cfz" = (
+"ccx" = (
/obj/machinery/light/small{
dir = 8
},
@@ -62972,7 +61293,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cfA" = (
+"ccy" = (
/obj/machinery/button/crematorium{
id = "creamed";
pixel_x = -24
@@ -62981,20 +61302,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfB" = (
+"ccz" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfC" = (
+"ccA" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cfD" = (
+"ccB" = (
/obj/structure/closet/crate{
name = "top secret clown supplies"
},
@@ -63012,14 +61333,14 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfE" = (
+"ccC" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfF" = (
+"ccD" = (
/mob/living/carbon/monkey{
name = "Mr.Teeny"
},
@@ -63029,7 +61350,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfG" = (
+"ccE" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -63037,7 +61358,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfH" = (
+"ccF" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -63046,24 +61367,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cfI" = (
+"ccG" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"cfJ" = (
+"ccH" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"cfK" = (
+"ccI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"cfL" = (
+"ccJ" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -63072,7 +61393,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cfM" = (
+"ccK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -63082,7 +61403,7 @@
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"cfN" = (
+"ccL" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -63100,7 +61421,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cfO" = (
+"ccM" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
@@ -63108,13 +61429,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cfP" = (
-/turf/open/floor/engine{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- name = "reinforced floor"
- },
-/area/hallway/primary/port)
-"cfQ" = (
+"ccN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -63129,7 +61444,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cfR" = (
+"ccO" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -63151,7 +61466,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cfS" = (
+"ccP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -63166,7 +61481,7 @@
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"cfT" = (
+"ccQ" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -63177,7 +61492,7 @@
},
/turf/open/space,
/area/space)
-"cfU" = (
+"ccR" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -63198,7 +61513,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"cfV" = (
+"ccS" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -63220,7 +61535,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"cfW" = (
+"ccT" = (
/obj/structure/table,
/obj/item/toy/figure/clown,
/turf/open/floor/plating{
@@ -63229,7 +61544,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfX" = (
+"ccU" = (
/obj/item/weapon/grown/bananapeel{
name = "state-of-the-art clown home defense peel"
},
@@ -63244,7 +61559,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfY" = (
+"ccV" = (
/obj/structure/closet/crate/bin,
/obj/item/clothing/mask/gas/mime,
/turf/open/floor/plating{
@@ -63253,7 +61568,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cfZ" = (
+"ccW" = (
/obj/machinery/vending/autodrobe{
desc = "A vending machine for costumes. The machine seems blessed by some higher power, allowing it to function without power. HONK!";
use_power = 0
@@ -63264,7 +61579,7 @@
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"cga" = (
+"ccX" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -63280,7 +61595,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cgb" = (
+"ccY" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -63300,7 +61615,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cgc" = (
+"ccZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/glass_external{
@@ -63312,7 +61627,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgd" = (
+"cda" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -63322,17 +61637,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/space)
-"cge" = (
+"cdb" = (
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgf" = (
-/obj/item/weapon/pickaxe/mini,
-/turf/open/floor/plating/asteroid/airless,
-/area/space)
-"cgg" = (
+"cdc" = (
/obj/machinery/light/small{
dir = 4
},
@@ -63343,7 +61654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgh" = (
+"cdd" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -63357,23 +61668,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgi" = (
+"cde" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Docking Asteroid"
})
-"cgj" = (
+"cdf" = (
/turf/closed/mineral/random/low_chance,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgk" = (
+"cdg" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgl" = (
+"cdh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -63388,19 +61699,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgm" = (
+"cdi" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgn" = (
+"cdj" = (
/obj/item/weapon/ore/iron,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgo" = (
+"cdk" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -63412,7 +61723,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgp" = (
+"cdl" = (
/obj/machinery/light{
dir = 8
},
@@ -63423,7 +61734,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cgq" = (
+"cdm" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -63431,7 +61742,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgr" = (
+"cdn" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -63439,7 +61750,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgs" = (
+"cdo" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
name = "Mix Input";
@@ -63453,7 +61764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgt" = (
+"cdp" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -63467,29 +61778,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgu" = (
+"cdq" = (
/turf/closed/mineral/random/labormineral,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cgv" = (
+"cdr" = (
/turf/closed/mineral/random/low_chance,
/area/mine/unexplored{
name = "Civilian Asteroid"
})
-"cgw" = (
+"cds" = (
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgx" = (
-/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "the bone zone"
- })
-"cgy" = (
+"cdt" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -63505,7 +61811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgz" = (
+"cdu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -63518,7 +61824,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgA" = (
+"cdv" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -63530,7 +61836,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgB" = (
+"cdw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -63541,7 +61847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgC" = (
+"cdx" = (
/obj/structure/ore_box,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -63549,7 +61855,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cgD" = (
+"cdy" = (
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
/obj/item/weapon/ore/iron,
@@ -63559,19 +61865,19 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cgE" = (
+"cdz" = (
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgF" = (
+"cdA" = (
/obj/structure/ore_box,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgG" = (
+"cdB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -63586,7 +61892,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgH" = (
+"cdC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -63594,7 +61900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgI" = (
+"cdD" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -63603,7 +61909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgJ" = (
+"cdE" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -63617,7 +61923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgK" = (
+"cdF" = (
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/astplate{
@@ -63626,58 +61932,50 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cgL" = (
+"cdG" = (
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cgM" = (
+"cdH" = (
/obj/item/device/flashlight/lantern,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cgN" = (
+"cdI" = (
/turf/closed/mineral,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cgO" = (
+"cdJ" = (
/turf/closed/mineral/random/low_chance,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cgP" = (
+"cdK" = (
/obj/item/device/flashlight/lantern,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgQ" = (
+"cdL" = (
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/asteroid,
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cgR" = (
+"cdM" = (
/turf/closed/mineral/random/labormineral,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cgS" = (
+"cdN" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cgT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cgU" = (
+"cdO" = (
/obj/machinery/light/small{
dir = 8
},
@@ -63688,13 +61986,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cgV" = (
-/turf/open/floor/engine{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- name = "reinforced floor"
- },
-/area/hallway/primary/aft)
-"cgW" = (
+"cdP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Service-Research Bridge";
@@ -63708,20 +62000,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"cgX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"cgY" = (
+"cdQ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -63733,13 +62012,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cgZ" = (
+"cdR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cha" = (
+"cdS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -63751,40 +62030,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chb" = (
+"cdT" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"chc" = (
+"cdU" = (
/turf/closed/mineral,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"chd" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- name = "reinforced floor"
- },
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"che" = (
+"cdV" = (
/obj/machinery/power/solar{
id = "portsolar";
name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"chf" = (
+"cdW" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chg" = (
+"cdX" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
name = "Mix Output";
@@ -63798,7 +62068,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chh" = (
+"cdY" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -63811,10 +62081,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chi" = (
+"cdZ" = (
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"chj" = (
+"cea" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -63829,7 +62099,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chk" = (
+"ceb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -63844,7 +62114,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chl" = (
+"cec" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -63858,29 +62128,15 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chm" = (
+"ced" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"chn" = (
+"cee" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/escape)
-"cho" = (
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- name = "reinforced floor"
- },
-/area/hallway/primary/aft)
-"chp" = (
+"cef" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -63890,21 +62146,21 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chq" = (
+"ceg" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chr" = (
+"ceh" = (
/turf/closed/wall/r_wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chs" = (
+"cei" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -63923,7 +62179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cht" = (
+"cej" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -63934,7 +62190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chu" = (
+"cek" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -63953,7 +62209,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chv" = (
+"cel" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -63971,7 +62227,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chw" = (
+"cem" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -63990,20 +62246,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chx" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/escape)
-"chy" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"chz" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/darkblue,
-/area/shuttle/escape)
-"chA" = (
+"cen" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -64017,15 +62260,12 @@
dir = 1
},
/area/shuttle/escape)
-"chB" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"chC" = (
+"ceo" = (
/obj/structure/lattice,
/obj/item/weapon/wirecutters,
/turf/open/space,
/area/space)
-"chD" = (
+"cep" = (
/obj/structure/closet/crate{
name = "solar pack crate"
},
@@ -64050,7 +62290,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chE" = (
+"ceq" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -64068,7 +62308,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chF" = (
+"cer" = (
/obj/machinery/power/smes,
/obj/structure/cable/orange{
d2 = 2;
@@ -64087,7 +62327,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chG" = (
+"ces" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64101,17 +62341,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chH" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"chI" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"chJ" = (
+"cet" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/mineral/plastitanium/brig{
@@ -64121,22 +62351,12 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"chK" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"chL" = (
-/obj/machinery/computer/security,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"chM" = (
+"ceu" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"chN" = (
+"cev" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -64151,7 +62371,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"chO" = (
+"cew" = (
/obj/structure/cable{
icon_state = "0-2";
pixel_y = 1;
@@ -64171,7 +62391,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"chP" = (
+"cex" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -64186,7 +62406,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"chQ" = (
+"cey" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64205,7 +62425,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chR" = (
+"cez" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64218,7 +62438,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chS" = (
+"ceA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64237,7 +62457,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chT" = (
+"ceB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64255,7 +62475,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chU" = (
+"ceC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -64267,7 +62487,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chV" = (
+"ceD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -64279,7 +62499,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"chW" = (
+"ceE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64297,12 +62517,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"chX" = (
+"ceF" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chY" = (
+"ceG" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -64311,33 +62531,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"chZ" = (
+"ceH" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cia" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/light,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cib" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cic" = (
+"ceI" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/structure/reagent_dispensers/peppertank{
@@ -64349,7 +62550,7 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"cid" = (
+"ceJ" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
@@ -64361,7 +62562,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"cie" = (
+"ceK" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred (NORTH)";
@@ -64370,7 +62571,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"cif" = (
+"ceL" = (
/obj/structure/closet/secure_closet/miner{
locked = 0
},
@@ -64381,7 +62582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cig" = (
+"ceM" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -64389,20 +62590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cih" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Aux Base Construction 2";
- dir = 6;
- icon_state = "camera"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/shuttle/auxillary_base)
-"cii" = (
+"ceN" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -64410,7 +62598,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cij" = (
+"ceO" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -64424,7 +62612,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cik" = (
+"ceP" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -64453,7 +62641,7 @@
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"cil" = (
+"ceQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -64466,24 +62654,24 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"cim" = (
+"ceR" = (
/obj/structure/lattice,
/obj/structure/sign/mining{
pixel_y = -32
},
/turf/open/space,
/area/space)
-"cin" = (
+"ceS" = (
/obj/structure/lattice/catwalk,
/obj/item/weapon/wrench,
/turf/open/space,
/area/space)
-"cio" = (
+"ceT" = (
/obj/structure/lattice,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/space,
/area/space)
-"cip" = (
+"ceU" = (
/obj/machinery/power/solar_control{
id = "portsolar";
name = "Aft Asteroid Solar Control";
@@ -64496,7 +62684,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"ciq" = (
+"ceV" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -64509,7 +62697,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"cir" = (
+"ceW" = (
/obj/machinery/power/apc{
dir = 4;
name = "Aft Asteroid Solar APC";
@@ -64536,7 +62724,7 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"cis" = (
+"ceX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64554,7 +62742,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cit" = (
+"ceY" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -64564,7 +62752,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ciu" = (
+"ceZ" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHWEST)";
@@ -64573,7 +62761,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"civ" = (
+"cfa" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -64581,7 +62769,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciw" = (
+"cfb" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
@@ -64592,7 +62780,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cix" = (
+"cfc" = (
/obj/structure/chair,
/obj/machinery/camera{
c_tag = "Docking Security Holding Area";
@@ -64605,7 +62793,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciy" = (
+"cfd" = (
/obj/structure/chair,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -64618,7 +62806,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciz" = (
+"cfe" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHEAST)";
@@ -64627,7 +62815,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciA" = (
+"cff" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -64635,7 +62823,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciB" = (
+"cfg" = (
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred (NORTH)";
icon_state = "darkred";
@@ -64643,7 +62831,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ciC" = (
+"cfh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -64653,7 +62841,7 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"ciD" = (
+"cfi" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -64671,7 +62859,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"ciE" = (
+"cfj" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -64693,7 +62881,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"ciF" = (
+"cfk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -64708,7 +62896,7 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"ciG" = (
+"cfl" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -64716,12 +62904,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ciH" = (
+"cfm" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ciI" = (
+"cfn" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -64729,7 +62917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ciJ" = (
+"cfo" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -64743,7 +62931,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"ciK" = (
+"cfp" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -64764,7 +62952,7 @@
/obj/machinery/light/small,
/turf/open/floor/plasteel,
/area/storage/tech)
-"ciL" = (
+"cfq" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -64783,7 +62971,7 @@
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"ciM" = (
+"cfr" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -64804,7 +62992,7 @@
/obj/machinery/light/small,
/turf/open/floor/plasteel,
/area/storage/tech)
-"ciN" = (
+"cfs" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -64818,14 +63006,14 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/storage/tech)
-"ciO" = (
+"cft" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"ciP" = (
+"cfu" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -64836,12 +63024,12 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"ciQ" = (
+"cfv" = (
/obj/item/solar_assembly,
/obj/item/stack/sheet/glass,
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"ciR" = (
+"cfw" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Solars";
req_access_txt = "10;11;12"
@@ -64858,20 +63046,20 @@
/area/maintenance/portsolar{
name = "Aft Asteroid Solar Maintenance"
})
-"ciS" = (
+"cfx" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ciT" = (
+"cfy" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciU" = (
+"cfz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -64879,7 +63067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciV" = (
+"cfA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -64890,64 +63078,41 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciW" = (
+"cfB" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciX" = (
+"cfC" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciY" = (
+"cfD" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 4;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ciZ" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"cja" = (
+"cfE" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cjb" = (
+"cfF" = (
/turf/open/floor/mineral/plastitanium/brig{
dir = 8;
floor_tile = /obj/item/stack/tile/plasteel;
icon_state = "darkred"
},
/area/shuttle/escape)
-"cjc" = (
+"cfG" = (
/turf/open/floor/mineral/plastitanium/brig{
icon_state = "darkredfull"
},
/area/shuttle/escape)
-"cjd" = (
-/turf/open/floor/mineral/plastitanium/brig{
- dir = 4;
- floor_tile = /obj/item/stack/tile/plasteel;
- icon_state = "darkred"
- },
-/area/shuttle/escape)
-"cje" = (
-/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)
-"cjf" = (
+"cfH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -64955,12 +63120,12 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cjg" = (
+"cfI" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjh" = (
+"cfJ" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -64969,13 +63134,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cji" = (
+"cfK" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjj" = (
+"cfL" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -64985,7 +63150,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjk" = (
+"cfM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -64998,12 +63163,12 @@
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cjl" = (
+"cfN" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjm" = (
+"cfO" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Tech Storage";
req_access_txt = "19;23"
@@ -65018,7 +63183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjn" = (
+"cfP" = (
/obj/structure/ore_box,
/obj/effect/turf_decal/delivery,
/obj/effect/decal/cleanable/cobweb,
@@ -65028,7 +63193,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjo" = (
+"cfQ" = (
/obj/structure/ore_box,
/obj/effect/turf_decal/delivery,
/obj/machinery/light/small{
@@ -65040,7 +63205,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjp" = (
+"cfR" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe,
/obj/item/weapon/pickaxe,
@@ -65052,7 +63217,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjq" = (
+"cfS" = (
/obj/machinery/light/small{
dir = 4
},
@@ -65062,11 +63227,11 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjr" = (
+"cfT" = (
/obj/item/solar_assembly,
/turf/open/floor/plasteel/airless/solarpanel,
/area/space)
-"cjs" = (
+"cfU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -65081,7 +63246,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjt" = (
+"cfV" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -65093,7 +63258,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cju" = (
+"cfW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -65104,7 +63269,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cjv" = (
+"cfX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -65112,19 +63277,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cjw" = (
+"cfY" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjx" = (
+"cfZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cjy" = (
+"cga" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -65132,14 +63297,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cjz" = (
+"cgb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cjA" = (
+"cgc" = (
/obj/structure/chair{
dir = 4
},
@@ -65150,10 +63315,10 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cjB" = (
+"cgd" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"cjC" = (
+"cge" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Brig";
req_access_txt = "2"
@@ -65162,14 +63327,7 @@
icon_state = "darkredfull"
},
/area/shuttle/escape)
-"cjD" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"cjE" = (
+"cgf" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 2
},
@@ -65178,7 +63336,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjF" = (
+"cgg" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
icon_state = "neutralcorner";
@@ -65186,12 +63344,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjG" = (
+"cgh" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjH" = (
+"cgi" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -65199,7 +63357,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cjI" = (
+"cgj" = (
/obj/machinery/light/small{
dir = 8
},
@@ -65207,7 +63365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjJ" = (
+"cgk" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -65223,7 +63381,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjK" = (
+"cgl" = (
/obj/machinery/power/apc{
dir = 1;
name = "Tech Storage APC";
@@ -65237,10 +63395,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cjL" = (
+"cgm" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"cjM" = (
+"cgn" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -65253,7 +63411,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjN" = (
+"cgo" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -65267,7 +63425,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjO" = (
+"cgp" = (
/obj/machinery/power/apc{
dir = 1;
name = "Mining Storage APC";
@@ -65283,7 +63441,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjP" = (
+"cgq" = (
/obj/machinery/power/port_gen/pacman,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/floorgrime{
@@ -65292,7 +63450,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjQ" = (
+"cgr" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -65303,12 +63461,12 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cjR" = (
+"cgs" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/sheet/glass,
/turf/open/space,
/area/space)
-"cjS" = (
+"cgt" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe,
/obj/effect/spawner/lootdrop/maintenance,
@@ -65318,7 +63476,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjT" = (
+"cgu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -65330,47 +63488,47 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjU" = (
+"cgv" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjV" = (
+"cgw" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjW" = (
+"cgx" = (
/obj/structure/rack,
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjX" = (
+"cgy" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cjY" = (
+"cgz" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 10;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cjZ" = (
+"cgA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cka" = (
+"cgB" = (
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
icon_state = "redcorner";
@@ -65378,7 +63536,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckb" = (
+"cgC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -65386,7 +63544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckc" = (
+"cgD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -65394,7 +63552,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckd" = (
+"cgE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -65402,14 +63560,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cke" = (
+"cgF" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 6;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckf" = (
+"cgG" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Security Escape Airlock";
@@ -65419,25 +63577,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckg" = (
+"cgH" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckh" = (
+"cgI" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"cki" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"ckj" = (
+"cgJ" = (
/obj/structure/chair{
dir = 1
},
@@ -65448,7 +63600,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ckk" = (
+"cgK" = (
/obj/structure/chair{
dir = 1
},
@@ -65459,7 +63611,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ckl" = (
+"cgL" = (
/obj/structure/table,
/obj/item/weapon/storage/box/teargas,
/obj/item/weapon/storage/box/zipties,
@@ -65470,7 +63622,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"ckm" = (
+"cgM" = (
/obj/machinery/light/small{
dir = 4
},
@@ -65480,7 +63632,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckn" = (
+"cgN" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -65496,7 +63648,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cko" = (
+"cgO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -65512,7 +63664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckp" = (
+"cgP" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -65521,7 +63673,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ckq" = (
+"cgQ" = (
/obj/docking_port/mobile/auxillary_base{
dheight = 4;
dir = 4;
@@ -65537,7 +63689,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"ckr" = (
+"cgR" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -65546,7 +63698,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cks" = (
+"cgS" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -65555,7 +63707,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckt" = (
+"cgT" = (
/obj/structure/table,
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/storage/bag/ore,
@@ -65565,7 +63717,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cku" = (
+"cgU" = (
/obj/structure/table,
/obj/item/clothing/glasses/meson,
/obj/item/weapon/paper{
@@ -65578,7 +63730,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"ckv" = (
+"cgV" = (
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -65586,14 +63738,14 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"ckw" = (
+"cgW" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"ckx" = (
+"cgX" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -65601,7 +63753,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"cky" = (
+"cgY" = (
/obj/structure/sign/mining{
pixel_y = 32
},
@@ -65612,7 +63764,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"ckz" = (
+"cgZ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -65620,7 +63772,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckA" = (
+"cha" = (
/obj/machinery/power/apc{
dir = 8;
name = "Arrival Hallway Maintenance APC";
@@ -65642,7 +63794,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckB" = (
+"chb" = (
/obj/machinery/light/small{
dir = 1
},
@@ -65652,7 +63804,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckC" = (
+"chc" = (
/obj/machinery/computer/station_alert,
/obj/structure/cable/orange{
d2 = 2;
@@ -65664,7 +63816,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckD" = (
+"chd" = (
/obj/machinery/camera{
c_tag = "Arrivals SMES";
dir = 6;
@@ -65676,7 +63828,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckE" = (
+"che" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating{
@@ -65685,13 +63837,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckF" = (
+"chf" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckG" = (
+"chg" = (
/obj/machinery/light/small{
dir = 1
},
@@ -65699,13 +63851,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckH" = (
+"chh" = (
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"ckI" = (
+"chi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -65714,7 +63866,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckJ" = (
+"chj" = (
/obj/machinery/door/airlock/glass_security{
name = "Holding Area";
req_access_txt = "2"
@@ -65724,18 +63876,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ckK" = (
+"chk" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/escape)
-"ckL" = (
-/obj/structure/table,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"ckM" = (
+"chl" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 1
},
@@ -65744,7 +63888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckN" = (
+"chm" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -65753,7 +63897,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckO" = (
+"chn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -65764,7 +63908,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckP" = (
+"cho" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -65774,7 +63918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckQ" = (
+"chp" = (
/obj/machinery/light/small{
dir = 8
},
@@ -65789,7 +63933,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ckR" = (
+"chq" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
@@ -65802,7 +63946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckS" = (
+"chr" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
@@ -65811,7 +63955,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckT" = (
+"chs" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
@@ -65823,7 +63967,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckU" = (
+"cht" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -65834,7 +63978,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckV" = (
+"chu" = (
/obj/structure/table,
/obj/machinery/cell_charger{
pixel_y = 5
@@ -65847,7 +63991,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckW" = (
+"chv" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = -3;
@@ -65862,7 +64006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckX" = (
+"chw" = (
/obj/structure/table,
/obj/item/weapon/screwdriver{
pixel_y = 16
@@ -65872,7 +64016,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"ckY" = (
+"chx" = (
/obj/structure/table,
/obj/item/weapon/aiModule/reset,
/obj/machinery/light{
@@ -65883,7 +64027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"ckZ" = (
+"chy" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
@@ -65891,13 +64035,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cla" = (
+"chz" = (
/obj/machinery/computer/upload/borg,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"clb" = (
+"chA" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -65905,13 +64049,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"clc" = (
+"chB" = (
/obj/machinery/computer/upload/ai,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cld" = (
+"chC" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4
@@ -65920,7 +64064,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cle" = (
+"chD" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -65937,7 +64081,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"clf" = (
+"chE" = (
/obj/machinery/light/small,
/obj/structure/table,
/turf/open/floor/plating{
@@ -65946,7 +64090,7 @@
/area/quartermaster/miningdock{
name = "Abandoned Mining Storage"
})
-"clg" = (
+"chF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -65958,7 +64102,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clh" = (
+"chG" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -65970,7 +64114,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cli" = (
+"chH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -65992,7 +64136,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clj" = (
+"chI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66004,7 +64148,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clk" = (
+"chJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -66016,14 +64160,14 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cll" = (
+"chK" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clm" = (
+"chL" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -66036,7 +64180,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cln" = (
+"chM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66048,7 +64192,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clo" = (
+"chN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66061,7 +64205,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clp" = (
+"chO" = (
/obj/machinery/power/apc{
dir = 2;
name = "Auxillary Construction APC";
@@ -66085,7 +64229,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"clq" = (
+"chP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66098,13 +64242,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clr" = (
+"chQ" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cls" = (
+"chR" = (
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23;
@@ -66117,7 +64261,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clt" = (
+"chS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/escape{
tag = "icon-escape (NORTH)";
@@ -66126,7 +64270,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clu" = (
+"chT" = (
/turf/open/floor/plasteel/escape/corner{
tag = "icon-escapecorner (NORTH)";
icon_state = "escapecorner";
@@ -66134,13 +64278,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clv" = (
+"chU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clw" = (
+"chV" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -66148,7 +64292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clx" = (
+"chW" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -66156,7 +64300,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cly" = (
+"chX" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock"
},
@@ -66180,10 +64324,7 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"clz" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"clA" = (
+"chY" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -66192,7 +64333,7 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"clB" = (
+"chZ" = (
/obj/structure/tank_dispenser/oxygen,
/obj/machinery/light/small{
dir = 8
@@ -66201,7 +64342,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clC" = (
+"cia" = (
/obj/structure/rack,
/obj/item/clothing/suit/space/fragile,
/obj/item/clothing/head/helmet/space/fragile,
@@ -66209,7 +64350,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clD" = (
+"cib" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -66222,13 +64363,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clE" = (
+"cic" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clF" = (
+"cid" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Research Asteroid Hallway 1";
@@ -66242,7 +64383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clG" = (
+"cie" = (
/obj/machinery/light{
dir = 4
},
@@ -66253,7 +64394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clH" = (
+"cif" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -66268,7 +64409,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"clI" = (
+"cig" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/filter,
@@ -66285,12 +64426,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clJ" = (
+"cih" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clK" = (
+"cii" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -66302,7 +64443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clL" = (
+"cij" = (
/obj/structure/table,
/obj/item/weapon/electronics/apc,
/obj/item/weapon/electronics/airlock,
@@ -66313,7 +64454,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"clM" = (
+"cik" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/quarantine,
/obj/machinery/camera/motion{
@@ -66323,17 +64464,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"clN" = (
+"cil" = (
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"clO" = (
+"cim" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"clP" = (
+"cin" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/freeform,
/obj/structure/sign/kiddieplaque{
@@ -66346,7 +64487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"clQ" = (
+"cio" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -66358,7 +64499,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clR" = (
+"cip" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable/orange,
/turf/open/floor/plasteel/floorgrime{
@@ -66367,7 +64508,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clS" = (
+"ciq" = (
/obj/machinery/power/terminal{
tag = "icon-term (WEST)";
icon_state = "term";
@@ -66386,7 +64527,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clT" = (
+"cir" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -66399,7 +64540,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clU" = (
+"cis" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -66412,7 +64553,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clV" = (
+"cit" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -66423,12 +64564,12 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"clW" = (
+"ciu" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"clX" = (
+"civ" = (
/obj/structure/chair{
dir = 4
},
@@ -66439,7 +64580,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clY" = (
+"ciw" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -66448,35 +64589,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"clZ" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/shuttle/escape)
-"cma" = (
+"cix" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTH)";
icon_state = "neutral";
dir = 1
},
/area/shuttle/escape)
-"cmb" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"cmc" = (
+"ciy" = (
/obj/structure/table,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmd" = (
+"ciz" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cme" = (
+"ciA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (NORTH)";
@@ -66485,7 +64616,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmf" = (
+"ciB" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -66503,7 +64634,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmg" = (
+"ciC" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -66519,7 +64650,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmh" = (
+"ciD" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/clothing/glasses/meson,
@@ -66530,7 +64661,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmi" = (
+"ciE" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/transmitter,
/obj/item/weapon/stock_parts/subspace/transmitter,
@@ -66541,7 +64672,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmj" = (
+"ciF" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/weapon/stock_parts/manipulator,
@@ -66562,7 +64693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmk" = (
+"ciG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -66572,7 +64703,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cml" = (
+"ciH" = (
/obj/structure/table,
/obj/item/device/aicard,
/obj/item/weapon/aiModule/reset,
@@ -66580,7 +64711,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmm" = (
+"ciI" = (
/obj/structure/table,
/obj/item/device/flashlight{
pixel_x = 1;
@@ -66596,7 +64727,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmn" = (
+"ciJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -66612,7 +64743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmo" = (
+"ciK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -66620,13 +64751,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmp" = (
+"ciL" = (
/obj/structure/table,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmq" = (
+"ciM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -66634,7 +64765,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmr" = (
+"ciN" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -66644,7 +64775,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cms" = (
+"ciO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -66658,7 +64789,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmt" = (
+"ciP" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -66671,7 +64802,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmu" = (
+"ciQ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -66683,7 +64814,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmv" = (
+"ciR" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66695,7 +64826,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmw" = (
+"ciS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -66707,7 +64838,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmx" = (
+"ciT" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -66719,7 +64850,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmy" = (
+"ciU" = (
/obj/machinery/door/airlock/maintenance{
name = "Docking Asteroid SMES Access";
req_access_txt = "10;11;12"
@@ -66735,7 +64866,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmz" = (
+"ciV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -66747,45 +64878,45 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cmA" = (
+"ciW" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmB" = (
+"ciX" = (
/obj/structure/filingcabinet,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cmC" = (
+"ciY" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cmD" = (
+"ciZ" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cmE" = (
+"cja" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cmF" = (
+"cjb" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cmG" = (
+"cjc" = (
/obj/structure/chair{
dir = 4
},
@@ -66800,7 +64931,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cmH" = (
+"cjd" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -66808,25 +64939,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cmI" = (
+"cje" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmJ" = (
+"cjf" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmK" = (
+"cjg" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmL" = (
+"cjh" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
pixel_y = 0
@@ -66838,7 +64969,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmM" = (
+"cji" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -66859,7 +64990,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmN" = (
+"cjj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -66867,7 +64998,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmO" = (
+"cjk" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -66879,7 +65010,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cmP" = (
+"cjl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -66887,13 +65018,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cmQ" = (
+"cjm" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cmR" = (
+"cjn" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -66902,7 +65033,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"cmS" = (
+"cjo" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -66919,7 +65050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmT" = (
+"cjp" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -66939,7 +65070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cmU" = (
+"cjq" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -66947,39 +65078,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmV" = (
+"cjr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmW" = (
+"cjs" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmX" = (
+"cjt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cmY" = (
+"cju" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter{
name = "Research Quantum Pad"
})
-"cmZ" = (
+"cjv" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cna" = (
+"cjw" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -66990,7 +65121,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cnb" = (
+"cjx" = (
/obj/machinery/light/small{
dir = 8
},
@@ -67000,7 +65131,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnc" = (
+"cjy" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -67016,7 +65147,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnd" = (
+"cjz" = (
/obj/machinery/light/small{
dir = 1
},
@@ -67031,7 +65162,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cne" = (
+"cjA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -67050,7 +65181,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cnf" = (
+"cjB" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -67060,7 +65191,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cng" = (
+"cjC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -67073,7 +65204,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnh" = (
+"cjD" = (
/obj/machinery/light/small{
dir = 8
},
@@ -67081,7 +65212,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cni" = (
+"cjE" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -67089,13 +65220,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnj" = (
+"cjF" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnk" = (
+"cjG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -67103,7 +65234,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnl" = (
+"cjH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -67113,7 +65244,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnm" = (
+"cjI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -67130,7 +65261,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnn" = (
+"cjJ" = (
/obj/machinery/power/apc{
dir = 4;
name = "Departures APC";
@@ -67150,7 +65281,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cno" = (
+"cjK" = (
/obj/structure/grille/broken,
/obj/item/clothing/head/cone,
/turf/open/floor/plating/astplate{
@@ -67159,7 +65290,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"cnp" = (
+"cjL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light/small{
dir = 4
@@ -67168,7 +65299,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnq" = (
+"cjM" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -67182,7 +65313,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnr" = (
+"cjN" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -67192,7 +65323,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cns" = (
+"cjO" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -67205,7 +65336,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnt" = (
+"cjP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -67218,7 +65349,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnu" = (
+"cjQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -67226,7 +65357,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnv" = (
+"cjR" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -67242,7 +65373,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cnw" = (
+"cjS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -67250,7 +65381,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cnx" = (
+"cjT" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Construction Zone";
@@ -67262,7 +65393,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cny" = (
+"cjU" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -67286,13 +65417,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cnz" = (
+"cjV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cnA" = (
+"cjW" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -67311,7 +65442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cnB" = (
+"cjX" = (
/obj/structure/table,
/obj/item/weapon/aiModule/core/full/asimov,
/obj/item/weapon/aiModule/core/freeformcore,
@@ -67335,7 +65466,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cnC" = (
+"cjY" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/oxygen,
/obj/item/weapon/aiModule/zeroth/oneHuman,
@@ -67360,7 +65491,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cnD" = (
+"cjZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -67370,7 +65501,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cnE" = (
+"cka" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -67389,7 +65520,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cnF" = (
+"ckb" = (
/obj/machinery/power/apc{
dir = 1;
name = "Research Quantum Pad APC";
@@ -67409,7 +65540,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cnG" = (
+"ckc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -67419,7 +65550,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cnH" = (
+"ckd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -67429,7 +65560,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cnI" = (
+"cke" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -67448,7 +65579,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cnJ" = (
+"ckf" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -67467,7 +65598,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cnK" = (
+"ckg" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -67480,7 +65611,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cnL" = (
+"ckh" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -67492,7 +65623,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnM" = (
+"cki" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -67505,7 +65636,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnN" = (
+"ckj" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -67522,7 +65653,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnO" = (
+"ckk" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -67534,7 +65665,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnP" = (
+"ckl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67547,7 +65678,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnQ" = (
+"ckm" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -67561,7 +65692,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnR" = (
+"ckn" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -67581,7 +65712,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cnS" = (
+"cko" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line,
@@ -67593,7 +65724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cnT" = (
+"ckp" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -67604,31 +65735,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnU" = (
+"ckq" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnV" = (
+"ckr" = (
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cnW" = (
+"cks" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cnX" = (
+"ckt" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cnY" = (
+"cku" = (
/obj/structure/chair{
dir = 4
},
@@ -67650,13 +65781,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cnZ" = (
+"ckv" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coa" = (
+"ckw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -67667,7 +65798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cob" = (
+"ckx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -67679,7 +65810,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coc" = (
+"cky" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -67690,7 +65821,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cod" = (
+"ckz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -67706,7 +65837,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coe" = (
+"ckA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -67725,7 +65856,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cof" = (
+"ckB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix Output";
@@ -67743,14 +65874,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cog" = (
+"ckC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coh" = (
+"ckD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -67763,7 +65894,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coi" = (
+"ckE" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -67772,7 +65903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coj" = (
+"ckF" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -67780,7 +65911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cok" = (
+"ckG" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -67793,7 +65924,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"col" = (
+"ckH" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -67806,7 +65937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"com" = (
+"ckI" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -67826,7 +65957,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"con" = (
+"ckJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -67840,7 +65971,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coo" = (
+"ckK" = (
/obj/structure/rack{
dir = 4
},
@@ -67871,7 +66002,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cop" = (
+"ckL" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -67889,7 +66020,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"coq" = (
+"ckM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -67898,7 +66029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cor" = (
+"ckN" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -67918,13 +66049,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cos" = (
+"ckO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cot" = (
+"ckP" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -67934,7 +66065,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cou" = (
+"ckQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/power/apc{
dir = 4;
@@ -67950,7 +66081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cov" = (
+"ckR" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -67973,7 +66104,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cow" = (
+"ckS" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -67981,7 +66112,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cox" = (
+"ckT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -67996,7 +66127,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"coy" = (
+"ckU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -68014,7 +66145,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"coz" = (
+"ckV" = (
/obj/machinery/quantumpad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -68022,7 +66153,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"coA" = (
+"ckW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -68044,14 +66175,14 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"coB" = (
+"ckX" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coC" = (
+"ckY" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -68068,7 +66199,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coD" = (
+"ckZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -68080,7 +66211,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coE" = (
+"cla" = (
/obj/machinery/power/apc{
dir = 2;
name = "Teleporter APC";
@@ -68104,7 +66235,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"coF" = (
+"clb" = (
/obj/machinery/light/small{
dir = 1
},
@@ -68120,24 +66251,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/effect/turf_decal/stripes/asteroid/line{
- icon_state = "ast_warn";
- dir = 4
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"coH" = (
+"clc" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -68154,7 +66268,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coI" = (
+"cld" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -68168,7 +66282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"coJ" = (
+"cle" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -68179,7 +66293,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coK" = (
+"clf" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -68189,7 +66303,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coL" = (
+"clg" = (
/obj/machinery/light/small{
dir = 4
},
@@ -68204,19 +66318,19 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"coM" = (
+"clh" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"coN" = (
+"cli" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"coO" = (
+"clj" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -68230,27 +66344,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"coP" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"coQ" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"coR" = (
+"clk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -68264,7 +66358,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"coS" = (
+"cll" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/brown/corner{
tag = "icon-browncorner (WEST)";
@@ -68273,7 +66367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coT" = (
+"clm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -68284,7 +66378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coU" = (
+"cln" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -68292,7 +66386,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coV" = (
+"clo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -68305,7 +66399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coW" = (
+"clp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -68313,7 +66407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coX" = (
+"clq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -68321,7 +66415,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coY" = (
+"clr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -68331,12 +66425,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"coZ" = (
+"cls" = (
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpa" = (
+"clt" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/machine/telecomms/processor,
/obj/item/weapon/circuitboard/machine/telecomms/receiver,
@@ -68350,13 +66444,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cpb" = (
+"clu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cpc" = (
+"clv" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -68377,11 +66471,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cpd" = (
+"clw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"cpe" = (
+"clx" = (
/obj/machinery/door/airlock/highsecurity{
icon_state = "door_closed";
locked = 0;
@@ -68397,11 +66491,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cpf" = (
+"cly" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"cpg" = (
+"clz" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -68421,7 +66515,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cph" = (
+"clA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -68429,7 +66523,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpi" = (
+"clB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -68452,7 +66546,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpj" = (
+"clC" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -68476,7 +66570,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpk" = (
+"clD" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -68484,7 +66578,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpl" = (
+"clE" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -68506,31 +66600,12 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpm" = (
+"clF" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cpn" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Arrival Security Checkpoint APC";
- pixel_y = -24
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint2)
-"cpo" = (
+"clG" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68545,7 +66620,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cpp" = (
+"clH" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -68561,7 +66636,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cpq" = (
+"clI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68575,7 +66650,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cpr" = (
+"clJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68591,7 +66666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cps" = (
+"clK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -68606,25 +66681,18 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cpt" = (
+"clL" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cpu" = (
+"clM" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Airlock"
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"cpv" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"cpw" = (
+"clN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 8;
@@ -68637,7 +66705,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cpx" = (
+"clO" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/brown{
tag = "icon-brown (SOUTHWEST)";
@@ -68646,19 +66714,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpy" = (
+"clP" = (
/obj/machinery/light,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpz" = (
+"clQ" = (
/obj/structure/mining_shuttle_beacon,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpA" = (
+"clR" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -68670,7 +66738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpB" = (
+"clS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -68681,14 +66749,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpC" = (
+"clT" = (
/obj/structure/closet/crate/rcd,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpD" = (
+"clU" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -68699,7 +66767,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpE" = (
+"clV" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty,
/obj/item/stack/sheet/rglass{
@@ -68710,7 +66778,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpF" = (
+"clW" = (
/obj/structure/table,
/obj/item/device/assault_pod/mining,
/obj/item/weapon/storage/box/lights/mixed,
@@ -68721,7 +66789,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cpG" = (
+"clX" = (
/obj/machinery/vending/assist,
/obj/machinery/camera{
c_tag = "Tech Storage South";
@@ -68731,7 +66799,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cpH" = (
+"clY" = (
/obj/structure/table,
/obj/item/device/plant_analyzer,
/obj/item/weapon/stock_parts/cell/high/plus,
@@ -68741,7 +66809,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cpI" = (
+"clZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/turretid{
control_area = "AI Upload Chamber";
@@ -68755,7 +66823,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cpJ" = (
+"cma" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -68765,7 +66833,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cpK" = (
+"cmb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -68774,7 +66842,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai_upload)
-"cpL" = (
+"cmc" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -68791,7 +66859,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpM" = (
+"cmd" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -68804,7 +66872,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpN" = (
+"cme" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -68817,7 +66885,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpO" = (
+"cmf" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -68827,7 +66895,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpP" = (
+"cmg" = (
/obj/machinery/light/small,
/obj/structure/fans/tiny,
/turf/open/floor/plating{
@@ -68836,7 +66904,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpQ" = (
+"cmh" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -68846,7 +66914,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cpR" = (
+"cmi" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -68856,7 +66924,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpS" = (
+"cmj" = (
/obj/machinery/light/small,
/obj/structure/fans/tiny,
/turf/open/floor/plating{
@@ -68865,7 +66933,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpT" = (
+"cmk" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -68875,7 +66943,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpU" = (
+"cml" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -68889,7 +66957,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpV" = (
+"cmm" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -68902,7 +66970,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpW" = (
+"cmn" = (
/obj/structure/table,
/obj/item/device/multitool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -68914,7 +66982,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cpX" = (
+"cmo" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -68922,7 +66990,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cpY" = (
+"cmp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -68935,20 +67003,20 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cpZ" = (
+"cmq" = (
/obj/machinery/light/small,
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cqa" = (
+"cmr" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqb" = (
+"cms" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -68961,7 +67029,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqc" = (
+"cmt" = (
/obj/machinery/light{
dir = 1
},
@@ -68969,7 +67037,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqd" = (
+"cmu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -68982,19 +67050,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqe" = (
+"cmv" = (
/obj/effect/turf_decal/bot,
/obj/machinery/shieldwallgen,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqf" = (
+"cmw" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqg" = (
+"cmx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -69009,7 +67077,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cqh" = (
+"cmy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -69020,26 +67088,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cqi" = (
+"cmz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless;
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cqj" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (WEST)";
- icon_state = "escape";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/secondary/exit)
-"cqk" = (
+"cmA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -69047,7 +67103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cql" = (
+"cmB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -69057,26 +67113,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cqm" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"cqn" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"cqo" = (
+"cmC" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_2)
-"cqp" = (
+"cmD" = (
/obj/structure/shuttle/engine/propulsion/burst{
dir = 4;
icon_state = "propulsion";
@@ -69084,7 +67124,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"cqq" = (
+"cmE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
icon_state = "tube1";
@@ -69097,7 +67137,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cqr" = (
+"cmF" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
name = "Auxillary Base Construction";
@@ -69114,19 +67154,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cqs" = (
+"cmG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mining_construction)
-"cqt" = (
+"cmH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cqu" = (
+"cmI" = (
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
req_access_txt = "23"
@@ -69141,34 +67181,34 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cqv" = (
+"cmJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/tech)
-"cqw" = (
+"cmK" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cqx" = (
+"cmL" = (
/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cqy" = (
+"cmM" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cqz" = (
+"cmN" = (
/turf/closed/wall/r_wall,
/area/hallway/primary/aft)
-"cqA" = (
+"cmO" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -69176,7 +67216,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cqB" = (
+"cmP" = (
/obj/machinery/door/airlock/glass{
name = "Research Quantum Pad"
},
@@ -69192,7 +67232,7 @@
/area/teleporter{
name = "Research Quantum Pad"
})
-"cqC" = (
+"cmQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/structure/grille,
@@ -69203,12 +67243,12 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"cqD" = (
+"cmR" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cqE" = (
+"cmS" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -69219,7 +67259,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cqF" = (
+"cmT" = (
/obj/machinery/door/airlock/glass{
name = "Docking Quantum Pad"
},
@@ -69235,7 +67275,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cqG" = (
+"cmU" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -69246,7 +67286,7 @@
/area/teleporter{
name = "Docking Quantum Pad"
})
-"cqH" = (
+"cmV" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -69257,7 +67297,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cqI" = (
+"cmW" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -69273,13 +67313,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cqJ" = (
+"cmX" = (
/obj/machinery/teleport/station,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqK" = (
+"cmY" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -69287,19 +67327,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqL" = (
+"cmZ" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqM" = (
+"cna" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cqN" = (
-/obj/structure/closet/secure_closet/security/engine,
+"cnb" = (
+/obj/structure/closet/secure_closet/security,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (NORTHWEST)";
icon_state = "red";
@@ -69307,14 +67347,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqO" = (
+"cnc" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqP" = (
+"cnd" = (
/obj/machinery/computer/security,
/obj/machinery/light{
dir = 1
@@ -69325,7 +67365,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqQ" = (
+"cne" = (
/obj/machinery/computer/card,
/obj/machinery/camera{
c_tag = "Docking Security Checkpoint";
@@ -69343,7 +67383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqR" = (
+"cnf" = (
/obj/machinery/computer/secure_data,
/obj/machinery/newscaster/security_unit{
pixel_y = 32
@@ -69354,7 +67394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqS" = (
+"cng" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 32
},
@@ -69370,7 +67410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqT" = (
+"cnh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69386,7 +67426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqU" = (
+"cni" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
req_access = null;
@@ -69399,7 +67439,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cqV" = (
+"cnj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -69411,7 +67451,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cqW" = (
+"cnk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -69419,7 +67459,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cqX" = (
+"cnl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -69432,13 +67472,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cqY" = (
+"cnm" = (
/obj/structure/table_frame/wood,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"cqZ" = (
+"cnn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/table_frame/wood,
/turf/open/floor/wood{
@@ -69446,28 +67486,7 @@
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"cra" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"crb" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"crc" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"crd" = (
+"cno" = (
/obj/docking_port/stationary/random{
dir = 8;
id = "pod_lavaland2";
@@ -69475,14 +67494,14 @@
},
/turf/open/space,
/area/space)
-"cre" = (
+"cnp" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/pod_2)
-"crf" = (
+"cnq" = (
/obj/machinery/computer/shuttle/pod{
pixel_x = 0;
pixel_y = -32;
@@ -69497,7 +67516,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"crg" = (
+"cnr" = (
/obj/item/weapon/storage/pod{
pixel_x = 6;
pixel_y = -28
@@ -69514,7 +67533,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"crh" = (
+"cns" = (
/obj/machinery/door/airlock/titanium{
name = "Escape Pod Airlock"
},
@@ -69526,7 +67545,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_2)
-"cri" = (
+"cnt" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4;
name = "Research Escape Pod"
@@ -69535,7 +67554,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crj" = (
+"cnu" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8;
name = "Research Escape Pod"
@@ -69544,7 +67563,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crk" = (
+"cnv" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -69571,7 +67590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crl" = (
+"cnw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69588,7 +67607,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crm" = (
+"cnx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69608,7 +67627,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crn" = (
+"cny" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69628,7 +67647,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cro" = (
+"cnz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69652,7 +67671,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crp" = (
+"cnA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69674,7 +67693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crq" = (
+"cnB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -69691,7 +67710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crr" = (
+"cnC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69711,7 +67730,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crs" = (
+"cnD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69734,7 +67753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crt" = (
+"cnE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -69749,7 +67768,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cru" = (
+"cnF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69769,7 +67788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crv" = (
+"cnG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -69786,7 +67805,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crw" = (
+"cnH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69807,7 +67826,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crx" = (
+"cnI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69824,7 +67843,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cry" = (
+"cnJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69845,7 +67864,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crz" = (
+"cnK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 4;
@@ -69859,7 +67878,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crA" = (
+"cnL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69878,7 +67897,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crB" = (
+"cnM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69897,7 +67916,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crC" = (
+"cnN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69913,7 +67932,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crD" = (
+"cnO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69934,7 +67953,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crE" = (
+"cnP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -69955,7 +67974,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crF" = (
+"cnQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -69969,7 +67988,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crG" = (
+"cnR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -69988,7 +68007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crH" = (
+"cnS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -70007,7 +68026,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crI" = (
+"cnT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -70026,7 +68045,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crJ" = (
+"cnU" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
@@ -70046,7 +68065,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crK" = (
+"cnV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -70058,7 +68077,7 @@
heat_capacity = 1e+006
},
/area/hallway/primary/aft)
-"crL" = (
+"cnW" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -70075,7 +68094,7 @@
heat_capacity = 1e+006
},
/area/hallway/primary/aft)
-"crM" = (
+"cnX" = (
/obj/structure/sign/directions/evac{
dir = 4;
icon_state = "direction_evac";
@@ -70096,7 +68115,7 @@
heat_capacity = 1e+006
},
/area/hallway/primary/aft)
-"crN" = (
+"cnY" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -70107,7 +68126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"crO" = (
+"cnZ" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -70116,7 +68135,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crP" = (
+"coa" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
@@ -70124,7 +68143,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crQ" = (
+"cob" = (
/obj/machinery/light{
dir = 1
},
@@ -70135,7 +68154,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crR" = (
+"coc" = (
/obj/structure/sign/directions/science{
dir = 8;
icon_state = "direction_sci";
@@ -70155,7 +68174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crS" = (
+"cod" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -70165,7 +68184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crT" = (
+"coe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -70178,7 +68197,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crU" = (
+"cof" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
@@ -70201,7 +68220,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crV" = (
+"cog" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -70217,7 +68236,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crW" = (
+"coh" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -70233,7 +68252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crX" = (
+"coi" = (
/obj/machinery/light{
dir = 1
},
@@ -70255,7 +68274,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crY" = (
+"coj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -70271,7 +68290,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"crZ" = (
+"cok" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -70287,7 +68306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csa" = (
+"col" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -70301,32 +68320,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csb" = (
+"com" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"csc" = (
+"con" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"csd" = (
+"coo" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cse" = (
+"cop" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csf" = (
+"coq" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -70339,7 +68358,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csg" = (
+"cor" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -70350,7 +68369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csh" = (
+"cos" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70358,7 +68377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csi" = (
+"cot" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -70366,13 +68385,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csj" = (
+"cou" = (
/obj/structure/table/wood,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csk" = (
+"cov" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/chair,
/turf/open/floor/wood{
@@ -70380,7 +68399,7 @@
icon_state = "wood-broken"
},
/area/security/vacantoffice)
-"csl" = (
+"cow" = (
/obj/machinery/light/small{
dir = 4
},
@@ -70388,7 +68407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csm" = (
+"cox" = (
/obj/machinery/light/small{
dir = 8
},
@@ -70403,7 +68422,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"csn" = (
+"coy" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -70415,42 +68434,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cso" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"csp" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"csq" = (
-/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)
-"csr" = (
+"coz" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"css" = (
+"coA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/pods{
pixel_x = -32
@@ -70462,7 +68453,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cst" = (
+"coB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -70471,7 +68462,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csu" = (
+"coC" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -70483,13 +68474,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csv" = (
+"coD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csw" = (
+"coE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -70499,19 +68490,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csx" = (
+"coF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csy" = (
+"coG" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csz" = (
+"coH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -70521,13 +68512,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"csA" = (
+"coI" = (
/obj/machinery/door/airlock/glass,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csB" = (
+"coJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -70535,19 +68526,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csC" = (
+"coK" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csD" = (
+"coL" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csE" = (
+"coM" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -70559,7 +68550,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csF" = (
+"coN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -70567,7 +68558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csG" = (
+"coO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -70577,12 +68568,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csH" = (
+"coP" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csI" = (
+"coQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/corner{
tag = "icon-bluecorner (EAST)";
@@ -70591,7 +68582,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csJ" = (
+"coR" = (
/obj/structure/table,
/obj/item/weapon/hand_tele,
/obj/item/device/radio/beacon,
@@ -70605,7 +68596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"csK" = (
+"coS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -70613,7 +68604,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"csL" = (
+"coT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -70624,7 +68615,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csM" = (
+"coU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -70634,7 +68625,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csN" = (
+"coV" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -70648,7 +68639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csO" = (
+"coW" = (
/obj/structure/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -70657,12 +68648,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csP" = (
+"coX" = (
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csQ" = (
+"coY" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/device/radio,
@@ -70670,7 +68661,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csR" = (
+"coZ" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/red/side{
@@ -70679,19 +68670,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"csS" = (
+"cpa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csT" = (
+"cpb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"csU" = (
+"cpc" = (
/obj/structure/cable/orange{
d2 = 4;
icon_state = "0-4"
@@ -70710,7 +68701,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"csV" = (
+"cpd" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -70723,7 +68714,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"csW" = (
+"cpe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -70731,7 +68722,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"csX" = (
+"cpf" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -70741,23 +68732,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"csY" = (
+"cpg" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"csZ" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"cta" = (
+"cph" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"ctb" = (
+"cpi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -70768,7 +68755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctc" = (
+"cpj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70779,7 +68766,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctd" = (
+"cpk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70795,7 +68782,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cte" = (
+"cpl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70805,7 +68792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctf" = (
+"cpm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70816,7 +68803,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctg" = (
+"cpn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70834,7 +68821,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cth" = (
+"cpo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70846,7 +68833,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cti" = (
+"cpp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70861,7 +68848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctj" = (
+"cpq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70876,7 +68863,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctk" = (
+"cpr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -70884,7 +68871,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctl" = (
+"cps" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70893,7 +68880,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctm" = (
+"cpt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/purple/corner{
tag = "icon-purplecorner (WEST)";
@@ -70902,7 +68889,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctn" = (
+"cpu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70913,7 +68900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cto" = (
+"cpv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70927,7 +68914,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctp" = (
+"cpw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70938,7 +68925,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctq" = (
+"cpx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70953,7 +68940,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctr" = (
+"cpy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
@@ -70961,7 +68948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cts" = (
+"cpz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -70975,7 +68962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctt" = (
+"cpA" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -70986,7 +68973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctu" = (
+"cpB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -70996,14 +68983,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctv" = (
+"cpC" = (
/turf/open/floor/plasteel/neutral/corner{
icon_state = "neutralcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctw" = (
+"cpD" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -71017,7 +69004,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctx" = (
+"cpE" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -71034,7 +69021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cty" = (
+"cpF" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -71052,7 +69039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctz" = (
+"cpG" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71069,7 +69056,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"ctA" = (
+"cpH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -71089,7 +69076,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"ctB" = (
+"cpI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -71106,15 +69093,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"ctC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"ctD" = (
+"cpJ" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71125,7 +69104,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctE" = (
+"cpK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -71138,7 +69117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctF" = (
+"cpL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71151,7 +69130,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctG" = (
+"cpM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71162,7 +69141,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctH" = (
+"cpN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71179,7 +69158,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctI" = (
+"cpO" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -71199,7 +69178,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctJ" = (
+"cpP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71208,7 +69187,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctK" = (
+"cpQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -71219,7 +69198,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"ctL" = (
+"cpR" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -71231,7 +69210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"ctM" = (
+"cpS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71240,7 +69219,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"ctN" = (
+"cpT" = (
/obj/machinery/door/airlock/command{
name = "Teleport Access";
req_access_txt = "17"
@@ -71253,14 +69232,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"ctO" = (
+"cpU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"ctP" = (
+"cpV" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/window/brigdoor/northright{
@@ -71271,7 +69250,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"ctQ" = (
+"cpW" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -71284,7 +69263,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"ctR" = (
+"cpX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock{
name = "Vacant Office";
@@ -71294,22 +69273,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ctS" = (
+"cpY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/vacantoffice)
-"ctT" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/vacantoffice)
-"ctU" = (
+"cpZ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/camera{
@@ -71327,30 +69297,30 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"ctV" = (
+"cqa" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"ctW" = (
+"cqb" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"ctX" = (
+"cqc" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"ctY" = (
+"cqd" = (
/obj/machinery/mecha_part_fabricator,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"ctZ" = (
+"cqe" = (
/obj/machinery/door/poddoor/shutters{
id = "MechbayShutters"
},
@@ -71358,7 +69328,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cua" = (
+"cqf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -71373,7 +69343,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cub" = (
+"cqg" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -71391,7 +69361,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cuc" = (
+"cqh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -71399,7 +69369,7 @@
/area/medical/research{
name = "Research Division"
})
-"cud" = (
+"cqi" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 2;
name = "Research Division Access";
@@ -71419,19 +69389,19 @@
/area/medical/research{
name = "Research Division"
})
-"cue" = (
+"cqj" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/research{
name = "Research Division"
})
-"cuf" = (
+"cqk" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cug" = (
+"cql" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -71449,7 +69419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cuh" = (
+"cqm" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -71470,7 +69440,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cui" = (
+"cqn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -71491,7 +69461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cuj" = (
+"cqo" = (
/obj/machinery/door/airlock/maintenance{
name = "Science SMES Access";
req_access_txt = "10;11;12"
@@ -71510,7 +69480,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cuk" = (
+"cqp" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -71522,7 +69492,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"cul" = (
+"cqq" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -71531,19 +69501,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cum" = (
+"cqr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cun" = (
+"cqs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuo" = (
+"cqt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -71551,7 +69521,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cup" = (
+"cqu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71565,7 +69535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuq" = (
+"cqv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71576,7 +69546,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cur" = (
+"cqw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71592,7 +69562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cus" = (
+"cqx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71604,7 +69574,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cut" = (
+"cqy" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/arrival/corner{
tag = "icon-arrivalcorner (NORTH)";
@@ -71613,7 +69583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuu" = (
+"cqz" = (
/obj/machinery/light{
dir = 1
},
@@ -71627,7 +69597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuv" = (
+"cqA" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/arrival/corner{
tag = "icon-arrivalcorner (NORTH)";
@@ -71636,7 +69606,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuw" = (
+"cqB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -71647,7 +69617,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cux" = (
+"cqC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -71668,7 +69638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuy" = (
+"cqD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -71683,7 +69653,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuz" = (
+"cqE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -71719,7 +69689,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuA" = (
+"cqF" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -71728,7 +69698,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuB" = (
+"cqG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -71751,7 +69721,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuC" = (
+"cqH" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -71769,7 +69739,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuD" = (
+"cqI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71783,7 +69753,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuE" = (
+"cqJ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -71794,7 +69764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuF" = (
+"cqK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71805,7 +69775,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuG" = (
+"cqL" = (
/obj/machinery/light{
dir = 1
},
@@ -71819,7 +69789,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuH" = (
+"cqM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (EAST)";
@@ -71828,7 +69798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuI" = (
+"cqN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71844,7 +69814,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuJ" = (
+"cqO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71856,7 +69826,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuK" = (
+"cqP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71872,7 +69842,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuL" = (
+"cqQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71881,7 +69851,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuM" = (
+"cqR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -71889,7 +69859,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuN" = (
+"cqS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -71897,16 +69867,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cuO" = (
+"cqT" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"cuP" = (
-/turf/open/space,
-/area/mine/unexplored{
- name = "Research Asteroid"
- })
-"cuQ" = (
+"cqU" = (
/obj/machinery/door/poddoor{
id = "mixvent";
name = "Mixer Room Vent"
@@ -71915,7 +69880,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuR" = (
+"cqV" = (
/obj/structure/sign/vacuum{
pixel_y = 32
},
@@ -71923,7 +69888,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuS" = (
+"cqW" = (
/obj/machinery/sparker{
dir = 2;
id = "mixingsparker";
@@ -71942,7 +69907,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuT" = (
+"cqX" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -71950,7 +69915,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuU" = (
+"cqY" = (
/obj/machinery/airlock_sensor{
id_tag = "tox_airlock_sensor";
master_tag = "tox_airlock_control";
@@ -71965,7 +69930,7 @@
name = "reinforced floor"
},
/area/toxins/mixing)
-"cuV" = (
+"cqZ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -71987,7 +69952,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuW" = (
+"cra" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
name = "mix to port"
@@ -71996,7 +69961,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuX" = (
+"crb" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -72007,13 +69972,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cuY" = (
+"crc" = (
/obj/machinery/recharge_station,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cuZ" = (
+"crd" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -72023,13 +69988,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cva" = (
+"cre" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvb" = (
+"crf" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -72039,12 +70004,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvc" = (
+"crg" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvd" = (
+"crh" = (
/obj/machinery/button/door{
id = "MechbayShutters";
name = "Mechbay Shutters";
@@ -72060,13 +70025,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cve" = (
+"cri" = (
/obj/machinery/r_n_d/circuit_imprinter,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvf" = (
+"crj" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -72078,7 +70043,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvg" = (
+"crk" = (
/obj/machinery/button/door{
id = "RoboticsShutters";
name = "Robotics Privacy Shutters";
@@ -72093,7 +70058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvh" = (
+"crl" = (
/obj/machinery/requests_console{
department = "Robotics";
departmentType = 2;
@@ -72104,7 +70069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvi" = (
+"crm" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -72114,13 +70079,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvj" = (
+"crn" = (
/obj/structure/table/optable,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvk" = (
+"cro" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -72140,7 +70105,7 @@
/area/medical/research{
name = "Research Division"
})
-"cvl" = (
+"crp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72151,7 +70116,7 @@
/area/medical/research{
name = "Research Division"
})
-"cvm" = (
+"crq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -72164,7 +70129,7 @@
/area/medical/research{
name = "Research Division"
})
-"cvn" = (
+"crr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -72182,7 +70147,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvo" = (
+"crs" = (
/obj/machinery/button/door{
id = "RnDShutters";
name = "Research Privacy Shutters";
@@ -72199,7 +70164,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvp" = (
+"crt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72210,7 +70175,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvq" = (
+"cru" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -72221,7 +70186,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvr" = (
+"crv" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTH)";
icon_state = "whitepurple";
@@ -72229,7 +70194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvs" = (
+"crw" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -72240,7 +70205,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvt" = (
+"crx" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -72257,14 +70222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cvu" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cvv" = (
+"cry" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -72287,7 +70245,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cvw" = (
+"crz" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -72308,7 +70266,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cvx" = (
+"crA" = (
/obj/machinery/power/apc{
dir = 8;
name = "Aft Asteroid Maintenance APC";
@@ -72330,7 +70288,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cvy" = (
+"crB" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 1
@@ -72341,7 +70299,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cvz" = (
+"crC" = (
/obj/structure/rack,
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/pickaxe/emergency,
@@ -72349,19 +70307,19 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cvA" = (
+"crD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvB" = (
+"crE" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvC" = (
+"crF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -72370,13 +70328,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvD" = (
+"crG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvE" = (
+"crH" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -72385,7 +70343,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvF" = (
+"crI" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -72397,7 +70355,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvG" = (
+"crJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -72409,7 +70367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvH" = (
+"crK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -72426,7 +70384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvI" = (
+"crL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -72443,7 +70401,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvJ" = (
+"crM" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -72461,7 +70419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvK" = (
+"crN" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -72472,7 +70430,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvL" = (
+"crO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -72484,7 +70442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvM" = (
+"crP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -72496,7 +70454,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvN" = (
+"crQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -72507,7 +70465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvO" = (
+"crR" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -72515,7 +70473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvP" = (
+"crS" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -72528,18 +70486,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvQ" = (
+"crT" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cvR" = (
+"crU" = (
/turf/open/floor/engine/vacuum{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cvS" = (
+"crV" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
frequency = 1449;
@@ -72556,13 +70514,13 @@
name = "reinforced floor"
},
/area/toxins/mixing)
-"cvT" = (
+"crW" = (
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
name = "reinforced floor"
},
/area/toxins/mixing)
-"cvU" = (
+"crX" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
frequency = 1449;
@@ -72579,7 +70537,7 @@
name = "reinforced floor"
},
/area/toxins/mixing)
-"cvV" = (
+"crY" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (WEST)";
icon_state = "whitepurple";
@@ -72587,12 +70545,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cvW" = (
+"crZ" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cvX" = (
+"csa" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
pixel_y = 0
@@ -72608,12 +70566,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cvY" = (
+"csb" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cvZ" = (
+"csc" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -72622,7 +70580,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwa" = (
+"csd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -72631,7 +70589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwb" = (
+"cse" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -72639,7 +70597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwc" = (
+"csf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -72647,7 +70605,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwd" = (
+"csg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72655,7 +70613,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwe" = (
+"csh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -72665,13 +70623,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwf" = (
+"csi" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwg" = (
+"csj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -72679,7 +70637,7 @@
/area/medical/research{
name = "Research Division"
})
-"cwh" = (
+"csk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -72687,7 +70645,7 @@
/area/medical/research{
name = "Research Division"
})
-"cwi" = (
+"csl" = (
/obj/machinery/light/small{
dir = 4
},
@@ -72697,7 +70655,7 @@
/area/medical/research{
name = "Research Division"
})
-"cwj" = (
+"csm" = (
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -72706,7 +70664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cwk" = (
+"csn" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -72714,7 +70672,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cwl" = (
+"cso" = (
/obj/machinery/r_n_d/protolathe,
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -72723,7 +70681,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cwm" = (
+"csp" = (
/obj/item/weapon/folder/white,
/obj/item/weapon/disk/tech_disk{
pixel_x = 0;
@@ -72741,12 +70699,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cwn" = (
+"csq" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cwo" = (
+"csr" = (
/obj/item/weapon/reagent_containers/glass/beaker/large{
pixel_x = -3;
pixel_y = 3
@@ -72765,7 +70723,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cwp" = (
+"css" = (
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -72773,7 +70731,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cwq" = (
+"cst" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -72785,7 +70743,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cwr" = (
+"csu" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -72800,7 +70758,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cws" = (
+"csv" = (
/obj/machinery/door/airlock/maintenance{
name = "Science SMES Access";
req_access_txt = "10;11;12"
@@ -72816,7 +70774,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cwt" = (
+"csw" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -72837,7 +70795,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cwu" = (
+"csx" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -72845,7 +70803,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwv" = (
+"csy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72853,7 +70811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cww" = (
+"csz" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72862,13 +70820,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwx" = (
+"csA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/arrival{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwy" = (
+"csB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -72880,7 +70838,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwz" = (
+"csC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -72889,7 +70847,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwA" = (
+"csD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -72901,7 +70859,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwB" = (
+"csE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -72914,7 +70872,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwC" = (
+"csF" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
@@ -72931,7 +70889,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwD" = (
+"csG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -72942,7 +70900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwE" = (
+"csH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -72953,7 +70911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwF" = (
+"csI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -72974,7 +70932,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwG" = (
+"csJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -72990,7 +70948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwH" = (
+"csK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73004,7 +70962,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwI" = (
+"csL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -73025,7 +70983,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwJ" = (
+"csM" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -73049,7 +71007,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwK" = (
+"csN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -73066,7 +71024,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwL" = (
+"csO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -73083,7 +71041,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwM" = (
+"csP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -73092,7 +71050,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwN" = (
+"csQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -73100,7 +71058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cwO" = (
+"csR" = (
/obj/machinery/sparker{
dir = 2;
id = "mixingsparker";
@@ -73115,7 +71073,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cwP" = (
+"csS" = (
/obj/structure/sign/fire{
pixel_y = -32
},
@@ -73128,7 +71086,7 @@
name = "reinforced floor"
},
/area/toxins/mixing)
-"cwQ" = (
+"csT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -73152,7 +71110,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cwR" = (
+"csU" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
name = "port to mix"
@@ -73161,22 +71119,22 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cwS" = (
+"csV" = (
/obj/machinery/mech_bay_recharge_port,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwT" = (
+"csW" = (
/turf/open/floor/mech_bay_recharge_floor,
/area/assembly/robotics)
-"cwU" = (
+"csX" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwV" = (
+"csY" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -73188,7 +71146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwW" = (
+"csZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -73196,7 +71154,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwX" = (
+"cta" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -73205,7 +71163,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwY" = (
+"ctb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73214,7 +71172,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cwZ" = (
+"ctc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -73225,7 +71183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxa" = (
+"ctd" = (
/obj/structure/rack,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -73248,7 +71206,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxb" = (
+"cte" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -73256,7 +71214,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxc" = (
+"ctf" = (
/obj/structure/table,
/obj/item/device/mmi,
/obj/item/device/mmi,
@@ -73265,7 +71223,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxd" = (
+"ctg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/closet/l3closet/scientist,
/turf/open/floor/plasteel/white{
@@ -73274,7 +71232,7 @@
/area/medical/research{
name = "Research Division"
})
-"cxe" = (
+"cth" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -73284,7 +71242,7 @@
/area/medical/research{
name = "Research Division"
})
-"cxf" = (
+"cti" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -73297,7 +71255,7 @@
/area/medical/research{
name = "Research Division"
})
-"cxg" = (
+"ctj" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -73313,7 +71271,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxh" = (
+"ctk" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -73322,7 +71280,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxi" = (
+"ctl" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -73330,19 +71288,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxj" = (
+"ctm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxk" = (
+"ctn" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxl" = (
+"cto" = (
/obj/item/weapon/stock_parts/manipulator,
/obj/item/weapon/stock_parts/capacitor,
/obj/item/weapon/stock_parts/capacitor,
@@ -73363,17 +71321,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxm" = (
-/obj/machinery/computer/station_alert,
-/obj/structure/cable/orange{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cxn" = (
+"ctp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -73385,12 +71333,12 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cxo" = (
+"ctq" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cxp" = (
+"ctr" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -73404,7 +71352,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxq" = (
+"cts" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -73418,14 +71366,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxr" = (
+"ctt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxs" = (
+"ctu" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -73440,7 +71388,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxt" = (
+"ctv" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -73460,7 +71408,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxu" = (
+"ctw" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -73469,7 +71417,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cxv" = (
+"ctx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -73480,7 +71428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cxw" = (
+"cty" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -73497,7 +71445,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cxx" = (
+"ctz" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -73505,26 +71453,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxy" = (
+"ctA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxz" = (
+"ctB" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxA" = (
-/obj/effect/landmark/start/roboticist,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/assembly/robotics)
-"cxB" = (
+"ctC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -73534,7 +71476,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxC" = (
+"ctD" = (
/obj/structure/table,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -73548,7 +71490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxD" = (
+"ctE" = (
/obj/structure/window/reinforced,
/obj/structure/table,
/obj/item/device/assembly/flash/handheld,
@@ -73561,7 +71503,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxE" = (
+"ctF" = (
/obj/structure/table,
/obj/structure/window/reinforced,
/obj/item/weapon/surgical_drapes,
@@ -73571,7 +71513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cxF" = (
+"ctG" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 1;
name = "Research Division Access";
@@ -73584,20 +71526,20 @@
/area/medical/research{
name = "Research Division"
})
-"cxG" = (
+"ctH" = (
/obj/machinery/computer/rdconsole/core,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxH" = (
+"ctI" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxI" = (
+"ctJ" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/obj/effect/turf_decal/stripes/line{
@@ -73607,7 +71549,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxJ" = (
+"ctK" = (
/obj/structure/table/glass,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -73616,7 +71558,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxK" = (
+"ctL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -73624,7 +71566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxL" = (
+"ctM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -73634,7 +71576,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxM" = (
+"ctN" = (
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
@@ -73659,7 +71601,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cxN" = (
+"ctO" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -73677,7 +71619,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cxO" = (
+"ctP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -73694,7 +71636,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cxP" = (
+"ctQ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -73714,7 +71656,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cxQ" = (
+"ctR" = (
/turf/open/floor/plasteel/darkpurple/side{
tag = "icon-darkpurple (NORTH)";
icon_state = "darkpurple";
@@ -73722,7 +71664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cxR" = (
+"ctS" = (
/obj/machinery/light/small{
dir = 1
},
@@ -73733,7 +71675,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cxS" = (
+"ctT" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 8
@@ -73745,14 +71687,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cxT" = (
+"ctU" = (
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cxU" = (
+"ctV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -73761,7 +71703,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxV" = (
+"ctW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -73770,7 +71712,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxW" = (
+"ctX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -73780,7 +71722,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxX" = (
+"ctY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -73795,7 +71737,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cxY" = (
+"ctZ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -73807,7 +71749,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cxZ" = (
+"cua" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
pixel_x = 0;
@@ -73820,7 +71762,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cya" = (
+"cub" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whitepurple/side{
@@ -73830,7 +71772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyb" = (
+"cuc" = (
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (NORTH)";
icon_state = "whitepurplecorner";
@@ -73838,13 +71780,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyc" = (
+"cud" = (
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyd" = (
+"cue" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Toxins Mixing";
@@ -73859,7 +71801,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cye" = (
+"cuf" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/machinery/camera{
c_tag = "Robotics 2";
@@ -73870,13 +71812,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyf" = (
+"cug" = (
/obj/machinery/light,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyg" = (
+"cuh" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -73899,13 +71841,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyh" = (
+"cui" = (
/obj/machinery/computer/rdconsole/robotics,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyi" = (
+"cuj" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -73915,7 +71857,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyj" = (
+"cuk" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/storage/toolbox/electrical{
@@ -73930,13 +71872,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyk" = (
+"cul" = (
/obj/machinery/computer/aifixer,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyl" = (
+"cum" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -73947,7 +71889,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cym" = (
+"cun" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -73959,7 +71901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyn" = (
+"cuo" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 2;
@@ -73977,13 +71919,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyo" = (
+"cup" = (
/obj/machinery/light,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyp" = (
+"cuq" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/item/device/radio/headset/headset_sci{
pixel_x = -3
@@ -73992,7 +71934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyq" = (
+"cur" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -74002,7 +71944,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyr" = (
+"cus" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (EAST)";
@@ -74013,7 +71955,7 @@
/area/medical/research{
name = "Research Division"
})
-"cys" = (
+"cut" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (NORTH)";
@@ -74024,7 +71966,7 @@
/area/medical/research{
name = "Research Division"
})
-"cyt" = (
+"cuu" = (
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (NORTH)";
icon_state = "whitepurplecorner";
@@ -74034,7 +71976,7 @@
/area/medical/research{
name = "Research Division"
})
-"cyu" = (
+"cuv" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -74043,7 +71985,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyv" = (
+"cuw" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -74052,7 +71994,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyw" = (
+"cux" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -74066,7 +72008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyx" = (
+"cuy" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -74075,24 +72017,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyy" = (
+"cuz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyz" = (
+"cuA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyA" = (
+"cuB" = (
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyB" = (
+"cuC" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -74100,7 +72042,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyC" = (
+"cuD" = (
/obj/machinery/power/apc{
dir = 8;
name = "Research and Development APC";
@@ -74118,7 +72060,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cyD" = (
+"cuE" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -74132,57 +72074,50 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cyE" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/orange,
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cyF" = (
+"cuF" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cyG" = (
+"cuG" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cyH" = (
+"cuH" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cyI" = (
+"cuI" = (
/mob/living/simple_animal/slime,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cyJ" = (
+"cuJ" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cyK" = (
+"cuK" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cyL" = (
+"cuL" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cyM" = (
+"cuM" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/arrival)
-"cyN" = (
+"cuN" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -74199,7 +72134,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyO" = (
+"cuO" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
@@ -74209,13 +72144,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyP" = (
+"cuP" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyQ" = (
+"cuQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -74227,7 +72162,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cyR" = (
+"cuR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -74235,7 +72170,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyS" = (
+"cuS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -74244,7 +72179,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyT" = (
+"cuT" = (
/obj/machinery/door/airlock/glass_research{
name = "Robotics Lab";
req_access_txt = "29"
@@ -74260,14 +72195,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cyU" = (
+"cuU" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/research{
name = "Research Division"
})
-"cyV" = (
+"cuV" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitepurple/corner{
@@ -74277,14 +72212,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyW" = (
+"cuW" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyX" = (
+"cuX" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
@@ -74294,18 +72229,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cyY" = (
+"cuY" = (
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cyZ" = (
+"cuZ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cza" = (
+"cva" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 4
},
@@ -74313,12 +72248,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czb" = (
+"cvb" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czc" = (
+"cvc" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -74326,23 +72261,23 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"czd" = (
+"cvd" = (
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cze" = (
+"cve" = (
/obj/structure/table,
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czf" = (
+"cvf" = (
/obj/structure/frame/computer,
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czg" = (
+"cvg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/space,
/area/hallway/secondary/entry)
-"czh" = (
+"cvh" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
@@ -74353,7 +72288,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"czi" = (
+"cvi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -74362,7 +72297,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"czj" = (
+"cvj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (EAST)";
@@ -74371,7 +72306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"czk" = (
+"cvk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74382,7 +72317,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"czl" = (
+"cvl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74394,7 +72329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"czm" = (
+"cvm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -74405,7 +72340,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"czn" = (
+"cvn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74421,7 +72356,7 @@
/area/medical/research{
name = "Research Division"
})
-"czo" = (
+"cvo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74431,7 +72366,7 @@
/area/medical/research{
name = "Research Division"
})
-"czp" = (
+"cvp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74444,7 +72379,7 @@
/area/medical/research{
name = "Research Division"
})
-"czq" = (
+"cvq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74457,7 +72392,7 @@
/area/medical/research{
name = "Research Division"
})
-"czr" = (
+"cvr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74471,7 +72406,7 @@
/area/medical/research{
name = "Research Division"
})
-"czs" = (
+"cvs" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -74484,7 +72419,7 @@
/area/medical/research{
name = "Research Division"
})
-"czt" = (
+"cvt" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -74501,7 +72436,7 @@
/area/medical/research{
name = "Research Division"
})
-"czu" = (
+"cvu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74514,7 +72449,7 @@
/area/medical/research{
name = "Research Division"
})
-"czv" = (
+"cvv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74529,7 +72464,7 @@
/area/medical/research{
name = "Research Division"
})
-"czw" = (
+"cvw" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -74540,7 +72475,7 @@
/area/medical/research{
name = "Research Division"
})
-"czx" = (
+"cvx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74554,7 +72489,7 @@
/area/medical/research{
name = "Research Division"
})
-"czy" = (
+"cvy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -74562,7 +72497,7 @@
/area/medical/research{
name = "Research Division"
})
-"czz" = (
+"cvz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -74574,7 +72509,7 @@
/area/medical/research{
name = "Research Division"
})
-"czA" = (
+"cvA" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -74589,7 +72524,7 @@
/area/medical/research{
name = "Research Division"
})
-"czB" = (
+"cvB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -74600,7 +72535,7 @@
/area/medical/research{
name = "Research Division"
})
-"czC" = (
+"cvC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -74614,7 +72549,7 @@
/area/medical/research{
name = "Research Division"
})
-"czD" = (
+"cvD" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -74628,7 +72563,7 @@
/area/medical/research{
name = "Research Division"
})
-"czE" = (
+"cvE" = (
/obj/machinery/shower{
pixel_y = 24
},
@@ -74642,7 +72577,7 @@
/area/medical/research{
name = "Research Division"
})
-"czF" = (
+"cvF" = (
/obj/structure/closet/l3closet/scientist,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -74650,14 +72585,14 @@
/area/medical/research{
name = "Research Division"
})
-"czG" = (
+"cvG" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/research{
name = "Research Division"
})
-"czH" = (
+"cvH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -74672,7 +72607,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czI" = (
+"cvI" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod1";
name = "containment door 1"
@@ -74694,7 +72629,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czJ" = (
+"cvJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -74710,7 +72645,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czK" = (
+"cvK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -74725,7 +72660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czL" = (
+"cvL" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod2";
name = "containment door 2"
@@ -74747,7 +72682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czM" = (
+"cvM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -74763,7 +72698,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czN" = (
+"cvN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -74778,7 +72713,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czO" = (
+"cvO" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod3";
name = "containment door 3"
@@ -74800,7 +72735,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czP" = (
+"cvP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -74816,7 +72751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czQ" = (
+"cvQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -74831,7 +72766,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czR" = (
+"cvR" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod4";
name = "containment door 4"
@@ -74853,7 +72788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czS" = (
+"cvS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -74869,12 +72804,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czT" = (
+"cvT" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czU" = (
+"cvU" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "47"
@@ -74883,17 +72818,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"czV" = (
+"cvV" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czW" = (
+"cvW" = (
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"czX" = (
+"cvX" = (
/obj/structure/chair/comfy{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -74901,14 +72836,14 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"czY" = (
+"cvY" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"czZ" = (
+"cvZ" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -74930,7 +72865,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAa" = (
+"cwa" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 8
@@ -74948,7 +72883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAb" = (
+"cwb" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -4;
pixel_y = 1
@@ -74987,7 +72922,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAc" = (
+"cwc" = (
/obj/structure/chair/stool,
/obj/structure/cable/orange{
d1 = 4;
@@ -75004,7 +72939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAd" = (
+"cwd" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
/obj/item/weapon/screwdriver{
@@ -75025,7 +72960,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAe" = (
+"cwe" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75041,7 +72976,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAf" = (
+"cwf" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75060,7 +72995,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAg" = (
+"cwg" = (
/obj/machinery/door/airlock/glass_research{
name = "Toxins Lab";
req_access_txt = "8"
@@ -75080,7 +73015,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAh" = (
+"cwh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -75101,7 +73036,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAi" = (
+"cwi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -75119,7 +73054,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAj" = (
+"cwj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75137,7 +73072,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAk" = (
+"cwk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75158,7 +73093,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAl" = (
+"cwl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75177,7 +73112,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAm" = (
+"cwm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -75201,7 +73136,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAn" = (
+"cwn" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -75219,7 +73154,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAo" = (
+"cwo" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -75238,7 +73173,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAp" = (
+"cwp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -75257,7 +73192,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAq" = (
+"cwq" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75275,7 +73210,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAr" = (
+"cwr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -75292,7 +73227,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAs" = (
+"cws" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75316,7 +73251,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAt" = (
+"cwt" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/orange{
d1 = 4;
@@ -75335,7 +73270,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAu" = (
+"cwu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75354,7 +73289,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAv" = (
+"cwv" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75370,7 +73305,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAw" = (
+"cww" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75388,7 +73323,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAx" = (
+"cwx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -75409,7 +73344,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAy" = (
+"cwy" = (
/obj/machinery/door/airlock/glass_research{
name = "Decontamination Center";
req_access_txt = "55"
@@ -75431,7 +73366,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAz" = (
+"cwz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -75450,7 +73385,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAA" = (
+"cwA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -75460,7 +73395,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAB" = (
+"cwB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -75473,7 +73408,7 @@
/area/medical/research{
name = "Research Division"
})
-"cAC" = (
+"cwC" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75491,7 +73426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAD" = (
+"cwD" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -75507,7 +73442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAE" = (
+"cwE" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -75524,7 +73459,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAF" = (
+"cwF" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75542,7 +73477,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAG" = (
+"cwG" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75560,7 +73495,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAH" = (
+"cwH" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -75578,7 +73513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAI" = (
+"cwI" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -75587,7 +73522,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAJ" = (
+"cwJ" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/plasma,
/obj/item/device/radio/intercom{
@@ -75599,18 +73534,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAK" = (
+"cwK" = (
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAL" = (
+"cwL" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cAM" = (
+"cwM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -75628,13 +73563,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAN" = (
+"cwN" = (
/obj/machinery/door/airlock/shuttle{
name = "Cockpit"
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cAO" = (
+"cwO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -75648,7 +73583,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAP" = (
+"cwP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -75666,7 +73601,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAQ" = (
+"cwQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -75679,7 +73614,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAR" = (
+"cwR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -75697,7 +73632,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAS" = (
+"cwS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -75717,7 +73652,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAT" = (
+"cwT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -75730,7 +73665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cAU" = (
+"cwU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -75745,13 +73680,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAV" = (
+"cwV" = (
/obj/structure/closet/bombcloset,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAW" = (
+"cwW" = (
/obj/item/device/assembly/signaler{
pixel_x = 0;
pixel_y = 8
@@ -75779,7 +73714,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAX" = (
+"cwX" = (
/obj/item/device/transfer_valve{
pixel_x = -5
},
@@ -75803,7 +73738,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAY" = (
+"cwY" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
pixel_y = 4
@@ -75825,7 +73760,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cAZ" = (
+"cwZ" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -75834,13 +73769,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cBa" = (
+"cxa" = (
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cBb" = (
+"cxb" = (
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -75849,7 +73784,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cBc" = (
+"cxc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -75857,7 +73792,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cBd" = (
+"cxd" = (
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (WEST)";
icon_state = "whitepurple";
@@ -75867,7 +73802,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBe" = (
+"cxe" = (
/obj/structure/sign/bluecross_2{
pixel_x = -32;
pixel_y = -32
@@ -75878,7 +73813,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBf" = (
+"cxf" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 2;
@@ -75892,7 +73827,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBg" = (
+"cxg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -75911,7 +73846,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBh" = (
+"cxh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -75921,14 +73856,14 @@
/area/medical/research{
name = "Research Division"
})
-"cBi" = (
+"cxi" = (
/turf/open/floor/plasteel/whitepurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/research{
name = "Research Division"
})
-"cBj" = (
+"cxj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/corner{
tag = "icon-whitepurplecorner (WEST)";
@@ -75939,7 +73874,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBk" = (
+"cxk" = (
/obj/machinery/light,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -75947,7 +73882,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBl" = (
+"cxl" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -75955,7 +73890,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBm" = (
+"cxm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -75968,7 +73903,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBn" = (
+"cxn" = (
/obj/machinery/camera{
c_tag = "Research Eastern Wing";
dir = 1;
@@ -75981,7 +73916,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBo" = (
+"cxo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -75995,7 +73930,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBp" = (
+"cxp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -76005,7 +73940,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBq" = (
+"cxq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -76018,7 +73953,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBr" = (
+"cxr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -76028,7 +73963,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBs" = (
+"cxs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76049,7 +73984,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBt" = (
+"cxt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -76059,7 +73994,7 @@
/area/medical/research{
name = "Research Division"
})
-"cBu" = (
+"cxu" = (
/obj/machinery/door/airlock/glass_research{
name = "Xenobiology";
req_access_txt = "55"
@@ -76071,7 +74006,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBv" = (
+"cxv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -76079,7 +74014,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBw" = (
+"cxw" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76092,7 +74027,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBx" = (
+"cxx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -76100,7 +74035,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBy" = (
+"cxy" = (
/obj/structure/sign/electricshock{
pixel_y = 32
},
@@ -76114,12 +74049,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBz" = (
+"cxz" = (
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBA" = (
+"cxA" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76129,7 +74064,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBB" = (
+"cxB" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -76139,7 +74074,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBC" = (
+"cxC" = (
/obj/machinery/light{
dir = 1
},
@@ -76150,7 +74085,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBD" = (
+"cxD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -76159,7 +74094,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBE" = (
+"cxE" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -76168,7 +74103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBF" = (
+"cxF" = (
/obj/structure/chair{
dir = 4
},
@@ -76176,13 +74111,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBG" = (
+"cxG" = (
/obj/machinery/computer/camera_advanced/xenobio,
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cBH" = (
+"cxH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76195,7 +74130,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cBI" = (
+"cxI" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -76208,32 +74143,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBJ" = (
+"cxJ" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cBK" = (
+"cxK" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cBL" = (
+"cxL" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cBM" = (
+"cxM" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBN" = (
+"cxN" = (
/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBO" = (
+"cxO" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -76246,24 +74181,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cBP" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Aft Asteroid Maintenance";
- req_access_txt = "47"
- },
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cBQ" = (
+"cxP" = (
/obj/machinery/door/airlock/command{
name = "Server Room";
req_access = null;
@@ -76273,12 +74191,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cBR" = (
+"cxQ" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cBS" = (
+"cxR" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/whitepurple/corner{
@@ -76290,19 +74208,19 @@
/area/medical/research{
name = "Research Division"
})
-"cBT" = (
+"cxS" = (
/turf/open/floor/plasteel/whitepurple/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/research{
name = "Research Division"
})
-"cBU" = (
+"cxT" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"cBV" = (
+"cxU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76313,7 +74231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cBW" = (
+"cxV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76325,7 +74243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cBX" = (
+"cxW" = (
/obj/machinery/door/airlock/glass_research{
name = "Research Director's Office";
req_access_txt = "30"
@@ -76334,7 +74252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cBY" = (
+"cxX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76346,7 +74264,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cBZ" = (
+"cxY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76354,7 +74272,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCa" = (
+"cxZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76363,7 +74281,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCb" = (
+"cya" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
req_access_txt = "63"
@@ -76378,12 +74296,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCc" = (
+"cyb" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cCd" = (
+"cyc" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -76408,7 +74326,7 @@
/area/medical/research{
name = "Research Division"
})
-"cCe" = (
+"cyd" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76424,7 +74342,7 @@
/area/medical/research{
name = "Research Division"
})
-"cCf" = (
+"cye" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76445,7 +74363,7 @@
/area/medical/research{
name = "Research Division"
})
-"cCg" = (
+"cyf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76463,7 +74381,7 @@
/area/medical/research{
name = "Research Division"
})
-"cCh" = (
+"cyg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76476,7 +74394,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCi" = (
+"cyh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76499,7 +74417,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCj" = (
+"cyi" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76513,7 +74431,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCk" = (
+"cyj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -76527,7 +74445,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCl" = (
+"cyk" = (
/obj/machinery/monkey_recycler,
/obj/structure/cable/orange{
d1 = 4;
@@ -76541,7 +74459,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCm" = (
+"cyl" = (
/obj/machinery/smartfridge/extract/preloaded,
/obj/structure/cable/orange{
d1 = 4;
@@ -76555,7 +74473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCn" = (
+"cym" = (
/obj/machinery/processor{
desc = "A machine used to process slimes and retrieve their extract.";
name = "Slime Processor"
@@ -76572,21 +74490,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCo" = (
-/obj/effect/landmark/start/scientist,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/xenobiology)
-"cCp" = (
+"cyn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -76605,7 +74509,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCq" = (
+"cyo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -76613,7 +74517,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCr" = (
+"cyp" = (
/obj/structure/table,
/obj/item/weapon/extinguisher,
/obj/item/weapon/extinguisher,
@@ -76625,7 +74529,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCs" = (
+"cyq" = (
/obj/machinery/power/apc{
dir = 8;
name = "Xenobiology APC";
@@ -76644,7 +74548,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cCt" = (
+"cyr" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76661,44 +74565,44 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cCu" = (
+"cys" = (
/obj/machinery/door/airlock/shuttle,
/obj/structure/fans/tiny,
/turf/open/floor/mineral/titanium,
/area/shuttle/arrival)
-"cCv" = (
+"cyt" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCw" = (
+"cyu" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cCx" = (
+"cyv" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion";
dir = 4
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"cCy" = (
+"cyw" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"cCz" = (
+"cyx" = (
/obj/structure/window/shuttle,
/obj/structure/grille,
/turf/open/floor/plating,
/area/shuttle/transport)
-"cCA" = (
+"cyy" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/transport)
-"cCB" = (
+"cyz" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -76708,7 +74612,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cCC" = (
+"cyA" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -76716,7 +74620,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cCD" = (
+"cyB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -76743,7 +74647,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cCE" = (
+"cyC" = (
/obj/machinery/power/apc{
dir = 1;
name = "Toxins Lab APC";
@@ -76759,18 +74663,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cCF" = (
+"cyD" = (
/obj/machinery/r_n_d/server/core,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cCG" = (
+"cyE" = (
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cCH" = (
+"cyF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -76778,7 +74682,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cCI" = (
+"cyG" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -76788,12 +74692,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cCJ" = (
+"cyH" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cCK" = (
+"cyI" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/whitepurple/side{
@@ -76805,7 +74709,7 @@
/area/medical/research{
name = "Research Division"
})
-"cCL" = (
+"cyJ" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (EAST)";
@@ -76816,7 +74720,7 @@
/area/medical/research{
name = "Research Division"
})
-"cCM" = (
+"cyK" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins,
/obj/item/weapon/cartridge/signal/toxins{
@@ -76831,14 +74735,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cCN" = (
+"cyL" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cCO" = (
+"cyM" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -76847,19 +74751,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"cCP" = (
+"cyN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cCQ" = (
+"cyO" = (
/obj/machinery/portable_atmospherics/scrubber/huge/movable,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"cCR" = (
+"cyP" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/turf/open/floor/plasteel/red/side{
@@ -76869,7 +74773,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCS" = (
+"cyQ" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/computer/security/telescreen{
@@ -76883,7 +74787,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCT" = (
+"cyR" = (
/obj/structure/table,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -76891,14 +74795,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCU" = (
+"cyS" = (
/turf/open/floor/plasteel/red/side{
icon_state = "red";
dir = 1;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCV" = (
+"cyT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -76922,14 +74826,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cCW" = (
+"cyU" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cCX" = (
+"cyV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -76942,7 +74846,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cCY" = (
+"cyW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -76950,7 +74854,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cCZ" = (
+"cyX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -76960,7 +74864,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDa" = (
+"cyY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -76983,7 +74887,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDb" = (
+"cyZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -76993,7 +74897,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDc" = (
+"cza" = (
/obj/machinery/door/airlock/glass_research{
name = "Xenobiology";
req_access_txt = "55"
@@ -77002,7 +74906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDd" = (
+"czb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -77013,7 +74917,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDe" = (
+"czc" = (
/obj/machinery/light,
/obj/structure/sign/electricshock{
pixel_y = -32
@@ -77022,7 +74926,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDf" = (
+"czd" = (
/obj/structure/sign/electricshock{
pixel_y = -32
},
@@ -77030,7 +74934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDg" = (
+"cze" = (
/obj/structure/sign/electricshock{
pixel_y = -32
},
@@ -77044,7 +74948,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDh" = (
+"czf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77059,7 +74963,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDi" = (
+"czg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -77078,7 +74982,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDj" = (
+"czh" = (
/obj/structure/chair{
dir = 4
},
@@ -77088,19 +74992,19 @@
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cDk" = (
+"czi" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cDl" = (
+"czj" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cDm" = (
+"czk" = (
/obj/structure/chair{
dir = 8
},
@@ -77110,7 +75014,7 @@
},
/turf/open/floor/plasteel/shuttle,
/area/shuttle/arrival)
-"cDn" = (
+"czl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -77130,7 +75034,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDo" = (
+"czm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77151,47 +75055,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cDp" = (
+"czn" = (
/turf/open/floor/mineral/titanium/blue,
/turf/closed/wall/mineral/titanium/interior,
/area/shuttle/transport)
-"cDq" = (
+"czo" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cDr" = (
+"czp" = (
/obj/machinery/computer/shuttle/ferry/request,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cDs" = (
+"czq" = (
/obj/structure/chair,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cDt" = (
+"czr" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cDu" = (
-/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/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cDv" = (
+"czs" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -77204,7 +75093,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cDw" = (
+"czt" = (
/obj/machinery/light/small{
dir = 8
},
@@ -77212,7 +75101,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cDx" = (
+"czu" = (
/obj/machinery/door/airlock/glass_command{
name = "Server Room";
req_access_txt = "30"
@@ -77221,19 +75110,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cDy" = (
+"czv" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cDz" = (
+"czw" = (
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cDA" = (
+"czx" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -77242,7 +75131,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cDB" = (
+"czy" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2,
/obj/machinery/camera{
@@ -77261,7 +75150,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDC" = (
+"czz" = (
/obj/machinery/light,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
@@ -77273,7 +75162,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDD" = (
+"czA" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whitepurple/side{
tag = "icon-whitepurple (SOUTHEAST)";
@@ -77284,18 +75173,18 @@
/area/medical/research{
name = "Research Division"
})
-"cDE" = (
+"czB" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"cDF" = (
+"czC" = (
/obj/machinery/suit_storage_unit/rd,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cDG" = (
+"czD" = (
/obj/structure/table,
/obj/machinery/newscaster/security_unit{
pixel_x = -28
@@ -77307,7 +75196,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cDH" = (
+"czE" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -77317,12 +75206,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cDI" = (
+"czF" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cDJ" = (
+"czG" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -77339,14 +75228,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cDK" = (
+"czH" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cDL" = (
+"czI" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -77362,7 +75251,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cDM" = (
+"czJ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -77372,7 +75261,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cDN" = (
+"czK" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -77389,7 +75278,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cDO" = (
+"czL" = (
/obj/machinery/door/airlock/glass_research{
name = "Testing Lab";
req_access_txt = "55"
@@ -77411,7 +75300,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDP" = (
+"czM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -77430,7 +75319,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDQ" = (
+"czN" = (
/obj/structure/sign/xenobio{
pixel_x = 32
},
@@ -77440,7 +75329,7 @@
/area/medical/research{
name = "Research Division"
})
-"cDR" = (
+"czO" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -77454,7 +75343,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDS" = (
+"czP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -77467,7 +75356,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDT" = (
+"czQ" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -77478,7 +75367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDU" = (
+"czR" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -77492,7 +75381,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDV" = (
+"czS" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -77506,7 +75395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDW" = (
+"czT" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -77520,14 +75409,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDX" = (
+"czU" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/whitepurple{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDY" = (
+"czV" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers,
/obj/item/weapon/storage/box/syringes,
@@ -77537,7 +75426,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cDZ" = (
+"czW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -77545,7 +75434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cEa" = (
+"czX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -77554,7 +75443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cEb" = (
+"czY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77572,7 +75461,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cEc" = (
+"czZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -77589,11 +75478,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cEd" = (
+"cAa" = (
/obj/machinery/door/airlock/shuttle,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cEe" = (
+"cAb" = (
/obj/machinery/door/airlock/shuttle,
/obj/docking_port/mobile{
dir = 8;
@@ -77617,13 +75506,13 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cEf" = (
+"cAc" = (
/obj/machinery/r_n_d/server/robotics,
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cEg" = (
+"cAd" = (
/obj/machinery/camera{
c_tag = "Research Server Room";
dir = 1;
@@ -77634,25 +75523,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cEh" = (
+"cAe" = (
/obj/machinery/computer/rdservercontrol,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cEi" = (
+"cAf" = (
/obj/structure/table,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cEj" = (
+"cAg" = (
/obj/machinery/modular_computer/console/preset/research,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cEk" = (
+"cAh" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/aicore{
pixel_x = -2;
@@ -77663,7 +75552,7 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"cEl" = (
+"cAi" = (
/obj/machinery/computer/secure_data,
/obj/item/device/radio/intercom{
broadcasting = 0;
@@ -77677,7 +75566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cEm" = (
+"cAj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -77692,7 +75581,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cEn" = (
+"cAk" = (
/obj/machinery/light,
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -32
@@ -77701,8 +75590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cEo" = (
-/obj/structure/closet/secure_closet/security/engine,
+"cAl" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 2;
@@ -77713,11 +75601,12 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/structure/closet/secure_closet/security/science,
/turf/open/floor/plasteel/red/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cEp" = (
+"cAm" = (
/obj/structure/filingcabinet,
/obj/structure/cable/orange{
d1 = 1;
@@ -77730,21 +75619,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cEq" = (
+"cAn" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEr" = (
+"cAo" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEs" = (
+"cAp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -77754,12 +75643,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEt" = (
+"cAq" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEu" = (
+"cAr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/sign/map/left/ceres{
@@ -77769,22 +75658,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/suit_storage_unit/rd,
-/obj/machinery/door/window/brigdoor/northleft{
- name = "Research Director's Hardsuit";
- req_access_txt = "30"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/research{
- name = "Research Division"
- })
-"cEw" = (
+"cAs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -77799,7 +75673,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEx" = (
+"cAt" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod5";
name = "containment door 5"
@@ -77821,7 +75695,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEy" = (
+"cAu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -77837,7 +75711,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEz" = (
+"cAv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -77852,7 +75726,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEA" = (
+"cAw" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod6";
name = "containment door 6"
@@ -77874,7 +75748,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEB" = (
+"cAx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -77890,7 +75764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEC" = (
+"cAy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -77905,7 +75779,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cED" = (
+"cAz" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod7";
name = "containment door 7"
@@ -77927,7 +75801,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEE" = (
+"cAA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -77943,7 +75817,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEF" = (
+"cAB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -77954,7 +75828,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEG" = (
+"cAC" = (
/obj/machinery/door/poddoor/preopen{
id = "XenoPod8";
name = "containment door 8"
@@ -77976,7 +75850,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEH" = (
+"cAD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
@@ -77988,7 +75862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEI" = (
+"cAE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -77996,7 +75870,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEJ" = (
+"cAF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Kill Chamber";
@@ -78009,7 +75883,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEK" = (
+"cAG" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -78021,7 +75895,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cEL" = (
+"cAH" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -78035,29 +75909,29 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cEM" = (
+"cAI" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cEN" = (
+"cAJ" = (
/obj/structure/closet/crate,
/obj/machinery/light,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cEO" = (
+"cAK" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cEP" = (
+"cAL" = (
/obj/structure/chair{
dir = 1
},
/obj/machinery/light,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"cEQ" = (
+"cAM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -78072,7 +75946,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cER" = (
+"cAN" = (
/obj/structure/closet/crate,
/obj/item/weapon/storage/bag/ore,
/obj/item/weapon/pickaxe/emergency,
@@ -78080,7 +75954,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cES" = (
+"cAO" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -78090,12 +75964,12 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"cET" = (
+"cAP" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEU" = (
+"cAQ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -78104,7 +75978,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEV" = (
+"cAR" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -78123,14 +75997,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEW" = (
+"cAS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEX" = (
+"cAT" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
@@ -78139,7 +76013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cEY" = (
+"cAU" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkpurple/side{
tag = "icon-darkpurple (NORTH)";
@@ -78148,14 +76022,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cEZ" = (
+"cAV" = (
/turf/open/floor/circuit{
baseturf = /turf/open/floor/plating/asteroid/airless;
initial_gas_mix = "n2=500;TEMP=80";
name = "Killroom Floor"
},
/area/toxins/xenobiology)
-"cFa" = (
+"cAW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -78165,7 +76039,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFb" = (
+"cAX" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -78181,7 +76055,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFc" = (
+"cAY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -78196,7 +76070,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFd" = (
+"cAZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -78211,22 +76085,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFe" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cFf" = (
+"cBa" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -78248,7 +76107,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFg" = (
+"cBb" = (
/obj/machinery/power/apc{
dir = 1;
name = "RnD Server APC";
@@ -78272,7 +76131,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/server)
-"cFh" = (
+"cBc" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -78289,7 +76148,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFi" = (
+"cBd" = (
/obj/machinery/light_switch{
pixel_y = -23
},
@@ -78298,7 +76157,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cFj" = (
+"cBe" = (
/obj/machinery/computer/card/minor/rd,
/obj/machinery/camera{
c_tag = "Research Director's Office";
@@ -78310,7 +76169,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cFk" = (
+"cBf" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -78318,12 +76177,12 @@
/obj/effect/landmark/xmastree/rdrod,
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"cFl" = (
+"cBg" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFm" = (
+"cBh" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
},
@@ -78335,7 +76194,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFn" = (
+"cBi" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -78343,7 +76202,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFo" = (
+"cBj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/chair/stool,
@@ -78351,7 +76210,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFp" = (
+"cBk" = (
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
@@ -78368,7 +76227,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFq" = (
+"cBl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -78385,7 +76244,7 @@
name = "Killroom Floor"
},
/area/toxins/xenobiology)
-"cFr" = (
+"cBm" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
@@ -78396,7 +76255,7 @@
name = "Killroom Floor"
},
/area/toxins/xenobiology)
-"cFs" = (
+"cBn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -78408,18 +76267,7 @@
name = "Killroom Floor"
},
/area/toxins/xenobiology)
-"cFt" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cFu" = (
+"cBo" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -78427,7 +76275,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFv" = (
+"cBp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -78443,7 +76291,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFw" = (
+"cBq" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -78460,7 +76308,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFx" = (
+"cBr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -78476,7 +76324,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFy" = (
+"cBs" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/effect/turf_decal/stripes/line{
@@ -78486,19 +76334,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFz" = (
+"cBt" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFA" = (
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/misc_lab)
-"cFB" = (
+"cBu" = (
/obj/structure/table,
/obj/item/stack/packageWrap,
/obj/item/device/destTagger,
@@ -78506,13 +76348,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFC" = (
+"cBv" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/darkpurple/side{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cFD" = (
+"cBw" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -78523,13 +76365,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cFE" = (
+"cBx" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cFF" = (
+"cBy" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -78542,7 +76384,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFG" = (
+"cBz" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -78560,7 +76402,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFH" = (
+"cBA" = (
/obj/machinery/light/small,
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
@@ -78569,7 +76411,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFI" = (
+"cBB" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -78577,7 +76419,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFJ" = (
+"cBC" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -78602,7 +76444,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cFK" = (
+"cBD" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -78613,7 +76455,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFL" = (
+"cBE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment{
@@ -78632,7 +76474,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFM" = (
+"cBF" = (
/obj/structure/window/reinforced,
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -78645,7 +76487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFN" = (
+"cBG" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -78662,7 +76504,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFO" = (
+"cBH" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 8
@@ -78671,7 +76513,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cFP" = (
+"cBI" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
target_temperature = 80;
dir = 2;
@@ -78683,7 +76525,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFQ" = (
+"cBJ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/light/small{
dir = 1
@@ -78694,7 +76536,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cFR" = (
+"cBK" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Docking Asteroid Hall 14";
@@ -78705,7 +76547,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFS" = (
+"cBL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -78717,7 +76559,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFT" = (
+"cBM" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -78729,7 +76571,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFU" = (
+"cBN" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -78743,7 +76585,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFV" = (
+"cBO" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Docking Asteroid Hall 10";
@@ -78754,7 +76596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFW" = (
+"cBP" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -78771,7 +76613,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFX" = (
+"cBQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -78785,10 +76627,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cFY" = (
+"cBR" = (
/turf/closed/mineral,
/area/hallway/secondary/entry)
-"cFZ" = (
+"cBS" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -78798,14 +76640,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGa" = (
+"cBT" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/r_n_d/experimentor,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGb" = (
+"cBU" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -78824,7 +76666,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGc" = (
+"cBV" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -78838,7 +76680,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGd" = (
+"cBW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -78848,7 +76690,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGe" = (
+"cBX" = (
/obj/machinery/autolathe,
/obj/structure/window/reinforced{
dir = 1;
@@ -78864,7 +76706,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGf" = (
+"cBY" = (
/obj/structure/plasticflaps,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -78874,14 +76716,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGg" = (
+"cBZ" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cGh" = (
+"cCa" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -78896,7 +76738,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cGi" = (
+"cCb" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -78911,13 +76753,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cGj" = (
+"cCc" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGk" = (
+"cCd" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -78925,7 +76767,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGl" = (
+"cCe" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -78933,11 +76775,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGm" = (
+"cCf" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/neutral,
/area/shuttle/arrival)
-"cGn" = (
+"cCg" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -78946,7 +76788,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGo" = (
+"cCh" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -78959,7 +76801,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGp" = (
+"cCi" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -78969,7 +76811,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGq" = (
+"cCj" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Disposals Maintenance";
req_access_txt = "12"
@@ -78983,7 +76825,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGr" = (
+"cCk" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -78997,7 +76839,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGs" = (
+"cCl" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -79007,18 +76849,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGt" = (
+"cCm" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGu" = (
+"cCn" = (
/obj/machinery/light/small,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cGv" = (
+"cCo" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -79031,7 +76873,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cGw" = (
+"cCp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -79044,7 +76886,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGx" = (
+"cCq" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -79057,7 +76899,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGy" = (
+"cCr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -79067,7 +76909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGz" = (
+"cCs" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -79079,22 +76921,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGA" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cGB" = (
+"cCt" = (
/obj/machinery/door/airlock/shuttle{
name = "Engines"
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"cGC" = (
+"cCu" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -79104,7 +76937,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGD" = (
+"cCv" = (
/obj/machinery/light/small{
dir = 1
},
@@ -79117,11 +76950,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGE" = (
+"cCw" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/asteroid,
/area/hallway/secondary/entry)
-"cGF" = (
+"cCx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -79130,7 +76963,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGG" = (
+"cCy" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -79144,7 +76977,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGH" = (
+"cCz" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -79152,7 +76985,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGI" = (
+"cCA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/orange{
@@ -79168,7 +77001,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGJ" = (
+"cCB" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -79180,7 +77013,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGK" = (
+"cCC" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Injector Toggle";
@@ -79190,7 +77023,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGL" = (
+"cCD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
icon_state = "connector_map";
dir = 8
@@ -79199,24 +77032,24 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGM" = (
+"cCE" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGN" = (
+"cCF" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGO" = (
+"cCG" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced,
/turf/open/floor/plating,
/area/shuttle/arrival)
-"cGP" = (
+"cCH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -79226,16 +77059,16 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cGQ" = (
+"cCI" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/asteroid,
/area/hallway/secondary/entry)
-"cGR" = (
+"cCJ" = (
/turf/closed/wall,
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cGS" = (
+"cCK" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
tag = "icon-intake (NORTH)";
@@ -79246,29 +77079,20 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cGT" = (
+"cCL" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/mine/unexplored{
name = "Research Asteroid"
})
-"cGU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"cGV" = (
+"cCM" = (
/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGW" = (
+"cCN" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
},
@@ -79277,7 +77101,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGX" = (
+"cCO" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
name = "Station Intercom (General)";
@@ -79288,7 +77112,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGY" = (
+"cCP" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -79297,7 +77121,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cGZ" = (
+"cCQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -79306,7 +77130,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cHa" = (
+"cCR" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -79315,7 +77139,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cHb" = (
+"cCS" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -79328,7 +77152,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHc" = (
+"cCT" = (
/obj/structure/barricade/wooden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -79336,13 +77160,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHd" = (
+"cCU" = (
/obj/structure/shuttle/engine/propulsion{
name = "shuttle engine"
},
/turf/open/floor/plating/airless,
/area/shuttle/arrival)
-"cHe" = (
+"cCV" = (
/obj/docking_port/stationary{
dir = 1;
dwidth = 4;
@@ -79359,12 +77183,12 @@
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cHf" = (
+"cCW" = (
/turf/closed/wall,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHg" = (
+"cCX" = (
/obj/structure/disposaloutlet{
icon_state = "outlet";
dir = 1
@@ -79374,13 +77198,13 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHh" = (
+"cCY" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHi" = (
+"cCZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -79394,7 +77218,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHj" = (
+"cDa" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "47"
@@ -79403,7 +77227,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cHk" = (
+"cDb" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb,
@@ -79413,7 +77237,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHl" = (
+"cDc" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/astplate{
@@ -79422,10 +77246,10 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHm" = (
+"cDd" = (
/turf/closed/wall,
/area/hallway/secondary/entry)
-"cHn" = (
+"cDe" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -79438,13 +77262,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cHo" = (
+"cDf" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/rust,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHp" = (
+"cDg" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -79453,12 +77277,12 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHq" = (
+"cDh" = (
/turf/closed/wall/rust,
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHr" = (
+"cDi" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79474,7 +77298,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHs" = (
+"cDj" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79493,7 +77317,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHt" = (
+"cDk" = (
/obj/machinery/power/apc{
dir = 1;
name = "Testing Lab APC";
@@ -79517,7 +77341,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cHu" = (
+"cDl" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79533,7 +77357,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHv" = (
+"cDm" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -79549,7 +77373,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHw" = (
+"cDn" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating{
@@ -79558,7 +77382,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHx" = (
+"cDo" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/poppy,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -79568,7 +77392,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHy" = (
+"cDp" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 1;
@@ -79579,7 +77403,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cHz" = (
+"cDq" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -79592,7 +77416,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cHA" = (
+"cDr" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
d1 = 4;
@@ -79601,7 +77425,7 @@
},
/turf/open/space,
/area/space)
-"cHB" = (
+"cDs" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
d1 = 2;
@@ -79610,12 +77434,12 @@
},
/turf/open/space,
/area/space)
-"cHC" = (
+"cDt" = (
/turf/closed/wall/rust,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHD" = (
+"cDu" = (
/obj/machinery/power/apc{
dir = 1;
name = "South-Eastern External Waste Belt APC";
@@ -79631,7 +77455,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHE" = (
+"cDv" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -79643,7 +77467,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHF" = (
+"cDw" = (
/obj/machinery/disposal/deliveryChute,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -79652,7 +77476,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHG" = (
+"cDx" = (
/obj/machinery/conveyor/auto,
/obj/machinery/light/small{
dir = 8
@@ -79661,7 +77485,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHH" = (
+"cDy" = (
/obj/structure/rack,
/obj/item/clothing/mask/breath,
/obj/item/weapon/tank/internals/emergency_oxygen,
@@ -79672,7 +77496,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHI" = (
+"cDz" = (
/obj/effect/turf_decal/stripes/end,
/obj/structure/cable/orange{
d2 = 2;
@@ -79688,7 +77512,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHJ" = (
+"cDA" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
@@ -79697,7 +77521,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHK" = (
+"cDB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -79712,7 +77536,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHL" = (
+"cDC" = (
/obj/structure/closet,
/obj/item/seeds/random,
/obj/item/seeds/chili,
@@ -79722,7 +77546,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHM" = (
+"cDD" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -79730,7 +77554,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHN" = (
+"cDE" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light/small{
dir = 4
@@ -79741,7 +77565,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHO" = (
+"cDF" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -79754,7 +77578,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHP" = (
+"cDG" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -79765,7 +77589,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHQ" = (
+"cDH" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -79775,7 +77599,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHR" = (
+"cDI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -79785,7 +77609,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHS" = (
+"cDJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -79793,7 +77617,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHT" = (
+"cDK" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 1
@@ -79805,13 +77629,13 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cHU" = (
+"cDL" = (
/obj/machinery/conveyor/auto,
/turf/open/floor/plating,
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHV" = (
+"cDM" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -79819,7 +77643,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHW" = (
+"cDN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -79829,13 +77653,13 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHX" = (
+"cDO" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cHY" = (
+"cDP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
@@ -79847,7 +77671,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cHZ" = (
+"cDQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
@@ -79864,7 +77688,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIa" = (
+"cDR" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -79872,7 +77696,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIb" = (
+"cDS" = (
/obj/structure/table,
/obj/item/weapon/cultivator,
/obj/item/seeds/banana,
@@ -79882,7 +77706,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIc" = (
+"cDT" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -79890,7 +77714,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cId" = (
+"cDU" = (
/obj/machinery/hydroponics/soil,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -79898,21 +77722,21 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIe" = (
+"cDV" = (
/obj/structure/grille/broken,
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plating,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIf" = (
+"cDW" = (
/obj/effect/turf_decal/stripes/line,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIg" = (
+"cDX" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
@@ -79920,7 +77744,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIh" = (
+"cDY" = (
/obj/machinery/conveyor/auto{
icon_state = "conveyor0";
dir = 1
@@ -79929,7 +77753,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIi" = (
+"cDZ" = (
/obj/machinery/conveyor/auto{
dir = 9;
icon_state = "conveyor0";
@@ -79939,7 +77763,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIj" = (
+"cEa" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (SOUTHEAST)";
icon_state = "conveyor0";
@@ -79949,7 +77773,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIk" = (
+"cEb" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -79962,7 +77786,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIl" = (
+"cEc" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/orange{
d1 = 4;
@@ -79973,7 +77797,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIm" = (
+"cEd" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -79986,7 +77810,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIn" = (
+"cEe" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -79997,7 +77821,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIo" = (
+"cEf" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -80012,7 +77836,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIp" = (
+"cEg" = (
/obj/machinery/light/small,
/obj/structure/cable/orange{
d1 = 4;
@@ -80025,7 +77849,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIq" = (
+"cEh" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -80037,7 +77861,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIr" = (
+"cEi" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80055,7 +77879,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIs" = (
+"cEj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80074,7 +77898,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIt" = (
+"cEk" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -80090,7 +77914,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIu" = (
+"cEl" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -80101,7 +77925,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIv" = (
+"cEm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
@@ -80110,20 +77934,20 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIw" = (
+"cEn" = (
/obj/structure/table,
/obj/item/weapon/weldingtool/mini,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIx" = (
+"cEo" = (
/obj/item/chair,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIy" = (
+"cEp" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (NORTHEAST)";
icon_state = "conveyor0";
@@ -80133,7 +77957,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIz" = (
+"cEq" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -80143,7 +77967,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIA" = (
+"cEr" = (
/obj/machinery/conveyor/auto{
dir = 10;
icon_state = "conveyor0";
@@ -80154,7 +77978,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIB" = (
+"cEs" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -80170,14 +77994,14 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIC" = (
+"cEt" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cID" = (
+"cEu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/girder,
/obj/structure/grille,
@@ -80187,7 +78011,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIE" = (
+"cEv" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80199,7 +78023,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIF" = (
+"cEw" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 1
@@ -80210,7 +78034,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIG" = (
+"cEx" = (
/obj/structure/girder,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -80218,19 +78042,19 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIH" = (
+"cEy" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cII" = (
+"cEz" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIJ" = (
+"cEA" = (
/obj/machinery/light/small,
/obj/machinery/conveyor/auto{
dir = 9;
@@ -80241,7 +78065,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIK" = (
+"cEB" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -80252,7 +78076,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIL" = (
+"cEC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80260,7 +78084,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIM" = (
+"cED" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -80271,7 +78095,7 @@
/area/maintenance/disposal{
name = "South-Western External Waste Belt"
})
-"cIN" = (
+"cEE" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -80282,7 +78106,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIO" = (
+"cEF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80292,7 +78116,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIP" = (
+"cEG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80305,7 +78129,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIQ" = (
+"cEH" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
@@ -80316,7 +78140,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIR" = (
+"cEI" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j2s";
@@ -80329,7 +78153,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIS" = (
+"cEJ" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j2s";
@@ -80342,7 +78166,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIT" = (
+"cEK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80352,7 +78176,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIU" = (
+"cEL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80365,7 +78189,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIV" = (
+"cEM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80375,7 +78199,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIW" = (
+"cEN" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -80386,7 +78210,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cIX" = (
+"cEO" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
@@ -80397,7 +78221,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIY" = (
+"cEP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80405,7 +78229,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cIZ" = (
+"cEQ" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -80416,7 +78240,7 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cJa" = (
+"cER" = (
/obj/machinery/conveyor/auto{
tag = "icon-conveyor0 (EAST)";
icon_state = "conveyor0";
@@ -80427,14 +78251,14 @@
/area/maintenance/disposal{
name = "South-Eastern External Waste Belt"
})
-"cJb" = (
+"cES" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cJc" = (
+"cET" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes,
/turf/open/floor/plasteel/floorgrime{
@@ -80443,7 +78267,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cJd" = (
+"cEU" = (
/obj/structure/chair{
dir = 8
},
@@ -80453,7 +78277,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cJe" = (
+"cEV" = (
/obj/structure/closet/firecloset/full,
/obj/item/weapon/coin/silver,
/turf/open/floor/plasteel/floorgrime{
@@ -80462,7 +78286,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cJf" = (
+"cEW" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -80470,7 +78294,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cJg" = (
+"cEX" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -80478,7 +78302,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cJh" = (
+"cEY" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -80491,55 +78315,19 @@
},
/turf/open/space,
/area/space)
-"cJi" = (
+"cEZ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"cJj" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"cJk" = (
+"cFa" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"cJl" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"cJm" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"cJn" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"cJo" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"cJp" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/turret_protected/ai)
-"cJq" = (
+"cFb" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -80548,7 +78336,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cJr" = (
+"cFc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80560,7 +78348,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"cJs" = (
+"cFd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -80569,20 +78357,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"cJt" = (
+"cFe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cJu" = (
+"cFf" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cJv" = (
+"cFg" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -80591,7 +78379,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cJw" = (
+"cFh" = (
/obj/machinery/newscaster/security_unit{
pixel_x = 32
},
@@ -80599,7 +78387,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"cJx" = (
+"cFi" = (
/obj/machinery/light/small{
dir = 8
},
@@ -80614,7 +78402,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cJy" = (
+"cFj" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -80623,7 +78411,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cJz" = (
+"cFk" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -80632,7 +78420,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cJA" = (
+"cFl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -80647,7 +78435,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cJB" = (
+"cFm" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80657,7 +78445,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cJC" = (
+"cFn" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
@@ -80669,7 +78457,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cJD" = (
+"cFo" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/door/window/brigdoor/southleft{
name = "Armory Delievery Chute";
@@ -80680,7 +78468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cJE" = (
+"cFp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80691,34 +78479,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cJF" = (
+"cFq" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/captain)
-"cJG" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/warden)
-"cJH" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/warden)
-"cJI" = (
+"cFr" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/sleep_female)
-"cJJ" = (
+"cFs" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -80727,19 +78500,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"cJK" = (
+"cFt" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/courtroom)
-"cJL" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/courtroom)
-"cJM" = (
+"cFu" = (
/obj/structure/sign/poster/random{
name = "random contraband poster";
pixel_x = 32;
@@ -80752,25 +78519,19 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cJN" = (
+"cFv" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"cJO" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/bridge)
-"cJP" = (
+"cFw" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"cJQ" = (
+"cFx" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -80778,40 +78539,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cJR" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/courtroom)
-"cJS" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/courtroom)
-"cJT" = (
+"cFy" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cJU" = (
+"cFz" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cJV" = (
+"cFA" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"cJW" = (
+"cFB" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -80820,7 +78566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"cJX" = (
+"cFC" = (
/obj/structure/bed,
/obj/structure/sign/poster/official/work_for_a_future{
pixel_x = -32
@@ -80829,18 +78575,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cJY" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cJZ" = (
+"cFD" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cKa" = (
+"cFE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -80856,7 +78597,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cKb" = (
+"cFF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80877,7 +78618,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cKc" = (
+"cFG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -80898,7 +78639,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cKd" = (
+"cFH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -80913,13 +78654,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cKe" = (
+"cFI" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cKf" = (
+"cFJ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -80927,24 +78668,18 @@
/area/teleporter{
name = "Security Quantum Pad"
})
-"cKg" = (
+"cFK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"cKh" = (
+"cFL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"cKi" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cKj" = (
+"cFM" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -80952,7 +78687,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cKk" = (
+"cFN" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -80963,7 +78698,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cKl" = (
+"cFO" = (
/obj/machinery/hydroponics/soil,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -80976,7 +78711,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cKm" = (
+"cFP" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/newscaster{
pixel_y = -32
@@ -80987,25 +78722,25 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cKn" = (
+"cFQ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/bar)
-"cKo" = (
+"cFR" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"cKp" = (
+"cFS" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cKq" = (
+"cFT" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EngineeringWest2";
location = "EngineeringWest";
@@ -81015,13 +78750,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cKr" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cKs" = (
+"cFU" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/sign/poster/random{
name = "random official poster";
@@ -81035,7 +78764,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cKt" = (
+"cFV" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/machinery/newscaster{
pixel_x = 28
@@ -81046,7 +78775,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cKu" = (
+"cFW" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EngineeringMiddle2";
location = "EngineeringWest3";
@@ -81056,32 +78785,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cKv" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cKw" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters{
- name = "Rehabilitation Dome"
- })
-"cKx" = (
+"cFX" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cKy" = (
+"cFY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -81098,7 +78808,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cKz" = (
+"cFZ" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Cargo";
location = "Medbay2";
@@ -81108,68 +78818,27 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cKA" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engineering)
-"cKB" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engineering)
-"cKC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cKD" = (
+"cGa" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"cKE" = (
+"cGb" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"cKF" = (
+"cGc" = (
/turf/open/space/basic,
/area/space)
-"cKG" = (
-/turf/open/space/basic,
-/area/space)
-"cKH" = (
-/turf/open/space/basic,
-/area/space)
-"cKI" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cKJ" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cKK" = (
+"cGd" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"cKL" = (
-/turf/open/space/basic,
-/area/space)
-"cKM" = (
+"cGe" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Research";
location = "Service";
@@ -81179,10 +78848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cKN" = (
-/turf/open/space/basic,
-/area/space)
-"cKO" = (
+"cGf" = (
/obj/machinery/light/small{
dir = 1
},
@@ -81194,62 +78860,32 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cKP" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/genetics_cloning)
-"cKQ" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Hydroponics"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cKR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cKS" = (
+"cGg" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/storage/primary)
-"cKT" = (
+"cGh" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/chemistry)
-"cKU" = (
+"cGi" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cKV" = (
+"cGj" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"cKW" = (
+"cGk" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -81259,7 +78895,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"cKX" = (
+"cGl" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
/obj/machinery/door/window/southleft{
@@ -81270,7 +78906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"cKY" = (
+"cGm" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
@@ -81287,7 +78923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"cKZ" = (
+"cGn" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -81296,14 +78932,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cLa" = (
+"cGo" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cLb" = (
+"cGp" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -81311,7 +78947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cLc" = (
+"cGq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -81325,40 +78961,26 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"cLd" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cLe" = (
+"cGr" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engine_smes)
-"cLf" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cLg" = (
+"cGs" = (
/obj/machinery/ai_status_display,
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cLh" = (
+"cGt" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cLi" = (
+"cGu" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chapel Office APC";
@@ -81378,7 +79000,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cLj" = (
+"cGv" = (
/obj/machinery/door/window/westleft{
req_access_txt = "22"
},
@@ -81386,15 +79008,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/office)
-"cLk" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cLl" = (
+"cGw" = (
/obj/structure/plasticflaps{
name = "Officer Beepsky's Home"
},
@@ -81402,14 +79016,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cLm" = (
+"cGx" = (
/obj/structure/bed/dogbed,
/mob/living/simple_animal/bot/secbot/beepsky/jr,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cLn" = (
+"cGy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -81429,19 +79043,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cLo" = (
+"cGz" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cLp" = (
+"cGA" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cLq" = (
+"cGB" = (
/obj/structure/chair{
dir = 4
},
@@ -81455,19 +79069,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cLr" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/secondary/exit)
-"cLs" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cLt" = (
+"cGC" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=ArrivalsWest";
location = "Research";
@@ -81477,7 +79079,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cLu" = (
+"cGD" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Departures";
location = "ArrivalsWest";
@@ -81487,7 +79089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLv" = (
+"cGE" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -81495,19 +79097,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cLw" = (
+"cGF" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cLx" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cLy" = (
+"cGG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -81521,7 +79117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLz" = (
+"cGH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=ArrivalsMiddle";
@@ -81532,7 +79128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLA" = (
+"cGI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -81551,25 +79147,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLB" = (
+"cGJ" = (
/obj/machinery/ai_status_display,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLC" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/secondary/entry)
-"cLD" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/secondary/entry)
-"cLE" = (
+"cGK" = (
/obj/machinery/newscaster{
pixel_x = -28;
pixel_y = 4
@@ -81578,22 +79162,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cLF" = (
+"cGL" = (
/obj/machinery/status_display{
density = 0;
layer = 4
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cLG" = (
+"cGM" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"cLH" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"cLI" = (
+"cGN" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -81610,7 +79190,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLJ" = (
+"cGO" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -81621,25 +79201,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cLK" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"cLL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 24
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/secondary/entry)
-"cLM" = (
+"cGP" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
dir = 8;
@@ -81651,7 +79213,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cLN" = (
+"cGQ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -81660,18 +79222,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cLO" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"cLP" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/arrival)
-"cLQ" = (
+"cGR" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -81680,7 +79231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cLR" = (
+"cGS" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -81689,89 +79240,39 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/warden)
-"cLS" = (
+"cGT" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cLT" = (
+"cGU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cLU" = (
+"cGV" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cLV" = (
+"cGW" = (
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel/showroomfloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/main)
-"cLW" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/showroomfloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/main)
-"cLX" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/showroomfloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/main)
-"cLY" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/locker)
-"cLZ" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/showroomfloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/main)
-"cMa" = (
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/plasteel/showroomfloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/main)
-"cMb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/start/cargo_technician,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/office)
-"cMc" = (
+"cGX" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/toilet)
-"cMd" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/toilet)
-"cMe" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/toilet)
-"cMf" = (
+"cGY" = (
/obj/structure/chair{
dir = 1
},
@@ -81781,27 +79282,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"cMg" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/toilet)
-"cMh" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/toilet)
-"cMi" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/vault{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"cMj" = (
+"cGZ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -81812,7 +79293,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/lawoffice)
-"cMk" = (
+"cHa" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -81825,7 +79306,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cMl" = (
+"cHb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -81841,13 +79322,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cMm" = (
+"cHc" = (
/obj/effect/landmark/start/janitor,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cMn" = (
+"cHd" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -81859,7 +79340,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cMo" = (
+"cHe" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start/assistant,
/turf/open/floor/grass{
@@ -81868,13 +79349,13 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cMp" = (
+"cHf" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"cMq" = (
+"cHg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -81888,7 +79369,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"cMr" = (
+"cHh" = (
/obj/structure/chair{
dir = 4
},
@@ -81897,35 +79378,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"cMs" = (
+"cHi" = (
/obj/effect/landmark/start/botanist,
/turf/open/floor/plasteel/hydrofloor{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cMt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cMu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cMv" = (
-/obj/effect/landmark/start/botanist,
-/turf/open/floor/plasteel/hydrofloor{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cMw" = (
+"cHj" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -81936,7 +79395,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cMx" = (
+"cHk" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
@@ -81954,7 +79413,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cMy" = (
+"cHl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 8
@@ -81965,7 +79424,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cMz" = (
+"cHm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -81980,14 +79439,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cMA" = (
+"cHn" = (
/obj/structure/stacklifter,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cMB" = (
+"cHo" = (
/obj/structure/chair/comfy/black{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -82000,32 +79459,32 @@
/area/library{
name = "Lounge"
})
-"cMC" = (
+"cHp" = (
/obj/effect/landmark/start/station_engineer,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"cMD" = (
+"cHq" = (
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"cME" = (
+"cHr" = (
/obj/structure/weightlifter,
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/fitness)
-"cMF" = (
+"cHs" = (
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/atmos)
-"cMG" = (
+"cHt" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -82037,35 +79496,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"cMH" = (
+"cHu" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cMI" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMJ" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMK" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cML" = (
+"cHv" = (
/obj/structure/chair{
dir = 4
},
@@ -82074,28 +79512,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cMM" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMN" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMO" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMP" = (
+"cHw" = (
/obj/machinery/droneDispenser/preloaded,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -82103,7 +79520,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cMQ" = (
+"cHx" = (
/obj/structure/rack,
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
@@ -82113,35 +79530,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cMR" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMS" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMT" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMU" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMV" = (
+"cHy" = (
/obj/machinery/light/small{
dir = 8
},
@@ -82151,7 +79540,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cMW" = (
+"cHz" = (
/obj/structure/rack,
/obj/item/stack/sheet/glass/fifty,
/obj/item/stack/sheet/glass/fifty,
@@ -82161,44 +79550,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cMX" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMY" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cMZ" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNa" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/chapel/main)
-"cNb" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNc" = (
+"cHA" = (
/obj/machinery/door/airlock/maintenance{
name = "Maintenance Drone Dispensery";
req_access_txt = "12"
@@ -82209,70 +79561,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"cNd" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNe" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNf" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNg" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNh" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNi" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNj" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNk" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNl" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"cNm" = (
+"cHB" = (
/obj/structure/chair{
dir = 4
},
@@ -82284,7 +79573,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/exit)
-"cNn" = (
+"cHC" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -82295,7 +79584,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cNo" = (
+"cHD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82320,7 +79609,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cNp" = (
+"cHE" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -82333,7 +79622,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cNq" = (
+"cHF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -82352,7 +79641,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cNr" = (
+"cHG" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -82371,7 +79660,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cNs" = (
+"cHH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -82380,7 +79669,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cNt" = (
+"cHI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82394,19 +79683,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/xenobiology)
-"cNu" = (
+"cHJ" = (
/obj/effect/landmark/start/scientist,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cNv" = (
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/misc_lab)
-"cNw" = (
+"cHK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -82419,7 +79702,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNx" = (
+"cHL" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82437,7 +79720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNy" = (
+"cHM" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -82451,39 +79734,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNz" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cNA" = (
-/obj/structure/cable/orange{
- 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{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cNB" = (
+"cHN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -82492,7 +79743,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNC" = (
+"cHO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -82500,7 +79751,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cND" = (
+"cHP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -82510,7 +79761,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNE" = (
+"cHQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
icon_state = "red";
@@ -82518,7 +79769,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNF" = (
+"cHR" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
id_tag = "innerbrig";
@@ -82539,7 +79790,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNG" = (
+"cHS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -82563,7 +79814,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNH" = (
+"cHT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82575,7 +79826,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNI" = (
+"cHU" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/red/side{
@@ -82584,7 +79835,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNJ" = (
+"cHV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82597,7 +79848,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNK" = (
+"cHW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -82616,40 +79867,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/orange{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cNM" = (
-/obj/machinery/door/airlock/glass_security{
- cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "0";
- req_one_access_txt = "38;63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (WEST)";
- icon_state = "redcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cNN" = (
+"cHX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82661,19 +79879,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "frontbrig";
- name = "Emergency External Blast Doors"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cNP" = (
+"cHY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -82685,12 +79891,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNQ" = (
+"cHZ" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNR" = (
+"cIa" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -82703,7 +79909,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNS" = (
+"cIb" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1;
@@ -82717,7 +79923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNT" = (
+"cIc" = (
/obj/machinery/airalarm{
dir = 4;
pixel_x = -23;
@@ -82728,7 +79934,7 @@
dir = 5
},
/area/crew_quarters/courtroom)
-"cNU" = (
+"cId" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small crimnals alike!";
@@ -82745,7 +79951,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"cNV" = (
+"cIe" = (
/obj/machinery/light/small{
dir = 8
},
@@ -82753,12 +79959,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNW" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cNX" = (
+"cIf" = (
/obj/structure/chair{
dir = 8
},
@@ -82771,7 +79972,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNY" = (
+"cIg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -82786,13 +79987,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cNZ" = (
+"cIh" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOa" = (
+"cIi" = (
/obj/structure/chair{
dir = 8
},
@@ -82800,13 +80001,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOb" = (
+"cIj" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/supply)
-"cOc" = (
+"cIk" = (
/obj/structure/chair{
dir = 8
},
@@ -82820,7 +80021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOd" = (
+"cIl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -82836,7 +80037,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOe" = (
+"cIm" = (
/obj/structure/chair{
dir = 8
},
@@ -82852,7 +80053,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOf" = (
+"cIn" = (
/obj/structure/grille/broken,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
@@ -82861,7 +80062,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cOg" = (
+"cIo" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -82872,7 +80073,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOh" = (
+"cIp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/orange{
d1 = 1;
@@ -82885,14 +80086,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOi" = (
+"cIq" = (
/turf/open/floor/plasteel/red/corner{
icon_state = "redcorner";
dir = 8;
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOj" = (
+"cIr" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1;
@@ -82905,7 +80106,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOk" = (
+"cIs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -82916,7 +80117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOl" = (
+"cIt" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/corner{
@@ -82925,7 +80126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOm" = (
+"cIu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82951,7 +80152,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOn" = (
+"cIv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82967,13 +80168,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOo" = (
+"cIw" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOp" = (
+"cIx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82981,7 +80182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOq" = (
+"cIy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -82990,15 +80191,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/brig)
-"cOr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/brig)
-"cOs" = (
+"cIz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -83011,7 +80204,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cOt" = (
+"cIA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -83027,7 +80220,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOu" = (
+"cIB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -83046,23 +80239,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/corner{
- tag = "icon-redcorner (EAST)";
- icon_state = "redcorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOw" = (
+"cIC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -83079,7 +80256,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOx" = (
+"cID" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -83100,7 +80277,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOy" = (
+"cIE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -83117,7 +80294,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOz" = (
+"cIF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -83133,7 +80310,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cOA" = (
+"cIG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83144,7 +80321,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOB" = (
+"cIH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -83159,7 +80336,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOC" = (
+"cII" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -83170,7 +80347,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cOD" = (
+"cIJ" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -83184,7 +80361,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cOE" = (
+"cIK" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -83193,7 +80370,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOF" = (
+"cIL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -83201,31 +80378,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOJ" = (
+"cIM" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -83237,63 +80390,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cON" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOR" = (
+"cIN" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -83310,7 +80407,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOS" = (
+"cIO" = (
/obj/machinery/door/airlock/maintenance{
name = "Fore Asteroid Maintenance Access";
req_access_txt = "12"
@@ -83322,23 +80419,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cOT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOV" = (
+"cIP" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -83347,7 +80428,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cOW" = (
+"cIQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -83356,163 +80437,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cOX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cOZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPk" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"cPq" = (
+"cIR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -83522,7 +80447,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cPr" = (
+"cIS" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -83531,7 +80456,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cPs" = (
+"cIT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -83540,7 +80465,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cPt" = (
+"cIU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -83548,65 +80473,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cPu" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPv" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/janitor)
-"cPB" = (
+"cIV" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -83615,72 +80482,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/janitor)
-"cPC" = (
+"cIW" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cPD" = (
+"cIX" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"cPE" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cPF" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cPG" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/red/side{
- icon_state = "red";
- dir = 10;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPH" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/red/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPI" = (
-/obj/structure/table,
-/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/plasteel/red/side{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cPK" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPL" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPM" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPN" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cPO" = (
+"cIY" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
@@ -83690,215 +80505,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"cPP" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPQ" = (
-/obj/structure/bed/dogbed,
-/mob/living/simple_animal/bot/secbot/beepsky,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPR" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPS" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cPT" = (
+"cIZ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"cPU" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPV" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPW" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cPX" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'WARNING: LOOSE CANNON'.";
- name = "WARNING: LOOSE CANNON";
- pixel_y = 32
- },
-/turf/open/space,
-/area/space)
-"cPY" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cPZ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQa" = (
-/obj/structure/plasticflaps{
- name = "Officer Beepsky's Home"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cQb" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/space)
-"cQc" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQd" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQe" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQf" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQg" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQh" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQi" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQj" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQk" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQl" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQm" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQn" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQo" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQp" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQq" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQr" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQs" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQt" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQu" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQv" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQw" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQx" = (
+"cJa" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQy" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine,
-/area/space)
-"cQz" = (
+"cJb" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -83907,7 +80527,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQA" = (
+"cJc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -83924,7 +80544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQB" = (
+"cJd" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -83933,7 +80553,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQC" = (
+"cJe" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -83946,7 +80566,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cQD" = (
+"cJf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -83955,7 +80575,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQE" = (
+"cJg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -83966,7 +80586,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQF" = (
+"cJh" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -83975,25 +80595,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQG" = (
+"cJi" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQH" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQI" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQJ" = (
+"cJj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
icon_state = "1-2"
@@ -84005,76 +80613,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cQK" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQL" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQM" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQN" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQO" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cQP" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cQR" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQS" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQT" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cQU" = (
+"cJk" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -84085,7 +80624,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cQV" = (
+"cJl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84095,7 +80634,7 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cQW" = (
+"cJm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84103,7 +80642,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQX" = (
+"cJn" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -84115,39 +80654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cQY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cQZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRc" = (
+"cJo" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -84156,7 +80663,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cRd" = (
+"cJp" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -84165,67 +80672,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cRe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRh" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRl" = (
+"cJq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84233,15 +80680,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"cRm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/storage/eva)
-"cRn" = (
+"cJr" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -84250,31 +80689,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"cRo" = (
+"cJs" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/storage/eva)
-"cRp" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cRq" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"cRr" = (
+"cJt" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -84282,143 +80703,13 @@
/area/crew_quarters{
name = "Rehabilitation Dome"
})
-"cRs" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRt" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/storage/eva)
-"cRu" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRv" = (
+"cJu" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cRw" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRx" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRy" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRz" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRA" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRB" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRF" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRK" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cRL" = (
+"cJv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -84429,7 +80720,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cRM" = (
+"cJw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84437,277 +80728,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"cRN" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRQ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRR" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRS" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRT" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRX" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRY" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cRZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSa" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSb" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSc" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSd" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSe" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSf" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSg" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSh" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSi" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSj" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSk" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSl" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSm" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSn" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSo" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSp" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSq" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSr" = (
+"cJx" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -84719,7 +80740,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cSs" = (
+"cJy" = (
/obj/structure/sign/map/left/ceres{
pixel_y = 32
},
@@ -84734,7 +80755,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cSt" = (
+"cJz" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -84743,16 +80764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cSu" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 1
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cSv" = (
+"cJA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84760,47 +80772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cSw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cSx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cSy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cSz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cSA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cSB" = (
+"cJB" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -84809,7 +80781,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"cSC" = (
+"cJC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84817,103 +80789,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"cSD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cSS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cST" = (
+"cJD" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -84922,7 +80798,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cSU" = (
+"cJE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -84937,7 +80813,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"cSV" = (
+"cJF" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -84946,23 +80822,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cSW" = (
+"cJG" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cSX" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/medical)
-"cSY" = (
+"cJH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cSZ" = (
+"cJI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -84974,7 +80845,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cTa" = (
+"cJJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -84985,39 +80856,31 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cTb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
+"cJK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cTc" = (
+"cJL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cTd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/open/floor/plasteel/green/corner{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cTe" = (
+"cJM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -85026,19 +80889,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cTf" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cTg" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"cTh" = (
+"cJN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -85050,7 +80901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cTi" = (
+"cJO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -85067,41 +80918,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cTj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/medical)
-"cTk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/orange{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/medical)
-"cTl" = (
+"cJP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -85115,7 +80932,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/medical)
-"cTm" = (
+"cJQ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -85124,7 +80941,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"cTn" = (
+"cJR" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -85133,19 +80950,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"cTo" = (
-/mob/living/simple_animal/pet/cat/Runtime,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"cTp" = (
+"cJS" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/break_room)
-"cTq" = (
+"cJT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -85154,7 +80965,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cTr" = (
+"cJU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85162,23 +80973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cTs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/engineering)
-"cTt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/engineering)
-"cTu" = (
+"cJV" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -85187,43 +80982,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cTv" = (
+"cJW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cTw" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/engineering)
-"cTx" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/checkpoint/engineering)
-"cTy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cTz" = (
+"cJX" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -85243,7 +81012,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cTA" = (
+"cJY" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -85252,25 +81021,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/engineering)
-"cTB" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cTC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"cTD" = (
+"cJZ" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -85280,73 +81031,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"cTE" = (
+"cKa" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"cTF" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTG" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTH" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTI" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTK" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTL" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTM" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTN" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/library)
-"cTO" = (
+"cKb" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cTP" = (
+"cKc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85355,37 +81052,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/chapel/main)
-"cTQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"cTR" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"cTS" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"cTT" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"cTU" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"cTV" = (
+"cKd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -85400,7 +81067,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cTW" = (
+"cKe" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -85409,7 +81076,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cTX" = (
+"cKf" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -85422,7 +81089,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"cTY" = (
+"cKg" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
@@ -85431,7 +81098,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cTZ" = (
+"cKh" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -85440,38 +81107,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUa" = (
+"cKi" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUb" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUc" = (
+"cKj" = (
/obj/machinery/ai_status_display,
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUd" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUe" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUf" = (
+"cKk" = (
/obj/machinery/power/apc{
dir = 2;
name = "Arrival Security Checkpoint APC";
@@ -85495,13 +81144,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cUg" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUh" = (
+"cKl" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/cable/orange{
d1 = 1;
@@ -85514,13 +81157,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cUi" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUj" = (
+"cKm" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -85529,7 +81166,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cUk" = (
+"cKn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85537,7 +81174,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cUl" = (
+"cKo" = (
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small criminals alike!";
name = "Criminal Delivery Chute"
@@ -85554,7 +81191,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint2)
-"cUm" = (
+"cKp" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -85563,7 +81200,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUn" = (
+"cKq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85571,31 +81208,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUr" = (
+"cKr" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -85607,22 +81220,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUs" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cUt" = (
+"cKs" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cUu" = (
+"cKt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -85640,25 +81244,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUv" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/teleporter)
-"cUw" = (
+"cKu" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cUx" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/teleporter)
-"cUy" = (
+"cKv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85672,294 +81264,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"cUz" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUA" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUB" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUC" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUD" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUE" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUF" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUG" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUH" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUI" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUJ" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUK" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUL" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUM" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUN" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUO" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUP" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUQ" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUR" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUS" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUT" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUU" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUV" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUW" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUX" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUY" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cUZ" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVa" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVb" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVc" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVd" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVe" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVf" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVg" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVh" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVi" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVj" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVk" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVl" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVm" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVn" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/space)
-"cVo" = (
+"cKw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -85971,7 +81276,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cVp" = (
+"cKx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85979,7 +81284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cVq" = (
+"cKy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -85987,7 +81292,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cVr" = (
+"cKz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -85999,7 +81304,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cVs" = (
+"cKA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -86007,23 +81312,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cVt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/teleporter)
-"cVu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/teleporter)
-"cVv" = (
+"cKB" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -86032,7 +81321,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/teleporter)
-"cVw" = (
+"cKC" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 1
@@ -86041,7 +81330,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cVx" = (
+"cKD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -86052,7 +81341,7 @@
/area/medical/research{
name = "Research Division"
})
-"cVy" = (
+"cKE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -86062,7 +81351,7 @@
/area/medical/research{
name = "Research Division"
})
-"cVz" = (
+"cKF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -86070,107 +81359,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/lab)
-"cVA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/lab)
-"cVB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/lab)
-"cVC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/lab)
-"cVD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/lab)
-"cVE" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVM" = (
+"cKG" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "12"
@@ -86184,87 +81373,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"cVN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVX" = (
+"cKH" = (
/obj/machinery/ai_status_display,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -86273,55 +81382,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cVY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cVZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cWa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cWb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cWc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cWd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"cWe" = (
+"cKI" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -86330,37 +81391,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"cWf" = (
+"cKJ" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"cWg" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/assembly/robotics)
-"cWh" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/assembly/robotics)
-"cWi" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/assembly/robotics)
-"cWj" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/assembly/robotics)
-"cWk" = (
+"cKK" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -86368,7 +81405,7 @@
/area/medical/research{
name = "Research Division"
})
-"cWl" = (
+"cKL" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -86377,7 +81414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cWm" = (
+"cKM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -86389,25 +81426,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/checkpoint/science)
-"cWn" = (
+"cKN" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cWo" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"cWp" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"cWq" = (
+"cKO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -86416,7 +81441,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"cWr" = (
+"cKP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -86424,7 +81449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cWs" = (
+"cKQ" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -86443,7 +81468,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/misc_lab)
-"cWt" = (
+"cKR" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -86451,7 +81476,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cWu" = (
+"cKS" = (
/obj/structure/toilet{
dir = 4
},
@@ -86459,7 +81484,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cWv" = (
+"cKT" = (
/obj/machinery/light/small{
dir = 4
},
@@ -86467,25 +81492,25 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"cWw" = (
+"cKU" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"cWx" = (
+"cKV" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"cWy" = (
+"cKW" = (
/mob/living/carbon/monkey,
/turf/open/floor/grass{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cWz" = (
+"cKX" = (
/obj/machinery/light{
dir = 1
},
@@ -86493,13 +81518,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cWA" = (
+"cKY" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay2)
-"cWB" = (
+"cKZ" = (
/obj/structure/flora/tree/palm,
/obj/machinery/camera{
c_tag = "Genetics Monkey Dome";
@@ -86510,13 +81535,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cWC" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/genetics)
-"cWD" = (
+"cLa" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -86525,13 +81544,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics)
-"cWE" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/grass{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/genetics)
-"cWF" = (
+"cLb" = (
/obj/structure/urinal{
pixel_x = -32
},
@@ -86541,13 +81554,13 @@
/area/crew_quarters/toilet{
name = "Fitness Toilets"
})
-"cWG" = (
+"cLc" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/secondary/entry)
-"cWH" = (
+"cLd" = (
/obj/structure/sign/poster/official/pda_ad{
pixel_x = -32
},
@@ -86555,94 +81568,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"cWI" = (
+"cLe" = (
/obj/machinery/pdapainter,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"cWJ" = (
+"cLf" = (
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"cWK" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWL" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWM" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWN" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWO" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWP" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWQ" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWR" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWS" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWT" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWU" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWV" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWW" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cWX" = (
+"cLg" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"cWY" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/supermatter)
-"cWZ" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXa" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXb" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXc" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXd" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/supermatter)
-"cXe" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXf" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXg" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXh" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXi" = (
+"cLh" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -86650,38 +81590,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/supermatter)
-"cXj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/supermatter)
-"cXk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/supermatter)
-"cXl" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXm" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXn" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXo" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXp" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXq" = (
+"cLi" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -86698,118 +81607,13 @@
name = "reinforced floor"
},
/area/engine/supermatter)
-"cXr" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXs" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXt" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXu" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXv" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXw" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXx" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXy" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXz" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXA" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXB" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXC" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXD" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXE" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXF" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXG" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXH" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXI" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXJ" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXK" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXL" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXM" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXN" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXO" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXP" = (
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXQ" = (
+"cLj" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"cXR" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXS" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/supermatter)
-"cXW" = (
+"cLk" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
@@ -86817,15 +81621,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cXX" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/mixing)
-"cXY" = (
+"cLl" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -86844,7 +81640,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cXZ" = (
+"cLm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -86855,7 +81651,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cYa" = (
+"cLn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -86868,7 +81664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cYb" = (
+"cLo" = (
/obj/structure/closet/l3closet/scientist{
pixel_x = -2
},
@@ -86876,7 +81672,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cYc" = (
+"cLp" = (
/obj/machinery/door/airlock/maintenance{
name = "Aft Asteroid Maintenance";
req_access_txt = "47"
@@ -86891,11 +81687,11 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"cYd" = (
+"cLq" = (
/obj/item/clothing/head/sombrero/shamebrero,
/turf/open/floor/plating/asteroid/airless,
/area/space)
-"cYe" = (
+"cLr" = (
/obj/structure/sign/poster/contraband/borg_fancy_1{
pixel_x = 32
},
@@ -86905,7 +81701,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cYf" = (
+"cLs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -86918,7 +81714,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYg" = (
+"cLt" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -86927,7 +81723,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYh" = (
+"cLu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -86937,17 +81733,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYj" = (
+"cLv" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
@@ -86956,7 +81742,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYk" = (
+"cLw" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -86964,7 +81750,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYl" = (
+"cLx" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -86972,7 +81758,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYm" = (
+"cLy" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -86982,7 +81768,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYn" = (
+"cLz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -86994,7 +81780,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYo" = (
+"cLA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -87006,31 +81792,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYp" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYq" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYr" = (
+"cLB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -87041,16 +81803,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYs" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYt" = (
+"cLC" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -87066,7 +81819,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYu" = (
+"cLD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -87081,79 +81834,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYv" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYw" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYx" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYy" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYz" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYA" = (
+"cLE" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -87165,7 +81846,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYB" = (
+"cLF" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -87173,7 +81854,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYC" = (
+"cLG" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -87181,7 +81862,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYD" = (
+"cLH" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -87191,7 +81872,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cYE" = (
+"cLI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -87205,66 +81886,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYF" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYG" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYH" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYI" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYJ" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYK" = (
+"cLJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -87280,29 +81902,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYL" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYM" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/device/assembly/mousetrap/armed,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYN" = (
+"cLK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -87315,62 +81915,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYO" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYP" = (
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYQ" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYR" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYS" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYT" = (
+"cLL" = (
/obj/machinery/light/small{
dir = 4
},
@@ -87380,39 +81925,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYU" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYV" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cYW" = (
+"cLM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -87425,7 +81938,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYX" = (
+"cLN" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -87439,7 +81952,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYY" = (
+"cLO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -87452,7 +81965,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cYZ" = (
+"cLP" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -87460,42 +81973,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZa" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZb" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZc" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZd" = (
+"cLQ" = (
/obj/machinery/light/small{
dir = 8
},
@@ -87506,7 +81984,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZe" = (
+"cLR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/airalarm{
dir = 8;
@@ -87517,28 +81995,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cZf" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZg" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZh" = (
+"cLS" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -87548,9 +82005,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZi" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
+"cLT" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -87558,40 +82013,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZj" = (
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZk" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZl" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZm" = (
+"cLU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -87604,80 +82026,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZn" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZo" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZp" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZq" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZr" = (
+"cLV" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"cZs" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"cZt" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZu" = (
+"cLW" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -87689,7 +82044,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZv" = (
+"cLX" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -87702,23 +82057,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZw" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZx" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZy" = (
+"cLY" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -87730,21 +82069,13 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZz" = (
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZA" = (
+"cLZ" = (
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cZB" = (
+"cMa" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -87752,7 +82083,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZC" = (
+"cMb" = (
/obj/structure/closet/crate,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -87760,19 +82091,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZD" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZE" = (
+"cMc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
@@ -87789,7 +82108,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"cZF" = (
+"cMd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = null;
@@ -87806,7 +82125,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/bridge)
-"cZG" = (
+"cMe" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -87819,7 +82138,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZH" = (
+"cMf" = (
/obj/structure/closet/firecloset/full,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -87828,7 +82147,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"cZI" = (
+"cMg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -87848,42 +82167,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"cZJ" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZK" = (
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZL" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZM" = (
+"cMh" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cZN" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"cZO" = (
+"cMi" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -87894,7 +82183,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cZP" = (
+"cMj" = (
/obj/machinery/door/airlock/glass_mining{
name = "Quartermaster's Office";
req_access_txt = "41";
@@ -87904,7 +82193,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cZQ" = (
+"cMk" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -87914,35 +82203,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cZR" = (
+"cMl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"cZS" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"cZT" = (
+"cMm" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/spawner/lootdrop/costume,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/locker)
-"cZU" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"cZV" = (
+"cMn" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -87955,26 +82229,20 @@
tag = "icon-brown (NORTHWEST)"
},
/area/quartermaster/qm)
-"cZW" = (
+"cMo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1
},
/area/quartermaster/qm)
-"cZX" = (
+"cMp" = (
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
dir = 1
},
/area/quartermaster/qm)
-"cZY" = (
-/turf/open/floor/plasteel/brown{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1
- },
-/area/quartermaster/qm)
-"cZZ" = (
+"cMq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -87983,7 +82251,7 @@
tag = "icon-brown (NORTHEAST)"
},
/area/quartermaster/qm)
-"daa" = (
+"cMr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -87994,24 +82262,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dab" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dac" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dad" = (
+"cMs" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -88031,12 +82282,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"dae" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"daf" = (
+"cMt" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/brown{
@@ -88046,7 +82292,7 @@
tag = "icon-brown (WEST)"
},
/area/quartermaster/qm)
-"dag" = (
+"cMu" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/folder,
@@ -88055,7 +82301,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"dah" = (
+"cMv" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -88067,13 +82313,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"dai" = (
+"cMw" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"daj" = (
+"cMx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -88088,31 +82334,7 @@
tag = "icon-brown (EAST)"
},
/area/quartermaster/qm)
-"dak" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dal" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dam" = (
+"cMy" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -88122,7 +82344,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dan" = (
+"cMz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -88139,12 +82361,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dao" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"dap" = (
+"cMA" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/machinery/button/door{
id = "qmoffice";
@@ -88158,7 +82375,7 @@
tag = "icon-brown (WEST)"
},
/area/quartermaster/qm)
-"daq" = (
+"cMB" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -88167,18 +82384,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"dar" = (
+"cMC" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"das" = (
+"cMD" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"dat" = (
+"cME" = (
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
@@ -88194,17 +82411,7 @@
tag = "icon-brown (EAST)"
},
/area/quartermaster/qm)
-"dau" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dav" = (
+"cMF" = (
/obj/machinery/light/small{
dir = 4
},
@@ -88214,7 +82421,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"daw" = (
+"cMG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88231,16 +82438,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dax" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"day" = (
+"cMH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88253,12 +82451,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"daz" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"daA" = (
+"cMI" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/brown{
tag = "icon-brown (SOUTHWEST)";
@@ -88267,7 +82460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"daB" = (
+"cMJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -88282,18 +82475,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"daC" = (
+"cMK" = (
/obj/machinery/light,
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"daD" = (
+"cML" = (
/turf/open/floor/plasteel/brown{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"daE" = (
+"cMM" = (
/obj/item/weapon/twohanded/required/kirbyplants{
tag = "icon-plant-21";
icon_state = "plant-21"
@@ -88305,7 +82498,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/qm)
-"daF" = (
+"cMN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88318,7 +82511,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/office)
-"daG" = (
+"cMO" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -88328,62 +82521,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"daH" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daI" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daJ" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"daK" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"daL" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"daM" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/quartermaster/qm)
-"daN" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daO" = (
+"cMP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88396,15 +82534,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"daP" = (
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daQ" = (
+"cMQ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -88414,58 +82544,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"daR" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daS" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daT" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daU" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daV" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"daW" = (
+"cMR" = (
/obj/machinery/power/apc{
dir = 4;
name = "Fore Asteroid Hallway APC";
@@ -88483,7 +82562,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"daX" = (
+"cMS" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -88497,7 +82576,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"daY" = (
+"cMT" = (
/obj/structure/sign/biohazard{
desc = "A sign stating that there are better, more efficient methods of suicide that don't cause extra work for security and the janitor. Volunteer to be miner bait, be voluntary specimen for Research, or just find your nearest external airlock! ";
name = "SUICIDE HOPLINE ISN'T THE WAY!";
@@ -88510,7 +82589,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/heads)
-"daZ" = (
+"cMU" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -88527,7 +82606,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dba" = (
+"cMV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -88540,113 +82619,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dbb" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbc" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbd" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbe" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbf" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbg" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbh" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbi" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbj" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbk" = (
+"cMW" = (
/obj/structure/grille/broken,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -88654,38 +82627,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dbl" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbm" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbn" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbo" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbp" = (
+"cMX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88698,46 +82640,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbt" = (
+"cMY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88751,72 +82654,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dby" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbz" = (
+"cMZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable/orange{
d1 = 4;
@@ -88827,20 +82665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbB" = (
+"cNa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88854,7 +82679,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbC" = (
+"cNb" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -88868,71 +82693,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbI" = (
+"cNc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -88945,54 +82706,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbJ" = (
-/obj/structure/window/reinforced,
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge Ceneter";
- dir = 1
- },
-/turf/open/floor/engine,
-/area/space)
-"dbK" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbM" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbN" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/fore{
- name = "Fore Asteroid Maintenance"
- })
-"dbO" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dbP" = (
+"cNd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/machinery/airalarm{
@@ -89010,7 +82724,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dbQ" = (
+"cNe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89022,7 +82736,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dbR" = (
+"cNf" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -89034,7 +82748,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbS" = (
+"cNg" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -89042,7 +82756,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbT" = (
+"cNh" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating/astplate{
@@ -89051,7 +82765,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbU" = (
+"cNi" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -89059,7 +82773,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbV" = (
+"cNj" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
@@ -89068,7 +82782,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbW" = (
+"cNk" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -89076,7 +82790,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbX" = (
+"cNl" = (
/obj/machinery/camera{
c_tag = "Service SMES";
dir = 6;
@@ -89095,7 +82809,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbY" = (
+"cNm" = (
/obj/machinery/power/apc{
dir = 1;
name = "Port Asteroid Maintence APC";
@@ -89118,7 +82832,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dbZ" = (
+"cNn" = (
/obj/machinery/light/small{
dir = 8
},
@@ -89128,7 +82842,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dca" = (
+"cNo" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -89140,7 +82854,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcb" = (
+"cNp" = (
/obj/machinery/light/small{
dir = 1
},
@@ -89149,7 +82863,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcc" = (
+"cNq" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89165,7 +82879,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcd" = (
+"cNr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89181,7 +82895,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dce" = (
+"cNs" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89193,7 +82907,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcf" = (
+"cNt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89206,7 +82920,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcg" = (
+"cNu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89224,7 +82938,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dch" = (
+"cNv" = (
/obj/machinery/light/small{
dir = 4
},
@@ -89245,7 +82959,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dci" = (
+"cNw" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -89253,7 +82967,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcj" = (
+"cNx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89266,7 +82980,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dck" = (
+"cNy" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -89278,7 +82992,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcl" = (
+"cNz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89293,7 +83007,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcm" = (
+"cNA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89309,7 +83023,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcn" = (
+"cNB" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -89321,7 +83035,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dco" = (
+"cNC" = (
/obj/machinery/light/small{
dir = 4
},
@@ -89330,7 +83044,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dcp" = (
+"cND" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -89342,7 +83056,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcq" = (
+"cNE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89354,19 +83068,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dcs" = (
+"cNF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89378,7 +83080,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dct" = (
+"cNG" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -89391,7 +83093,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcu" = (
+"cNH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89404,7 +83106,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcv" = (
+"cNI" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -89428,22 +83130,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcw" = (
+"cNJ" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcx" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcy" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcz" = (
+"cNK" = (
/obj/structure/table,
/obj/structure/cable/orange{
d1 = 2;
@@ -89454,7 +83146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dcA" = (
+"cNL" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -89470,7 +83162,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcB" = (
+"cNM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89484,48 +83176,13 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcC" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcD" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcE" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcF" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcG" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcH" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcI" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dcJ" = (
+"cNN" = (
/obj/machinery/vending/coffee,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcK" = (
+"cNO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -89538,7 +83195,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcL" = (
+"cNP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -89551,7 +83208,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dcM" = (
+"cNQ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/baguette,
/obj/structure/sign/poster/official/the_owl{
@@ -89566,7 +83223,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcN" = (
+"cNR" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -89576,13 +83233,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcO" = (
+"cNS" = (
/obj/machinery/vending/autodrobe,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcP" = (
+"cNT" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
/obj/item/device/instrument/violin,
@@ -89595,7 +83252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcQ" = (
+"cNU" = (
/obj/machinery/light_switch{
pixel_y = 28
},
@@ -89606,12 +83263,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcR" = (
+"cNV" = (
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcS" = (
+"cNW" = (
/obj/machinery/door/window/eastright{
name = "Theatre Stage"
},
@@ -89619,7 +83276,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcT" = (
+"cNX" = (
/turf/open/floor/plasteel/stairs{
tag = "icon-stairs (WEST)";
icon_state = "stairs";
@@ -89627,7 +83284,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcU" = (
+"cNY" = (
/obj/structure/chair/wood,
/obj/machinery/light/small{
dir = 1
@@ -89636,7 +83293,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcV" = (
+"cNZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -89644,13 +83301,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcW" = (
+"cOa" = (
/obj/structure/chair/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dcX" = (
+"cOb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -89661,7 +83318,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"dcY" = (
+"cOc" = (
/obj/machinery/light/small{
dir = 1
},
@@ -89670,36 +83327,14 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dcZ" = (
+"cOd" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dda" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ddb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ddc" = (
+"cOe" = (
/obj/structure/table,
/obj/item/weapon/lipstick/random,
/obj/item/weapon/lipstick/random,
@@ -89712,13 +83347,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddd" = (
+"cOf" = (
/obj/effect/landmark/start/mime,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dde" = (
+"cOg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -89727,7 +83362,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddf" = (
+"cOh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -89735,7 +83370,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddg" = (
+"cOi" = (
/obj/structure/table/wood,
/obj/structure/sign/poster/random{
name = "random contraband poster";
@@ -89754,13 +83389,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddh" = (
+"cOj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddi" = (
+"cOk" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -89769,7 +83404,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddj" = (
+"cOl" = (
/obj/structure/table/wood,
/obj/item/candle,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -89779,7 +83414,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddk" = (
+"cOm" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -89790,16 +83425,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddl" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"ddm" = (
+"cOn" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -89817,7 +83443,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddn" = (
+"cOo" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -89828,7 +83454,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddo" = (
+"cOp" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -89838,23 +83464,13 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddp" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddq" = (
+"cOq" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddr" = (
+"cOr" = (
/obj/machinery/light/small{
dir = 1
},
@@ -89862,13 +83478,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dds" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddt" = (
+"cOs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -89882,20 +83492,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ddu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ddv" = (
+"cOt" = (
/obj/machinery/door/airlock/maintenance{
name = "Port Asteroid Maintenance";
req_access_txt = "46"
@@ -89904,7 +83501,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddw" = (
+"cOu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -89913,18 +83510,18 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddx" = (
+"cOv" = (
/obj/effect/landmark/start/clown,
/turf/open/floor/plasteel/redyellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddy" = (
+"cOw" = (
/turf/open/floor/plasteel/redyellow{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddz" = (
+"cOx" = (
/obj/machinery/door/airlock{
name = "Theatre Backstage";
req_access_txt = "46"
@@ -89933,12 +83530,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddA" = (
-/turf/open/floor/plasteel/bar{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"ddB" = (
+"cOy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -89947,19 +83539,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddC" = (
+"cOz" = (
/obj/structure/table/wood,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddD" = (
-/obj/structure/chair/wood,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"ddE" = (
+"cOA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -89968,13 +83554,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddF" = (
-/obj/structure/chair/wood,
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"ddG" = (
+"cOB" = (
/obj/machinery/door/airlock/glass{
name = "The Chuckle Den"
},
@@ -89982,20 +83562,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddH" = (
+"cOC" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddI" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddJ" = (
+"cOD" = (
/obj/effect/turf_decal/stripes/asteroid/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -90003,7 +83577,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddK" = (
+"cOE" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -90016,37 +83590,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddL" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddM" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddN" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddO" = (
+"cOF" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -90057,47 +83601,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddP" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddQ" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddR" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddS" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"ddT" = (
+"cOG" = (
/obj/machinery/light/small{
dir = 1
},
@@ -90107,7 +83611,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"ddU" = (
+"cOH" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -90120,20 +83624,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"ddV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"ddW" = (
+"cOI" = (
/obj/structure/closet/secure_closet/freezer/cream_pie,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -90147,7 +83638,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddX" = (
+"cOJ" = (
/obj/structure/table,
/obj/item/clothing/mask/facehugger/toy,
/obj/item/clothing/mask/fakemoustache,
@@ -90158,7 +83649,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddY" = (
+"cOK" = (
/obj/structure/table,
/obj/item/clothing/mask/pig,
/obj/item/clothing/mask/cowmask,
@@ -90173,7 +83664,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ddZ" = (
+"cOL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -90181,7 +83672,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dea" = (
+"cOM" = (
/obj/structure/piano,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -90190,14 +83681,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"deb" = (
+"cON" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dec" = (
+"cOO" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -90206,7 +83697,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"ded" = (
+"cOP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -90214,16 +83705,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dee" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"def" = (
+"cOQ" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -90240,7 +83722,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"deg" = (
+"cOR" = (
/obj/structure/table/wood,
/obj/item/candle,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -90250,7 +83732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"deh" = (
+"cOS" = (
/obj/structure/chair/wood{
tag = "icon-wooden_chair (WEST)";
icon_state = "wooden_chair";
@@ -90264,15 +83746,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dei" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre)
-"dej" = (
+"cOT" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/fulltile,
@@ -90283,7 +83757,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"dek" = (
+"cOU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -90292,7 +83766,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"del" = (
+"cOV" = (
/obj/machinery/door/airlock/maintenance{
name = "Starboard Asteroid Maintenance Access";
req_access_txt = "12"
@@ -90301,37 +83775,19 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dem" = (
+"cOW" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"den" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deo" = (
+"cOX" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dep" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"deq" = (
+"cOY" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -90340,37 +83796,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"der" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"des" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"det" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"deu" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"dev" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/cmo)
-"dew" = (
+"cOZ" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/patients_rooms)
-"dex" = (
+"cPa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -90378,7 +83809,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dey" = (
+"cPb" = (
/obj/structure/closet/crate,
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -90387,7 +83818,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dez" = (
+"cPc" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -90399,19 +83830,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deB" = (
+"cPd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -90424,31 +83843,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deE" = (
+"cPe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -90468,19 +83863,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre)
-"deF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deG" = (
+"cPf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -90493,7 +83876,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deH" = (
+"cPg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -90508,7 +83891,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"deI" = (
+"cPh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -90517,7 +83900,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"deJ" = (
+"cPi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -90528,13 +83911,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"deK" = (
+"cPj" = (
/obj/machinery/suit_storage_unit/cmo,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"deL" = (
+"cPk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -90542,7 +83925,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"deM" = (
+"cPl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -90555,7 +83938,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"deN" = (
+"cPm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -90563,7 +83946,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"deO" = (
+"cPn" = (
/obj/machinery/light/small{
dir = 4
},
@@ -90572,7 +83955,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"deP" = (
+"cPo" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -90585,7 +83968,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deQ" = (
+"cPp" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -90598,20 +83981,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deR" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deS" = (
+"cPq" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -90628,7 +83998,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deT" = (
+"cPr" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -90643,42 +84013,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"deU" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deV" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"deW" = (
+"cPs" = (
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"deX" = (
+"cPt" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/keycard_auth{
pixel_x = -24
@@ -90687,19 +84027,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"deY" = (
+"cPu" = (
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"deZ" = (
+"cPv" = (
/obj/structure/table/glass,
/obj/item/clothing/glasses/hud/health,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfa" = (
+"cPw" = (
/obj/structure/table/glass,
/obj/item/clothing/neck/stethoscope,
/obj/item/weapon/folder,
@@ -90707,27 +84047,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfb" = (
+"cPx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/holopad,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfc" = (
+"cPy" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/surgery)
-"dfd" = (
-/obj/structure/girder,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dfe" = (
+"cPz" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -90735,12 +84067,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dff" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"dfg" = (
+"cPA" = (
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -90754,7 +84081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfh" = (
+"cPB" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -90762,14 +84089,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfi" = (
+"cPC" = (
/obj/machinery/computer/med_data/laptop,
/obj/structure/table/glass,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfj" = (
+"cPD" = (
/obj/structure/chair{
dir = 8
},
@@ -90778,7 +84105,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfk" = (
+"cPE" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
@@ -90790,7 +84117,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfl" = (
+"cPF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
@@ -90799,7 +84126,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfm" = (
+"cPG" = (
/obj/machinery/light/small{
dir = 1
},
@@ -90810,7 +84137,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfn" = (
+"cPH" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -90819,7 +84146,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfo" = (
+"cPI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -90830,7 +84157,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfp" = (
+"cPJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -90838,7 +84165,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfq" = (
+"cPK" = (
/obj/machinery/light{
dir = 1
},
@@ -90846,7 +84173,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfr" = (
+"cPL" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -90855,15 +84182,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfs" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dft" = (
+"cPM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -90876,20 +84195,20 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dfu" = (
+"cPN" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"dfv" = (
+"cPO" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfw" = (
+"cPP" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -90901,7 +84220,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfx" = (
+"cPQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/orange{
@@ -90913,24 +84232,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfy" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/surgery)
-"dfz" = (
+"cPR" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfA" = (
+"cPS" = (
/obj/structure/closet,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dfB" = (
+"cPT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -90940,7 +84254,7 @@
/area/mine/unexplored{
name = "Medical Asteroid"
})
-"dfC" = (
+"cPU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -90951,12 +84265,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dfD" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/surgery)
-"dfE" = (
+"cPV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -90965,7 +84274,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfF" = (
+"cPW" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -90974,7 +84283,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfG" = (
+"cPX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor,
@@ -90985,7 +84294,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfH" = (
+"cPY" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -90999,7 +84308,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/virology)
-"dfI" = (
+"cPZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -91009,15 +84318,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dfJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dfK" = (
+"cQa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91028,43 +84329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"dfL" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dfM" = (
-/obj/effect/turf_decal/stripes/asteroid/line{
- icon_state = "ast_warn";
- dir = 4
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dfN" = (
-/obj/structure/window/reinforced,
-/obj/machinery/camera{
- c_tag = "Medbay-Engineering Bridge 2";
- dir = 1
- },
-/turf/open/floor/engine,
-/area/space)
-"dfO" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dfP" = (
+"cQb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -91074,14 +84339,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"dfQ" = (
+"cQc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"dfR" = (
+"cQd" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -91091,28 +84356,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dfS" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dfT" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dfU" = (
+"cQe" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -91120,14 +84364,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dfV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"dfW" = (
+"cQf" = (
/obj/machinery/door/airlock/medical{
name = "Morgue";
req_access_txt = "0";
@@ -91140,7 +84377,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dfX" = (
+"cQg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -91150,7 +84387,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dfY" = (
+"cQh" = (
/obj/structure/table,
/obj/item/weapon/folder,
/obj/machinery/camera{
@@ -91163,7 +84400,7 @@
dir = 5
},
/area/medical/morgue)
-"dfZ" = (
+"cQi" = (
/obj/structure/cable/orange{
d2 = 2;
icon_state = "0-2"
@@ -91181,42 +84418,7 @@
dir = 5
},
/area/medical/morgue)
-"dga" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dgb" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgc" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgd" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dge" = (
+"cQj" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -91224,14 +84426,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/medbay)
-"dgg" = (
+"cQk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91239,7 +84434,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"dgh" = (
+"cQl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91247,7 +84442,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"dgi" = (
+"cQm" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark/revenantspawn,
/turf/open/floor/plasteel/vault{
@@ -91255,15 +84450,7 @@
dir = 5
},
/area/medical/morgue)
-"dgj" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/vault{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 5
- },
-/area/medical/morgue)
-"dgk" = (
+"cQn" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -91280,28 +84467,7 @@
dir = 5
},
/area/medical/morgue)
-"dgl" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgm" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgn" = (
+"cQo" = (
/obj/machinery/light/small{
dir = 4
},
@@ -91311,13 +84477,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgo" = (
+"cQp" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dgp" = (
+"cQq" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -91332,36 +84498,7 @@
dir = 5
},
/area/medical/morgue)
-"dgq" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgr" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgs" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/vault{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 5
- },
-/area/medical/morgue)
-"dgt" = (
+"cQr" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -91371,7 +84508,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dgu" = (
+"cQs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -91381,57 +84518,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dgv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgA" = (
+"cQt" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -91442,27 +84529,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dgB" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgC" = (
+"cQu" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgD" = (
+"cQv" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -91470,7 +84544,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgE" = (
+"cQw" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -91478,7 +84552,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgF" = (
+"cQx" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -91496,7 +84570,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/genetics_cloning)
-"dgG" = (
+"cQy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -91504,7 +84578,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dgH" = (
+"cQz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -91512,15 +84586,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dgI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue)
-"dgJ" = (
+"cQA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -91530,77 +84596,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dgK" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue)
-"dgL" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgM" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgN" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgO" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgP" = (
+"cQB" = (
/obj/item/stack/rods,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -91613,7 +84609,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgQ" = (
+"cQC" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
@@ -91622,7 +84618,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dgR" = (
+"cQD" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera{
c_tag = "Morgue South";
@@ -91636,7 +84632,7 @@
dir = 5
},
/area/medical/morgue)
-"dgS" = (
+"cQE" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -91646,47 +84642,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dgT" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/vault{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 5
- },
-/area/medical/morgue)
-"dgU" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark/revenantspawn,
-/turf/open/floor/plasteel/vault{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- dir = 5
- },
-/area/medical/morgue)
-"dgV" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/medical/morgue)
-"dgW" = (
-/obj/structure/closet,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dgX" = (
-/obj/structure/girder,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dgY" = (
+"cQF" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -91695,15 +84651,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dgZ" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dha" = (
+"cQG" = (
/obj/machinery/door/airlock/maintenance{
name = "Morgue";
req_access_txt = "5"
@@ -91717,7 +84665,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/morgue)
-"dhb" = (
+"cQH" = (
/obj/machinery/light{
dir = 1
},
@@ -91726,13 +84674,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhc" = (
+"cQI" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dhd" = (
+"cQJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -91741,7 +84689,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhe" = (
+"cQK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -91755,14 +84703,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhf" = (
-/obj/structure/grille/broken,
-/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dhg" = (
+"cQL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -91773,15 +84714,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhh" = (
-/obj/structure/girder,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dhi" = (
+"cQM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -91795,7 +84728,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhj" = (
+"cQN" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -91803,7 +84736,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhk" = (
+"cQO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -91815,42 +84748,14 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhl" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dhm" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dhn" = (
+"cQP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dho" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/engine/engineering)
-"dhp" = (
+"cQQ" = (
/obj/effect/landmark/start/station_engineer,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -91859,14 +84764,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhq" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dhr" = (
+"cQR" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -91874,7 +84772,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhs" = (
+"cQS" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -91884,7 +84782,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dht" = (
+"cQT" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -91894,7 +84792,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dhu" = (
+"cQU" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -91904,7 +84802,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhv" = (
+"cQV" = (
/obj/structure/sign/enginesafety{
pixel_y = -32
},
@@ -91916,7 +84814,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhw" = (
+"cQW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -91937,7 +84835,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhx" = (
+"cQX" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -91946,14 +84844,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhy" = (
+"cQY" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhz" = (
+"cQZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -91961,15 +84859,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dhB" = (
+"cRa" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -91982,24 +84872,16 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhC" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dhD" = (
+"cRb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dhE" = (
+"cRc" = (
/turf/closed/wall,
/area/crew_quarters/chief)
-"dhF" = (
+"cRd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -92019,10 +84901,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dhG" = (
-/turf/closed/wall,
-/area/crew_quarters/chief)
-"dhH" = (
+"cRe" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -92031,14 +84910,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/engine/engineering)
-"dhI" = (
+"cRf" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/turf/open/floor/plating/asteroid,
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dhJ" = (
+"cRg" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -92046,15 +84925,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dhL" = (
+"cRh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -92067,7 +84938,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhM" = (
+"cRi" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92075,7 +84946,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhN" = (
+"cRj" = (
/obj/machinery/light/small{
dir = 4
},
@@ -92085,32 +84956,12 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dhO" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dhP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/chief)
-"dhQ" = (
+"cRk" = (
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dhR" = (
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/chief)
-"dhS" = (
+"cRl" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/item/weapon/paper/monitorkey,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -92119,7 +84970,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dhT" = (
+"cRm" = (
/obj/item/weapon/cartridge/engineering{
pixel_x = 4;
pixel_y = 5
@@ -92141,17 +84992,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dhU" = (
-/turf/closed/wall,
-/area/crew_quarters/chief)
-"dhV" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dhW" = (
+"cRn" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -92160,7 +85001,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhX" = (
+"cRo" = (
/obj/machinery/light/small{
dir = 1
},
@@ -92171,7 +85012,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhY" = (
+"cRp" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -92185,7 +85026,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dhZ" = (
+"cRq" = (
/obj/item/stack/rods,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92193,19 +85034,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dia" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/chief)
-"dib" = (
+"cRr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dic" = (
+"cRs" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -92213,7 +85048,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"did" = (
+"cRt" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
/obj/item/clothing/glasses/meson{
@@ -92223,7 +85058,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"die" = (
+"cRu" = (
/obj/structure/chair{
dir = 8
},
@@ -92237,7 +85072,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dif" = (
+"cRv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -92246,7 +85081,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dig" = (
+"cRw" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -92255,24 +85090,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dih" = (
-/turf/closed/wall,
-/area/crew_quarters/chief)
-"dii" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dij" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dik" = (
+"cRx" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92280,14 +85098,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dil" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dim" = (
+"cRy" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92295,28 +85106,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"din" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dio" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dip" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diq" = (
+"cRz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -92327,38 +85117,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dir" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"dis" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dit" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"diu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/chief)
-"div" = (
+"cRA" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -92370,7 +85129,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"diw" = (
+"cRB" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -92383,10 +85142,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dix" = (
-/turf/closed/wall,
-/area/crew_quarters/chief)
-"diy" = (
+"cRC" = (
/obj/machinery/light/small{
dir = 8
},
@@ -92395,7 +85151,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"diz" = (
+"cRD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -92410,155 +85166,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"diA" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diB" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diC" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diD" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diE" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diF" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diG" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diH" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diI" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"diK" = (
+"cRE" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -92569,14 +85177,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"diL" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diM" = (
+"cRF" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
@@ -92585,29 +85186,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"diN" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diO" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diP" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"diQ" = (
+"cRG" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92615,20 +85194,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"diR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"diS" = (
+"cRH" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92636,7 +85202,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"diT" = (
+"cRI" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92644,7 +85210,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"diU" = (
+"cRJ" = (
/obj/structure/grille,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92652,15 +85218,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"diV" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"diW" = (
+"cRK" = (
/obj/structure/closet/emcloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -92669,7 +85227,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"diX" = (
+"cRL" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -92678,7 +85236,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"diY" = (
+"cRM" = (
/obj/structure/girder,
/obj/item/stack/rods,
/turf/open/floor/plating{
@@ -92687,13 +85245,13 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"diZ" = (
+"cRN" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid,
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dja" = (
+"cRO" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -92702,7 +85260,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djb" = (
+"cRP" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/turf/open/floor/plating{
@@ -92711,23 +85269,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djc" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djd" = (
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dje" = (
+"cRQ" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -92736,23 +85278,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djf" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djg" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"djh" = (
+"cRR" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92760,7 +85286,7 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"dji" = (
+"cRS" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -92770,16 +85296,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djj" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djk" = (
+"cRT" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92787,7 +85304,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djl" = (
+"cRU" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92795,7 +85312,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djm" = (
+"cRV" = (
/obj/machinery/light/small,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92803,47 +85320,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djn" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djo" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djp" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djq" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djr" = (
-/obj/structure/girder,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"djs" = (
+"cRW" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/open/floor/plating{
@@ -92852,23 +85329,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djt" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dju" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djv" = (
+"cRX" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92876,7 +85337,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djw" = (
+"cRY" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
@@ -92885,7 +85346,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djx" = (
+"cRZ" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92893,69 +85354,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djz" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djC" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djD" = (
-/obj/structure/grille/broken,
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djE" = (
-/obj/structure/girder,
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djF" = (
+"cSa" = (
/obj/structure/closet/crate,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92963,7 +85362,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djG" = (
+"cSb" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -92971,64 +85370,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djH" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djI" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djJ" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djK" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djL" = (
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djM" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djN" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djO" = (
+"cSc" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/syringe/charcoal,
/turf/open/floor/plating{
@@ -93037,7 +85379,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djP" = (
+"cSd" = (
/obj/structure/table,
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/glasses/sunglasses/blindfold,
@@ -93047,15 +85389,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djQ" = (
-/obj/structure/closet,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djR" = (
+"cSe" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -93070,31 +85404,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"djS" = (
-/obj/structure/girder,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djT" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"djU" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"djV" = (
+"cSf" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -93102,400 +85412,14 @@
/area/maintenance/port{
name = "Port Asteroid Maintenance"
})
-"djW" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/port{
- name = "Port Asteroid Maintenance"
- })
-"djX" = (
+"cSg" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/theatre{
name = "Top Secret Clown HQ"
})
-"djY" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"djZ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dka" = (
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkb" = (
-/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/neutral{
- dir = 2
- },
-/area/space)
-"dkc" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "CE Office APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/space)
-"dkd" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dke" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dkf" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 3;
- name = "Chief Engineer RC";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/computer/apc_control,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkg" = (
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkh" = (
-/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,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dki" = (
-/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/space)
-"dkj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkk" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dkl" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dkm" = (
-/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"
- },
-/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"
- },
-/obj/machinery/button/door{
- id = "atmos";
- name = "Atmospherics Lockdown";
- pixel_x = -24;
- pixel_y = 10;
- req_access_txt = "24"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkn" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/chief_engineer,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dko" = (
-/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/space)
-"dkp" = (
-/obj/structure/cable{
- d1 = 1;
- 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/space)
-"dkq" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkr" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dks" = (
-/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/computer/card/minor/ce,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkt" = (
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dku" = (
-/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
- },
-/area/space)
-"dkv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkw" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/structure/filingcabinet/chestdrawer,
-/mob/living/simple_animal/parrot/Poly,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkx" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dky" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dkz" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkC" = (
-/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/space)
-"dkD" = (
-/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/machinery/light_switch{
- pixel_x = 27
- },
-/obj/item/weapon/cartridge/atmos,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/space)
-"dkE" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dkF" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/theatre{
- name = "Top Secret Clown HQ"
- })
-"dkG" = (
+"cSh" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93503,7 +85427,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkH" = (
+"cSi" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -93515,7 +85439,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkI" = (
+"cSj" = (
/obj/machinery/camera{
c_tag = "Aux Base Construction North";
dir = 1;
@@ -93526,7 +85450,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"dkJ" = (
+"cSk" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -93538,7 +85462,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkK" = (
+"cSl" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -93551,7 +85475,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkL" = (
+"cSm" = (
/obj/machinery/light/small{
dir = 4
},
@@ -93561,7 +85485,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkM" = (
+"cSn" = (
/obj/machinery/light/small{
dir = 1
},
@@ -93571,7 +85495,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkN" = (
+"cSo" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93579,15 +85503,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkO" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dkP" = (
+"cSp" = (
/obj/machinery/light/small{
dir = 1
},
@@ -93597,7 +85513,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkQ" = (
+"cSq" = (
/obj/structure/grille,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93605,7 +85521,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkR" = (
+"cSr" = (
/obj/machinery/camera{
c_tag = "Aux Base Construction South";
dir = 6;
@@ -93615,7 +85531,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/shuttle/auxillary_base)
-"dkS" = (
+"cSs" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -93627,19 +85543,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkT" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dkU" = (
+"cSt" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -93652,7 +85556,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkV" = (
+"cSu" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -93665,32 +85569,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkW" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dkX" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dkY" = (
+"cSv" = (
/obj/structure/closet,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93698,19 +85577,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dkZ" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dla" = (
+"cSw" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -93719,19 +85586,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlb" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlc" = (
+"cSx" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -93739,19 +85594,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dld" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dle" = (
+"cSy" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -93761,7 +85604,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlf" = (
+"cSz" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 4;
@@ -93773,19 +85616,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlg" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlh" = (
+"cSA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -93798,32 +85629,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dli" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlj" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlk" = (
+"cSB" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93831,15 +85637,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dll" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlm" = (
+"cSC" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -93852,7 +85650,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dln" = (
+"cSD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -93866,19 +85664,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlo" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlp" = (
+"cSE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -93890,7 +85676,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlq" = (
+"cSF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -93906,7 +85692,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlr" = (
+"cSG" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -93919,14 +85705,14 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dls" = (
+"cSH" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlt" = (
+"cSI" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -93939,7 +85725,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlu" = (
+"cSJ" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -93952,7 +85738,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlv" = (
+"cSK" = (
/obj/structure/closet/crate,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93960,27 +85746,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlw" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlx" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dly" = (
+"cSL" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -93988,40 +85754,14 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlz" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Research-Docking Bridge 5";
- dir = 1;
- icon_state = "camera";
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"dlA" = (
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Research-Docking Bridge 4";
- dir = 1;
- icon_state = "camera";
- network = list("SS13")
- },
-/turf/open/floor/engine,
-/area/space)
-"dlB" = (
+"cSM" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlC" = (
+"cSN" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/spawner/lootdrop/maintenance,
@@ -94029,26 +85769,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlD" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlE" = (
+"cSO" = (
/obj/item/stack/rods,
/turf/open/floor/plating/asteroid,
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlF" = (
+"cSP" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
@@ -94057,7 +85784,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlG" = (
+"cSQ" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating{
@@ -94066,7 +85793,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlH" = (
+"cSR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -94078,35 +85805,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlI" = (
-/obj/structure/grille,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlJ" = (
-/obj/structure/grille,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlK" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlL" = (
+"cSS" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -94116,7 +85815,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlM" = (
+"cST" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -94126,21 +85825,21 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dlN" = (
+"cSU" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlO" = (
+"cSV" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlP" = (
+"cSW" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/power/apc{
@@ -94157,26 +85856,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlQ" = (
+"cSX" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlR" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dlS" = (
+"cSY" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/machinery/light{
@@ -94187,14 +85874,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlT" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dlU" = (
+"cSZ" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/structure/cable/orange{
@@ -94206,14 +85886,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlV" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dlW" = (
+"cTa" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -94223,7 +85896,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlX" = (
+"cTb" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -94233,7 +85906,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlY" = (
+"cTc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -94250,7 +85923,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dlZ" = (
+"cTd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -94258,7 +85931,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dma" = (
+"cTe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -94266,15 +85939,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/mixing)
-"dmb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/mixing)
-"dmc" = (
+"cTf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -94282,7 +85947,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dmd" = (
+"cTg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -94295,7 +85960,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dme" = (
+"cTh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -94308,20 +85973,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dmf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dmg" = (
+"cTi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -94338,73 +85990,30 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dmh" = (
+"cTj" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/toxins/storage)
-"dmi" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dmj" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dmk" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dml" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/toxins/storage)
-"dmm" = (
+"cTk" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmn" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmo" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmp" = (
+"cTl" = (
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmq" = (
+"cTm" = (
/obj/structure/displaycase/labcage,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmr" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dms" = (
+"cTn" = (
/obj/machinery/button/door{
id = "researchlockdown";
name = "Research Emergency Lockdown";
@@ -94426,7 +86035,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmt" = (
+"cTo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -94434,13 +86043,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmu" = (
+"cTp" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmv" = (
+"cTq" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -94454,7 +86063,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmw" = (
+"cTr" = (
/obj/structure/girder,
/obj/item/stack/sheet/metal,
/turf/open/floor/plating/astplate{
@@ -94463,7 +86072,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmx" = (
+"cTs" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -94477,18 +86086,13 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmy" = (
+"cTt" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmz" = (
-/turf/open/floor/plasteel/cafeteria{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmA" = (
+"cTu" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = 1;
@@ -94504,19 +86108,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmB" = (
+"cTv" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"dmC" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmD" = (
+"cTw" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Research Director's Desk";
@@ -94529,7 +86128,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmE" = (
+"cTx" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -94537,13 +86136,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmF" = (
+"cTy" = (
/obj/machinery/computer/mecha,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmG" = (
+"cTz" = (
/obj/structure/rack,
/obj/item/device/paicard{
pixel_x = 4
@@ -94556,19 +86155,7 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"dmH" = (
-/obj/structure/cable/orange{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dmI" = (
+"cTA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -94583,7 +86170,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmJ" = (
+"cTB" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -94599,7 +86186,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmK" = (
+"cTC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -94614,7 +86201,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmL" = (
+"cTD" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -94630,12 +86217,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmM" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmN" = (
+"cTE" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -94649,7 +86231,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmO" = (
+"cTF" = (
/obj/structure/rack,
/obj/item/device/aicard,
/obj/effect/turf_decal/stripes/line{
@@ -94657,12 +86239,12 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"dmP" = (
+"cTG" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dmQ" = (
+"cTH" = (
/obj/structure/grille,
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -94670,42 +86252,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmR" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmS" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmT" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmU" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmV" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmW" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmX" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/crew_quarters/hor)
-"dmY" = (
+"cTI" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -94715,7 +86262,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dmZ" = (
+"cTJ" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -94723,7 +86270,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dna" = (
+"cTK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -94738,7 +86285,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnb" = (
+"cTL" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
/turf/open/floor/plating{
@@ -94747,7 +86294,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnc" = (
+"cTM" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -94764,7 +86311,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnd" = (
+"cTN" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -94780,14 +86327,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dne" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid,
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnf" = (
+"cTO" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -94800,7 +86340,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dng" = (
+"cTP" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -94813,7 +86353,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnh" = (
+"cTQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/orange{
d1 = 1;
@@ -94826,28 +86366,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dni" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnj" = (
-/obj/structure/grille,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnk" = (
+"cTR" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -94861,30 +86380,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnn" = (
+"cTS" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating{
@@ -94893,28 +86389,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dno" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnp" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dnq" = (
+"cTT" = (
/obj/machinery/light/small,
/obj/structure/chair{
dir = 4
@@ -94925,7 +86400,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnr" = (
+"cTU" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/turf/open/floor/plating{
@@ -94934,7 +86409,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dns" = (
+"cTV" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 4;
@@ -94950,7 +86425,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnt" = (
+"cTW" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -94966,7 +86441,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnu" = (
+"cTX" = (
/obj/machinery/light/small{
dir = 8
},
@@ -94977,7 +86452,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnv" = (
+"cTY" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/astplate{
@@ -94986,7 +86461,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnw" = (
+"cTZ" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -94994,16 +86469,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnx" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/aft{
- name = "Aft Asteroid Maintenance"
- })
-"dny" = (
+"cUa" = (
/obj/structure/girder,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -95011,7 +86477,7 @@
/area/maintenance/aft{
name = "Aft Asteroid Maintenance"
})
-"dnz" = (
+"cUb" = (
/obj/machinery/airalarm{
dir = 1;
icon_state = "alarm0";
@@ -95021,7 +86487,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/turret_protected/ai)
-"dnA" = (
+"cUc" = (
/obj/structure/disposaloutlet{
dir = 8
},
@@ -95031,7 +86497,7 @@
},
/turf/open/space,
/area/space)
-"dnB" = (
+"cUd" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 8
@@ -95039,7 +86505,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"dnC" = (
+"cUe" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -95049,7 +86515,7 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"dnD" = (
+"cUf" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/airless/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -95057,7 +86523,7 @@
/area/mine/unexplored{
name = "Cargo Asteroid"
})
-"dnE" = (
+"cUg" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -95066,7 +86532,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"dnF" = (
+"cUh" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
},
@@ -95081,31 +86547,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/quartermaster/sorting)
-"dnG" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/mine/unexplored{
- name = "Cargo Asteroid"
- })
-"dnH" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/mine/unexplored{
- name = "Cargo Asteroid"
- })
-"dnI" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/mine/unexplored{
- name = "Cargo Asteroid"
- })
-"dnJ" = (
+"cUi" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -95118,7 +86560,7 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dnK" = (
+"cUj" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -95133,31 +86575,26 @@
/area/maintenance/starboard{
name = "Starboard Asteroid Maintenance"
})
-"dnL" = (
+"cUk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/twohanded/required/kirbyplants/dead,
/turf/open/floor/plasteel/cafeteria{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/hor)
-"dnM" = (
+"cUl" = (
/turf/closed/mineral,
/area/derelict/secret{
valid_territory = 0
})
-"dnN" = (
+"cUm" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"dnO" = (
-/turf/closed/mineral,
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnP" = (
+"cUn" = (
/obj/structure/girder,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -95165,56 +86602,21 @@
/area/derelict/secret{
valid_territory = 0
})
-"dnQ" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnR" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnS" = (
+"cUo" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"dnT" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnU" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnV" = (
+"cUp" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"dnW" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnX" = (
+"cUq" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
@@ -95225,14 +86627,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"dnY" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dnZ" = (
+"cUr" = (
/obj/machinery/door/airlock/glass_external{
cyclelinkeddir = 8
},
@@ -95243,74 +86638,14 @@
/area/derelict/secret{
valid_territory = 0
})
-"doa" = (
+"cUs" = (
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/derelict/secret{
valid_territory = 0
})
-"dob" = (
-/obj/machinery/door/airlock/glass_external{
- cyclelinkeddir = 8
- },
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doc" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dod" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doe" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dof" = (
-/turf/closed/mineral,
-/area/derelict/secret{
- valid_territory = 0
- })
-"dog" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doh" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doi" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doj" = (
+"cUt" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-20";
light_color = "#E1E17D";
@@ -95324,43 +86659,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"dok" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dol" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dom" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"don" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doo" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dop" = (
+"cUu" = (
/obj/structure/bed,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -95368,21 +86667,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doq" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dor" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dos" = (
+"cUv" = (
/obj/structure/sign/map/left/ceres{
pixel_x = 32
},
@@ -95402,19 +86687,12 @@
/area/derelict/secret{
valid_territory = 0
})
-"dot" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dou" = (
+"cUw" = (
/turf/closed/mineral/random/low_chance,
/area/derelict/secret{
valid_territory = 0
})
-"dov" = (
+"cUx" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/item/weapon/paper/crumpled{
info = "I can't be here for much longer, this station is too empty for its own good. Something is wrong..."
@@ -95433,14 +86711,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"dow" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"dox" = (
+"cUy" = (
/obj/item/weapon/paper/crumpled/bloody{
info = "...THE HOPLINE CALLS...IT THIRSTS FOR BLOOD...I MUST GO..."
},
@@ -95450,7 +86721,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doy" = (
+"cUz" = (
/obj/structure/chair{
dir = 4
},
@@ -95460,7 +86731,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doz" = (
+"cUA" = (
/obj/structure/table,
/obj/item/weapon/pen,
/turf/open/floor/plating{
@@ -95469,26 +86740,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doA" = (
-/turf/closed/mineral,
-/area/derelict/secret{
- valid_territory = 0
- })
-"doB" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doC" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doD" = (
+"cUB" = (
/obj/structure/sign/map/left{
pixel_y = -32
},
@@ -95498,7 +86750,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doE" = (
+"cUC" = (
/obj/structure/table,
/obj/structure/sign/map/right{
pixel_y = -32
@@ -95509,7 +86761,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doF" = (
+"cUD" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -95521,7 +86773,7 @@
/area/derelict/secret{
valid_territory = 0
})
-"doG" = (
+"cUE" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime{
@@ -95530,63 +86782,13 @@
/area/derelict/secret{
valid_territory = 0
})
-"doH" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doI" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doJ" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doK" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doL" = (
-/obj/structure/girder,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doM" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doN" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/derelict/secret{
- valid_territory = 0
- })
-"doO" = (
+"cUF" = (
/obj/machinery/smartfridge/food,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"doP" = (
+"cUG" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
name = "Kitchen Pick-Up";
@@ -95600,40 +86802,21 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/kitchen)
-"doQ" = (
-/obj/structure/disposalpipe/segment{
+"cUH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southleft{
- name = "Hydroponics Pick-Up";
- req_access_txt = "35"
- },
/turf/open/floor/plasteel/darkgreen{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"doR" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"doS" = (
+"cUI" = (
/obj/machinery/plantgenes,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hydroponics)
-"doT" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hydroponics)
-"doU" = (
+"cUJ" = (
/obj/machinery/recharge_station,
/obj/machinery/light/small{
dir = 8
@@ -95642,13 +86825,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/assembly/robotics)
-"doV" = (
+"cUK" = (
/obj/machinery/ai_status_display,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"doW" = (
+"cUL" = (
/obj/machinery/status_display{
density = 0;
layer = 4
@@ -95657,17 +86840,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"doX" = (
+"cUM" = (
/turf/open/floor/plasteel/darkred{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"doY" = (
-/turf/open/floor/plasteel/darkred{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/ai_monitored/security/armory)
-"doZ" = (
+"cUN" = (
/obj/machinery/button/door{
id = "armoryaccess";
name = "Armory Shutter Access";
@@ -95678,7 +86856,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"dpa" = (
+"cUO" = (
/obj/machinery/light/small{
dir = 4
},
@@ -95686,79 +86864,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"dpb" = (
+"cUP" = (
/obj/structure/closet/secure_closet/CMO,
/turf/open/floor/plasteel/barber{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/cmo)
-"dpc" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dpd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dpe" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dpf" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dpg" = (
-/obj/structure/table,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dph" = (
-/obj/machinery/door/airlock/glass_external{
- cyclelinkeddir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/starboard{
- name = "Starboard Asteroid Maintenance"
- })
-"dpi" = (
+"cUQ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix To Incinerator";
@@ -95770,7 +86882,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpj" = (
+"cUR" = (
/obj/machinery/atmospherics/pipe/manifold/orange/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -95782,7 +86894,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpk" = (
+"cUS" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -95795,7 +86907,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpl" = (
+"cUT" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -95803,15 +86915,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpm" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpn" = (
+"cUU" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating/astplate{
@@ -95820,7 +86924,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpo" = (
+"cUV" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating{
@@ -95829,7 +86933,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpp" = (
+"cUW" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -95841,7 +86945,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpq" = (
+"cUX" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -95852,7 +86956,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpr" = (
+"cUY" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -95860,23 +86964,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dps" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpt" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpu" = (
+"cUZ" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/machinery/atmospherics/pipe/simple/orange/hidden,
/turf/open/floor/plating{
@@ -95885,48 +86973,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpv" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpw" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpx" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpy" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpz" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpA" = (
+"cVa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -95939,93 +86986,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpB" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpD" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpF" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpH" = (
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpJ" = (
+"cVb" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -96037,7 +86998,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpK" = (
+"cVc" = (
/obj/machinery/light/small{
dir = 8
},
@@ -96053,7 +87014,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpL" = (
+"cVd" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -96065,7 +87026,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpM" = (
+"cVe" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
@@ -96078,81 +87039,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpN" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (SOUTHWEST)";
- icon_state = "intact";
- dir = 10
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpP" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpQ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (SOUTHWEST)";
- icon_state = "intact";
- dir = 10
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpS" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpT" = (
+"cVf" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (SOUTHWEST)";
@@ -96165,7 +87052,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpU" = (
+"cVg" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -96177,7 +87064,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpV" = (
+"cVh" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -96189,19 +87076,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpW" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Central Asteroid Maintenance";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpX" = (
+"cVi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -96214,43 +87089,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dpY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dpZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqa" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (NORTHEAST)";
- icon_state = "intact";
- dir = 5
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqb" = (
+"cVj" = (
/obj/machinery/atmospherics/pipe/simple/orange/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -96262,91 +87101,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqc" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqd" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqe" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqf" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqg" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqh" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqi" = (
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- tag = "icon-intact (EAST)";
- icon_state = "intact";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqj" = (
+"cVk" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
d1 = 2;
@@ -96364,7 +87119,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqk" = (
+"cVl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -96377,20 +87132,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dql" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqm" = (
+"cVm" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/cable{
d1 = 4;
@@ -96404,33 +87146,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqp" = (
+"cVn" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -96442,35 +87158,17 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating/astplate{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqr" = (
+"cVo" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqs" = (
+"cVp" = (
/turf/closed/wall/rust{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqt" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqu" = (
+"cVq" = (
/obj/machinery/door/airlock/atmos{
name = "Turbine Access";
req_access_txt = "32"
@@ -96486,27 +87184,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqv" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqw" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqx" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqy" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqz" = (
+"cVr" = (
/obj/machinery/door/airlock/maintenance{
name = "Central Asteroid Maintenance";
req_access_txt = "12"
@@ -96523,7 +87201,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqA" = (
+"cVs" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -96539,98 +87217,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dqI" = (
+"cVt" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -96645,12 +87232,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dqJ" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqK" = (
+"cVu" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4;
@@ -96661,7 +87243,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqL" = (
+"cVv" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "plasma tank pump"
@@ -96670,7 +87252,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqM" = (
+"cVw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -96688,14 +87270,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqN" = (
+"cVx" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/weapon/extinguisher,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqO" = (
+"cVy" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -96707,7 +87289,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqP" = (
+"cVz" = (
/obj/machinery/power/smes{
capacity = 9e+006;
charge = 10000
@@ -96720,17 +87302,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqQ" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqR" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqS" = (
+"cVA" = (
/obj/machinery/atmospherics/components/unary/tank/toxins{
dir = 4
},
@@ -96738,16 +87310,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqT" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "plasma tank pump"
- },
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqU" = (
+"cVB" = (
/obj/machinery/atmospherics/pipe/manifold4w/general{
level = 2
},
@@ -96766,7 +87329,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqV" = (
+"cVC" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
@@ -96780,7 +87343,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqW" = (
+"cVD" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -96796,7 +87359,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqX" = (
+"cVE" = (
/obj/machinery/airalarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
dir = 8;
@@ -96820,17 +87383,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dqY" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dqZ" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dra" = (
+"cVF" = (
/obj/structure/chair/stool,
/obj/structure/cable{
icon_state = "0-4";
@@ -96846,7 +87399,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drb" = (
+"cVG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -96857,7 +87410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drc" = (
+"cVH" = (
/obj/machinery/atmospherics/components/binary/valve{
name = "Mix to Space"
},
@@ -96870,13 +87423,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drd" = (
+"cVI" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dre" = (
+"cVJ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -96886,7 +87439,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drf" = (
+"cVK" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Incinerator to Output";
@@ -96896,17 +87449,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drg" = (
-/turf/closed/wall/rust{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drh" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"dri" = (
+"cVL" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -96917,7 +87460,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drj" = (
+"cVM" = (
/obj/machinery/computer/turbine_computer{
id = "incineratorturbine"
},
@@ -96929,14 +87472,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drk" = (
+"cVN" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drl" = (
+"cVO" = (
/obj/machinery/button/door{
id = "auxincineratorvent";
name = "Auxiliary Vent Control";
@@ -96957,7 +87500,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"drm" = (
+"cVP" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -96969,7 +87512,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"drn" = (
+"cVQ" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "incinerator_airlock_exterior";
idSelf = "incinerator_access_control";
@@ -96991,22 +87534,7 @@
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"dro" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drp" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drq" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drr" = (
+"cVR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible,
@@ -97014,12 +87542,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drs" = (
+"cVS" = (
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drt" = (
+"cVT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 2
},
@@ -97027,7 +87555,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dru" = (
+"cVU" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
@@ -97045,18 +87573,13 @@
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"drv" = (
+"cVV" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drw" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drx" = (
+"cVW" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
@@ -97065,12 +87588,7 @@
},
/turf/open/space,
/area/maintenance/incinerator)
-"dry" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drz" = (
+"cVX" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
on = 1
@@ -97092,7 +87610,7 @@
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"drA" = (
+"cVY" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -97100,7 +87618,7 @@
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"drB" = (
+"cVZ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
on = 1
@@ -97124,30 +87642,12 @@
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"drC" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drD" = (
+"cWa" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/space,
/area/maintenance/incinerator)
-"drE" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drF" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 2
- },
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drG" = (
+"cWb" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
@@ -97165,23 +87665,7 @@
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"drH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drI" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/incinerator)
-"drJ" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/maintenance/incinerator)
-"drK" = (
+"cWc" = (
/obj/machinery/door/poddoor{
id = "auxincineratorvent";
name = "Auxiliary Incinerator Vent"
@@ -97190,7 +87674,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drL" = (
+"cWd" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -97200,7 +87684,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drM" = (
+"cWe" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -97216,7 +87700,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drN" = (
+"cWf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -97230,21 +87714,10 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drO" = (
+"cWg" = (
/turf/closed/wall/r_wall,
/area/maintenance/incinerator)
-"drP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/maintenance/incinerator)
-"drQ" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"drR" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"drS" = (
+"cWh" = (
/obj/machinery/power/compressor{
comp_id = "incineratorturbine";
dir = 1;
@@ -97259,21 +87732,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drT" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"drU" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"drV" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/maintenance/incinerator)
-"drW" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"drX" = (
+"cWi" = (
/obj/machinery/power/turbine{
luminosity = 2
},
@@ -97282,23 +87741,20 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"drY" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"drZ" = (
+"cWj" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
},
/turf/open/floor/plating/airless,
/area/maintenance/incinerator)
-"dsa" = (
+"cWk" = (
/obj/structure/sign/fire{
pixel_x = 0;
pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/maintenance/incinerator)
-"dsb" = (
+"cWl" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
name = "Turbine Vent"
@@ -97307,14 +87763,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/maintenance/incinerator)
-"dsc" = (
-/obj/structure/sign/fire{
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"dsd" = (
+"cWm" = (
/obj/machinery/power/apc{
dir = 1;
name = "Armory APC";
@@ -97337,7 +87786,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"dse" = (
+"cWn" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -97355,7 +87804,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"dsf" = (
+"cWo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -97368,7 +87817,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"dsg" = (
+"cWp" = (
/obj/structure/closet/secure_closet{
name = "contraband locker";
req_access_txt = "3"
@@ -97380,7 +87829,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/ai_monitored/security/armory)
-"dsh" = (
+"cWq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -97390,7 +87839,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsi" = (
+"cWr" = (
/obj/machinery/light/small{
dir = 1
},
@@ -97398,12 +87847,12 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsj" = (
+"cWs" = (
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsk" = (
+"cWt" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -97413,7 +87862,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsl" = (
+"cWu" = (
/obj/machinery/camera{
c_tag = "Security Interrogation";
dir = 9;
@@ -97425,13 +87874,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsm" = (
+"cWv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsn" = (
+"cWw" = (
/obj/structure/chair{
dir = 4
},
@@ -97439,14 +87888,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dso" = (
+"cWx" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsp" = (
+"cWy" = (
/obj/structure/chair{
dir = 8
},
@@ -97454,12 +87903,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsq" = (
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"dsr" = (
+"cWz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -97467,7 +87911,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dss" = (
+"cWA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -97475,33 +87919,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dst" = (
+"cWB" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsu" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"dsv" = (
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"dsw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"dsx" = (
+"cWC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -97509,15 +87934,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsy" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/prison)
-"dsz" = (
+"cWD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -97526,13 +87943,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsA" = (
+"cWE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsB" = (
+"cWF" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -97549,7 +87966,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsC" = (
+"cWG" = (
/obj/machinery/power/apc{
dir = 1;
name = "Security Transfer Range APC";
@@ -97564,7 +87981,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsD" = (
+"cWH" = (
/obj/structure/cable/orange{
d1 = 2;
d2 = 8;
@@ -97574,7 +87991,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsE" = (
+"cWI" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -97593,7 +88010,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsF" = (
+"cWJ" = (
/obj/structure/mineral_door/iron{
name = "Transfer Center"
},
@@ -97606,7 +88023,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsG" = (
+"cWK" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -97623,7 +88040,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsH" = (
+"cWL" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 2;
@@ -97639,7 +88056,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/prison)
-"dsI" = (
+"cWM" = (
/obj/machinery/door/airlock/security{
name = "Inmate Transfer Facility";
req_access_txt = "2"
@@ -97653,7 +88070,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsJ" = (
+"cWN" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -97663,17 +88080,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsK" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/security/transfer)
-"dsL" = (
+"cWO" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -97686,7 +88093,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsM" = (
+"cWP" = (
/obj/structure/cable/orange{
d1 = 1;
d2 = 8;
@@ -97696,7 +88103,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/security/transfer)
-"dsN" = (
+"cWQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -97713,7 +88120,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dsO" = (
+"cWR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -97735,7 +88142,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dsP" = (
+"cWS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -97753,54 +88160,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/crew_quarters/chief)
-"dsQ" = (
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 4";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/space,
-/area/space)
-"dsR" = (
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 1";
- dir = 8;
- network = list("SS13")
- },
-/turf/open/space,
-/area/space)
-"dsS" = (
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 2";
- network = list("SS13")
- },
-/turf/open/space,
-/area/space)
-"dsT" = (
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge 3";
- network = list("SS13")
- },
-/turf/open/space,
-/area/space)
-"dsU" = (
-/obj/machinery/camera{
- c_tag = "Core-Command-Cargo Bridge Ceneter";
- dir = 1
- },
-/turf/open/space,
-/area/space)
-"dsV" = (
+"cWT" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dsW" = (
+"cWU" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dsX" = (
+"cWV" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -97808,7 +88178,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dsY" = (
+"cWW" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -97817,18 +88187,18 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dsZ" = (
+"cWX" = (
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dta" = (
+"cWY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dtb" = (
+"cWZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
@@ -97837,35 +88207,12 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dtc" = (
+"cXa" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dtd" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dte" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtf" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dth" = (
+"cXb" = (
/obj/machinery/camera{
c_tag = "Command-Service Bridge";
dir = 4;
@@ -97875,7 +88222,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dti" = (
+"cXc" = (
/obj/machinery/light/small{
dir = 4
},
@@ -97883,18 +88230,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dtj" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dtl" = (
+"cXd" = (
/obj/machinery/camera{
c_tag = "Command-Engineering Bridge";
dir = 8;
@@ -97904,36 +88240,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dtm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dtn" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dto" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtp" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtq" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtr" = (
+"cXe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
icon_state = "1-2"
@@ -97942,7 +88249,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dts" = (
+"cXf" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 8;
@@ -97957,12 +88264,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dtt" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtu" = (
+"cXg" = (
/obj/machinery/light{
dir = 4
},
@@ -97970,20 +88272,12 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dtv" = (
+"cXh" = (
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dtw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtx" = (
+"cXi" = (
/obj/machinery/power/apc{
dir = 8;
name = "Command-Service Bridge APC";
@@ -97997,7 +88291,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dty" = (
+"cXj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98008,7 +88302,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dtz" = (
+"cXk" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -98021,46 +88315,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dtA" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dtC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dtD" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtE" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtF" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtG" = (
+"cXl" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -98068,61 +88323,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dtH" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtI" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtK" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtL" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtN" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtO" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtQ" = (
+"cXm" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -98134,36 +88335,7 @@
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dtR" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dtS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dtT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dtU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtV" = (
+"cXn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Medbay-Cargo Bridge";
@@ -98177,89 +88349,7 @@
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dtW" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtX" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtY" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dtZ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dua" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dub" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"duc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dud" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"due" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"duf" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Service Bridge"
- })
-"dug" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"duh" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"dui" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"duj" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Medical-Cargo Bridge"
- })
-"duk" = (
+"cXo" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -98267,7 +88357,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"dul" = (
+"cXp" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -98277,7 +88367,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dum" = (
+"cXq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -98291,77 +88381,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dun" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dup" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dur" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dus" = (
+"cXr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -98377,39 +88397,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"dut" = (
-/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/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"duu" = (
-/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/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"duv" = (
+"cXs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -98420,18 +88408,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"duw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dux" = (
+"cXt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -98442,40 +88419,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"duy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duB" = (
+"cXu" = (
/obj/machinery/light{
dir = 1
},
@@ -98483,7 +88427,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"duC" = (
+"cXv" = (
/obj/machinery/light/small{
dir = 1
},
@@ -98491,180 +88435,12 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"duD" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"duE" = (
+"cXw" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"duF" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duG" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duH" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duI" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duJ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duK" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duL" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duM" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duN" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duO" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duP" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duQ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duR" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duS" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duT" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duU" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duV" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duW" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duX" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duY" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"duZ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dva" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvb" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvc" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvd" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dve" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvf" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvg" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvh" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvi" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvj" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvk" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvl" = (
+"cXx" = (
/obj/machinery/camera{
c_tag = "Service-Engineering Bridge 1";
dir = 1
@@ -98673,7 +88449,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dvm" = (
+"cXy" = (
/obj/machinery/power/apc{
dir = 2;
name = "Service-Engineering Bridge APC";
@@ -98686,7 +88462,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dvn" = (
+"cXz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98697,29 +88473,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dvo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvq" = (
+"cXA" = (
/obj/machinery/camera{
c_tag = "Service-Engineering Bridge 2";
dir = 1
@@ -98734,7 +88488,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dvr" = (
+"cXB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98747,33 +88501,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"dvs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- icon_state = "neutralcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dvt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- icon_state = "neutralcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dvu" = (
+"cXC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98784,29 +88512,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"dvv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dvw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dvx" = (
+"cXD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98817,29 +88523,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"dvy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"dvz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"dvA" = (
+"cXE" = (
/obj/machinery/camera{
c_tag = "Medbay-Engineering Bridge";
dir = 1
@@ -98854,7 +88538,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"dvB" = (
+"cXF" = (
/obj/machinery/power/apc{
dir = 2;
name = "Engineering-Medical Bridge APC";
@@ -98868,7 +88552,7 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"dvC" = (
+"cXG" = (
/obj/machinery/camera{
c_tag = "Medbay-Engineering Bridge 2";
dir = 1
@@ -98877,21 +88561,14 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"dvD" = (
+"cXH" = (
/turf/closed/wall{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dvE" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvF" = (
+"cXI" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -98905,287 +88582,7 @@
/area/construction/hallway{
name = "Service-Engineering Bridge"
})
-"dvG" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvH" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvI" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvJ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvK" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvL" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvM" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvN" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvQ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvR" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvS" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvT" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvU" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvX" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvY" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dvZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/open/space,
-/area/construction/hallway{
- name = "Service-Engineering Bridge"
- })
-"dwa" = (
+"cXJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -99196,96 +88593,19 @@
/area/construction/hallway{
name = "Engineering-Medical Bridge"
})
-"dwb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"dwc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Engineering-Medical Bridge"
- })
-"dwd" = (
+"cXK" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwe" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwf" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwg" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwh" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwi" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwj" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwk" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwl" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwm" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwn" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwo" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwp" = (
+"cXL" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwq" = (
+"cXM" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -99294,12 +88614,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwr" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dws" = (
+"cXN" = (
/obj/machinery/camera{
c_tag = "Docking-Medbay Bridge";
dir = 8;
@@ -99309,7 +88624,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwt" = (
+"cXO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -99320,24 +88635,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwu" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwv" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dww" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwx" = (
+"cXP" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
@@ -99346,7 +88644,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwy" = (
+"cXQ" = (
/obj/machinery/power/apc{
dir = 4;
name = "Docking-Medical Bridge APC";
@@ -99361,18 +88659,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwA" = (
+"cXR" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -99380,39 +88667,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwB" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwC" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwE" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwF" = (
+"cXS" = (
/obj/machinery/camera{
c_tag = "Docking-Medbay Bridge 2";
dir = 8;
@@ -99425,18 +88680,7 @@
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dwG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Docking-Medical Bridge"
- })
-"dwH" = (
+"cXT" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
icon_state = "1-2"
@@ -99445,7 +88689,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dwI" = (
+"cXU" = (
/obj/structure/cable{
icon_state = "1-2"
},
@@ -99453,31 +88697,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dwJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"dwK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"dwL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/neutral/corner{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/starboard)
-"dwM" = (
+"cXV" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -99490,7 +88710,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dwN" = (
+"cXW" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -99501,72 +88721,17 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dwO" = (
+"cXX" = (
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dwP" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwQ" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwR" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwS" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwT" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwU" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwV" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwW" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwX" = (
+"cXY" = (
/turf/open/floor/engine,
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dwY" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dwZ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxa" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxb" = (
+"cXZ" = (
/obj/machinery/light{
dir = 1
},
@@ -99574,27 +88739,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dxc" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxd" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxe" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxf" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxg" = (
+"cYa" = (
/obj/machinery/light/small{
dir = 1
},
@@ -99602,428 +88747,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dxh" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxi" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxj" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxk" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxl" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxm" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxn" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxo" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxp" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxq" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxr" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxs" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxt" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxu" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxv" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxw" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxx" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxy" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxz" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxA" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxB" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxC" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxD" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxE" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxF" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxG" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxH" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxI" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxJ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxK" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxL" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxM" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxN" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxO" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxP" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxQ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxR" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxS" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxT" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxU" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxV" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxW" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxX" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxY" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dxZ" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dya" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyb" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyc" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyd" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dye" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyf" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyg" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyh" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyi" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyj" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyk" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyl" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dym" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyn" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyo" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyp" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyq" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyr" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dys" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyt" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyu" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyv" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyw" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyx" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyy" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyz" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyA" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyB" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyC" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyD" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyE" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyF" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyG" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyH" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyI" = (
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyJ" = (
+"cYb" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -100035,7 +88759,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"dyK" = (
+"cYc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -100048,20 +88772,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/aft)
-"dyL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- icon_state = "neutralcorner";
- dir = 8;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/aft)
-"dyM" = (
+"cYd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -100081,7 +88792,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dyN" = (
+"cYe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -100101,7 +88812,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dyO" = (
+"cYf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -100109,55 +88820,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dyP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyV" = (
+"cYg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -100171,39 +88834,7 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dyW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dyZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dza" = (
+"cYh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -100217,69 +88848,16 @@
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dzb" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzc" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzd" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dze" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzf" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzg" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzh" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzi" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzj" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Science-Docking Bridge"
- })
-"dzk" = (
+"cYi" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space)
-"dzl" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"dzm" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
-"dzn" = (
+"cYj" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/space,
/area/space)
-"dzo" = (
+"cYk" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -100301,7 +88879,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzp" = (
+"cYl" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 8
@@ -100316,7 +88894,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzq" = (
+"cYm" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced{
dir = 4;
@@ -100337,94 +88915,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzr" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzs" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzt" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzv" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzw" = (
+"cYn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
@@ -100435,7 +88926,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzx" = (
+"cYo" = (
/obj/machinery/light/small{
dir = 8
},
@@ -100443,132 +88934,13 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzy" = (
+"cYp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzz" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzA" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzB" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzC" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzD" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzE" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzG" = (
+"cYq" = (
/obj/machinery/light{
dir = 8
},
@@ -100576,140 +88948,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzI" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzJ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzK" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzL" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzM" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzN" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzP" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzQ" = (
+"cYr" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 1";
dir = 8;
@@ -100719,290 +88958,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dzR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzS" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzT" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzU" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzV" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzW" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzX" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dzZ" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAb" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAc" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAd" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAe" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAf" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAg" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAh" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAi" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAj" = (
+"cYs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -101016,21 +88972,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAl" = (
+"cYt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -101043,15 +88985,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAm" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAn" = (
+"cYu" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -101065,49 +88999,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAo" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAp" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAq" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAr" = (
+"cYv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -101115,99 +89007,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAs" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAt" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAv" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAx" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAy" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/space,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAz" = (
+"cYw" = (
/obj/structure/lattice/catwalk,
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -101221,7 +89021,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAA" = (
+"cYx" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 2";
network = list("SS13")
@@ -101230,7 +89030,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAB" = (
+"cYy" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 3";
network = list("SS13")
@@ -101239,7 +89039,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAC" = (
+"cYz" = (
/obj/machinery/power/apc{
dir = 1;
name = "Cargo-AI-Command Bridge APC";
@@ -101253,7 +89053,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAD" = (
+"cYA" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -101263,37 +89063,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAE" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAF" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAG" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAH" = (
+"cYB" = (
/obj/machinery/camera{
c_tag = "Core-Command-Cargo Bridge 3";
network = list("SS13")
@@ -101307,87 +89077,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAI" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAJ" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAK" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAL" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAM" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAN" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAO" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAP" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAQ" = (
+"cYC" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -101400,20 +89090,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dAR" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (NORTH)";
- icon_state = "neutralcorner";
- dir = 1;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/fore)
-"dAS" = (
+"cYD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -101434,79 +89111,30 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dAT" = (
+"cYE" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAU" = (
+"cYF" = (
/obj/machinery/light,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAV" = (
+"cYG" = (
/obj/machinery/light/small,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dAW" = (
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAX" = (
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAY" = (
-/obj/machinery/light/small,
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dAZ" = (
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dBa" = (
+"cYH" = (
/turf/closed/wall/r_wall,
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dBb" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dBc" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dBd" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dBe" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dBf" = (
-/turf/closed/wall/r_wall,
-/area/construction/hallway{
- name = "Cargo-AI-Command Bridge"
- })
-"dBg" = (
+"cYI" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -101520,7 +89148,7 @@
/area/construction/hallway{
name = "Cargo-AI-Command Bridge"
})
-"dBh" = (
+"cYJ" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -101529,7 +89157,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dBi" = (
+"cYK" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
@@ -101538,22 +89166,13 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dBj" = (
+"cYL" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Command-Service Bridge"
})
-"dBk" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBl" = (
+"cYM" = (
/obj/machinery/power/apc{
dir = 4;
name = "Command-Engineering Bridge APC";
@@ -101569,7 +89188,7 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dBm" = (
+"cYN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -101580,88 +89199,13 @@
/area/construction/hallway{
name = "Command-Engineering Bridge"
})
-"dBn" = (
+"cYO" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Medical-Cargo Bridge"
})
-"dBo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBq" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/construction/hallway{
- name = "Command-Engineering Bridge"
- })
-"dBv" = (
+"cYP" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 1;
@@ -101676,7 +89220,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"dBw" = (
+"cYQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -101690,35 +89234,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"dBx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (EAST)";
- icon_state = "neutralcorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dBy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/neutral/corner{
- tag = "icon-neutralcorner (EAST)";
- icon_state = "neutralcorner";
- dir = 4;
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/central)
-"dBz" = (
+"cYR" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -101731,13 +89247,13 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/central)
-"dBA" = (
+"cYS" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Docking-Medical Bridge"
})
-"dBB" = (
+"cYT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -101745,7 +89261,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"dBC" = (
+"cYU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 4;
@@ -101761,7 +89277,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"dBD" = (
+"cYV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
@@ -101774,7 +89290,7 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"dBE" = (
+"cYW" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine{
baseturf = /turf/open/floor/plating/asteroid/airless;
@@ -101783,22 +89299,13 @@
/area/construction/hallway{
name = "Service-Science Bridge"
})
-"dBF" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/engine{
- baseturf = /turf/open/floor/plating/asteroid/airless;
- name = "reinforced floor"
- },
-/area/construction/hallway{
- name = "Service-Science Bridge"
- })
-"dBG" = (
+"cYX" = (
/obj/effect/landmark/lightsout,
/turf/open/floor/engine,
/area/construction/hallway{
name = "Science-Docking Bridge"
})
-"dBH" = (
+"cYY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -101811,7 +89318,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dBI" = (
+"cYZ" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -101823,7 +89330,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dBJ" = (
+"cZa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -101853,7 +89360,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/fore)
-"dBK" = (
+"cZb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -101871,7 +89378,7 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dBL" = (
+"cZc" = (
/obj/effect/turf_decal/stripes/asteroid/line{
icon_state = "ast_warn";
dir = 8
@@ -101882,28 +89389,18 @@
/area/maintenance/fore{
name = "Fore Asteroid Maintenance"
})
-"dBM" = (
+"cZd" = (
/obj/structure/table,
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"dBN" = (
+"cZe" = (
/turf/open/floor/plasteel/floorgrime{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"dBO" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"dBP" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"dBQ" = (
+"cZf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -101913,22 +89410,7 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/port)
-"dBR" = (
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"dBS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/floorgrime{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/hallway/primary/port)
-"dBT" = (
+"cZg" = (
/obj/structure/cable/orange{
d1 = 4;
d2 = 8;
@@ -101938,19 +89420,19 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dBU" = (
+"cZh" = (
/obj/structure/table,
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/medical/medbay)
-"dBV" = (
+"cZi" = (
/obj/structure/displaycase/trophy,
/turf/open/floor/wood{
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/library)
-"dBW" = (
+"cZj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -101963,7 +89445,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dBX" = (
+"cZk" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating/astplate{
baseturf = /turf/open/floor/plating/asteroid/airless
@@ -101971,7 +89453,7 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dBY" = (
+"cZl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating{
@@ -101980,64 +89462,10 @@
/area/maintenance/maintcentral{
name = "Central Asteroid Maintenance"
})
-"dBZ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dCa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dCb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dCc" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dCd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/asteroid/airless
- },
-/area/maintenance/maintcentral{
- name = "Central Asteroid Maintenance"
- })
-"dCe" = (
+"cZm" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"dCf" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCg" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCh" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCi" = (
+"cZn" = (
/obj/machinery/door/airlock/titanium{
name = "mech bay external airlock"
},
@@ -102068,19 +89496,7 @@
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"dCj" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCk" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCl" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCm" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCn" = (
+"cZo" = (
/obj/structure/shuttle/engine/propulsion{
tag = "icon-propulsion (NORTH)";
icon_state = "propulsion";
@@ -102088,10 +89504,7 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
-"dCo" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCp" = (
+"cZp" = (
/obj/machinery/mech_bay_recharge_port{
tag = "icon-recharge_port";
icon_state = "recharge_port";
@@ -102103,7 +89516,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCq" = (
+"cZq" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -102113,38 +89526,21 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCr" = (
+"cZr" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCs" = (
+"cZs" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"dCt" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCu" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCv" = (
+"cZt" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/frame/machine,
/obj/item/stack/cable_coil,
@@ -102154,18 +89550,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCw" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCx" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"dCy" = (
+"cZu" = (
/obj/structure/shuttle/engine/heater{
tag = "icon-heater (NORTH)";
icon_state = "heater";
@@ -102174,10 +89559,7 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
-"dCz" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCA" = (
+"cZv" = (
/obj/structure/mecha_wreckage/ripley,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -102185,14 +89567,7 @@
},
/turf/open/floor/mech_bay_recharge_floor,
/area/shuttle/abandoned)
-"dCB" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCC" = (
+"cZw" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -102203,7 +89578,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCD" = (
+"cZx" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -102218,21 +89593,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"dCE" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCF" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCG" = (
+"cZy" = (
/obj/effect/spawner/lootdrop{
loot = list(/obj/mecha/working/ripley/mining = 1, /obj/structure/mecha_wreckage/ripley = 5);
lootdoubles = 0;
@@ -102240,25 +89601,7 @@
},
/turf/open/floor/mech_bay_recharge_floor,
/area/shuttle/abandoned)
-"dCH" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCI" = (
-/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/abandoned)
-"dCJ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCK" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCL" = (
+"cZz" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -102266,136 +89609,22 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCM" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCN" = (
-/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/yellow,
-/area/shuttle/abandoned)
-"dCO" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dCP" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCQ" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dCR" = (
+"cZA" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dCS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCT" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCU" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"dCV" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCW" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCX" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCY" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dCZ" = (
+"cZB" = (
/obj/machinery/door/airlock/titanium{
name = "mech bay"
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDa" = (
+"cZC" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"dDb" = (
-/obj/machinery/door/airlock/titanium{
- name = "mech bay"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dDc" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDd" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDe" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDf" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDg" = (
-/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (NORTH)";
- icon_state = "propulsion";
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"dDh" = (
-/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/abandoned)
-"dDi" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDj" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDk" = (
+"cZD" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102419,7 +89648,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDl" = (
+"cZE" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102436,7 +89665,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDm" = (
+"cZF" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102446,14 +89675,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDn" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDo" = (
+"cZG" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102468,7 +89690,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDp" = (
+"cZH" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102481,7 +89703,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDq" = (
+"cZI" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102499,28 +89721,10 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDr" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDs" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dDt" = (
-/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/abandoned)
-"dDu" = (
+"cZJ" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/abandoned)
-"dDv" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dDw" = (
+"cZK" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102535,7 +89739,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDx" = (
+"cZL" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102549,21 +89753,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDy" = (
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/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/yellow,
-/area/shuttle/abandoned)
-"dDz" = (
+"cZM" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102580,24 +89770,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDA" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDB" = (
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dDC" = (
+"cZN" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102615,7 +89788,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDD" = (
+"cZO" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102637,7 +89810,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDE" = (
+"cZP" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -102652,26 +89825,13 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dDF" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dDG" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dDH" = (
+"cZQ" = (
/obj/machinery/door/poddoor{
id = "cerewhiteleft"
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"dDI" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDJ" = (
+"cZR" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -102682,140 +89842,13 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"dDK" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDL" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDM" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDN" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDO" = (
-/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)
-"dDP" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDQ" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDR" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dDS" = (
-/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)
-"dDT" = (
+"cZS" = (
/obj/machinery/door/poddoor{
id = "cerewhiteright"
},
/turf/open/floor/plating,
/area/shuttle/abandoned)
-"dDU" = (
+"cZT" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/emergency,
/obj/item/weapon/crowbar,
@@ -102824,32 +89857,32 @@
},
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dDV" = (
+"cZU" = (
/obj/machinery/computer/aifixer,
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dDW" = (
+"cZV" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dDX" = (
+"cZW" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dDY" = (
+"cZX" = (
/obj/machinery/computer/card,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dDZ" = (
+"cZY" = (
/obj/machinery/computer/emergency_shuttle,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEa" = (
+"cZZ" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4;
@@ -102857,15 +89890,15 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEb" = (
+"daa" = (
/obj/structure/table,
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dEc" = (
+"dab" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dEd" = (
+"dac" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -102877,136 +89910,7 @@
},
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dEe" = (
-/obj/machinery/door/poddoor{
- id = "cerewhiteleft"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"dEf" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dEg" = (
-/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)
-"dEh" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dEi" = (
-/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)
-"dEj" = (
-/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)
-"dEk" = (
-/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)
-"dEl" = (
-/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)
-"dEm" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dEn" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dEo" = (
-/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)
-"dEp" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"dEq" = (
-/obj/machinery/door/poddoor{
- id = "cerewhiteright"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"dEr" = (
+"dad" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -103024,14 +89928,14 @@
baseturf = /turf/open/floor/plating/asteroid/airless
},
/area/hallway/primary/starboard)
-"dEs" = (
+"dae" = (
/obj/structure/table,
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dEt" = (
+"daf" = (
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dEu" = (
+"dag" = (
/obj/structure/chair/comfy/beige{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -103039,17 +89943,17 @@
},
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dEv" = (
+"dah" = (
/turf/open/floor/plasteel/darkpurple,
/area/shuttle/escape)
-"dEw" = (
+"dai" = (
/obj/machinery/computer/station_alert,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEx" = (
+"daj" = (
/obj/structure/chair/office/light{
tag = "icon-officechair_white (NORTH)";
icon_state = "officechair_white";
@@ -103057,15 +89961,7 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEy" = (
-/obj/structure/chair/office/light{
- tag = "icon-officechair_white (NORTH)";
- icon_state = "officechair_white";
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dEz" = (
+"dak" = (
/obj/machinery/computer/communications,
/obj/structure/window/reinforced{
dir = 4;
@@ -103073,10 +89969,10 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEA" = (
+"dal" = (
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dEB" = (
+"dam" = (
/obj/structure/chair/comfy/beige{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -103084,21 +89980,15 @@
},
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dEC" = (
+"dan" = (
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dED" = (
+"dao" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dEE" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dEF" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dEG" = (
+"dap" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -103117,21 +90007,7 @@
/obj/item/clothing/glasses/welding,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dEH" = (
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/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/yellow,
-/area/shuttle/abandoned)
-"dEI" = (
+"daq" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -103151,7 +90027,7 @@
/obj/machinery/light,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dEJ" = (
+"dar" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -103170,29 +90046,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/abandoned)
-"dEK" = (
-/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)
-"dEL" = (
-/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)
-"dEM" = (
+"das" = (
/obj/effect/turf_decal/delivery{
dir = 1
},
@@ -103207,66 +90061,26 @@
/obj/machinery/light,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dEN" = (
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- name = "spare equipment crate";
- opened = 1
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dEO" = (
-/obj/effect/turf_decal/delivery{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/abandoned)
-"dEP" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dEQ" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/abandoned)
-"dER" = (
+"dat" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dES" = (
-/turf/open/floor/plasteel/darkblue,
-/area/shuttle/escape)
-"dET" = (
-/turf/open/floor/plasteel/darkblue,
-/area/shuttle/escape)
-"dEU" = (
+"dau" = (
/turf/open/floor/plasteel/darkpurple/side{
dir = 1
},
/area/shuttle/escape)
-"dEV" = (
+"dav" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEW" = (
+"daw" = (
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEX" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dEY" = (
+"dax" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -103274,27 +90088,18 @@
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dEZ" = (
+"day" = (
/turf/open/floor/plasteel/darkyellow/side{
tag = "icon-darkyellow (NORTH)";
icon_state = "darkyellow";
dir = 1
},
/area/shuttle/escape)
-"dFa" = (
-/turf/open/floor/plasteel/darkred,
-/area/shuttle/escape)
-"dFb" = (
-/turf/open/floor/plasteel/darkred,
-/area/shuttle/escape)
-"dFc" = (
+"daz" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dFd" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFe" = (
+"daA" = (
/obj/structure/ore_box,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -103302,13 +90107,7 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dFf" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFg" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFh" = (
+"daB" = (
/obj/machinery/door/airlock/titanium{
name = "cockpit"
},
@@ -103318,28 +90117,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dFi" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"dFj" = (
-/obj/machinery/door/airlock/titanium{
- name = "cockpit"
- },
-/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)
-"dFk" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFl" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFm" = (
+"daC" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -103351,70 +90129,40 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/abandoned)
-"dFn" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFo" = (
+"daD" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dFp" = (
+"daE" = (
/obj/structure/chair/comfy/beige{
dir = 8
},
/turf/open/floor/plasteel/darkblue,
/area/shuttle/escape)
-"dFq" = (
+"daF" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
dir = 1
},
/area/shuttle/escape)
-"dFr" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFs" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFt" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFu" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFv" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFw" = (
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFx" = (
+"daG" = (
/turf/open/floor/plasteel/darkred/side{
tag = "icon-darkred (NORTH)";
icon_state = "darkred";
dir = 1
},
/area/shuttle/escape)
-"dFy" = (
+"daH" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dFz" = (
+"daI" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dFA" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFB" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFC" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFD" = (
+"daJ" = (
/obj/structure/table,
/obj/item/device/gps{
gpstag = "NTCONST1";
@@ -103430,7 +90178,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dFE" = (
+"daK" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -103445,7 +90193,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dFF" = (
+"daL" = (
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
name = "dust"
@@ -103456,14 +90204,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dFG" = (
+"daM" = (
/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)
-"dFH" = (
+"daN" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/weapon/storage/firstaid/regular,
@@ -103476,31 +90224,18 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dFI" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFJ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFK" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFL" = (
+"daO" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dFM" = (
+"daP" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -30
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dFN" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dFO" = (
+"daQ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -103515,21 +90250,12 @@
dir = 1
},
/area/shuttle/escape)
-"dFP" = (
+"daR" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/darkred,
/area/shuttle/escape)
-"dFQ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFR" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFT" = (
+"daS" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -103537,74 +90263,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dFU" = (
-/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)
-"dFV" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dFW" = (
-/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)
-"dFX" = (
-/obj/structure/table,
-/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)
-"dFY" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dFZ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGa" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGb" = (
+"daT" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Cockpit";
req_access_txt = "19"
},
/turf/open/floor/plasteel/black,
/area/shuttle/escape)
-"dGc" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cockpit";
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/escape)
-"dGd" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGe" = (
+"daU" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -103612,29 +90278,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dGf" = (
-/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)
-"dGg" = (
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/obj/effect/decal/cleanable/dirt{
- desc = "A thin layer of dust coating the floor.";
- name = "dust"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/abandoned)
-"dGh" = (
+"daV" = (
/obj/structure/chair/comfy/black,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -103650,29 +90294,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dGi" = (
-/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)
-"dGj" = (
-/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)
-"dGk" = (
+"daW" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -103680,10 +90302,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dGl" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGm" = (
+"daX" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred (NORTHEAST)";
@@ -103692,21 +90311,21 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"dGn" = (
+"daY" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (WEST)";
icon_state = "neutral";
dir = 8
},
/area/shuttle/escape)
-"dGo" = (
+"daZ" = (
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (EAST)";
icon_state = "neutral";
dir = 4
},
/area/shuttle/escape)
-"dGp" = (
+"dba" = (
/obj/machinery/mech_bay_recharge_port{
tag = "icon-recharge_port";
icon_state = "recharge_port";
@@ -103714,38 +90333,10 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dGq" = (
+"dbb" = (
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dGr" = (
-/obj/machinery/mech_bay_recharge_port{
- tag = "icon-recharge_port";
- icon_state = "recharge_port";
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dGs" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dGt" = (
-/obj/machinery/mech_bay_recharge_port{
- tag = "icon-recharge_port";
- icon_state = "recharge_port";
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dGu" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGv" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGw" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGx" = (
+"dbc" = (
/obj/structure/table,
/obj/item/weapon/phone{
pixel_x = -3;
@@ -103757,7 +90348,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dGy" = (
+"dbd" = (
/obj/machinery/computer/shuttle/white_ship,
/obj/effect/decal/cleanable/dirt{
desc = "A thin layer of dust coating the floor.";
@@ -103765,7 +90356,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dGz" = (
+"dbe" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -1;
@@ -103777,22 +90368,13 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/abandoned)
-"dGA" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGB" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGC" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGD" = (
+"dbf" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"dGE" = (
+"dbg" = (
/obj/structure/chair{
dir = 8
},
@@ -103803,7 +90385,7 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"dGF" = (
+"dbh" = (
/obj/machinery/button/flasher{
id = "shuttle_flasher";
pixel_x = -24;
@@ -103817,70 +90399,23 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"dGG" = (
+"dbi" = (
/turf/open/floor/mineral/plastitanium/brig{
dir = 4;
floor_tile = /obj/item/stack/tile/plasteel;
icon_state = "darkred"
},
/area/shuttle/escape)
-"dGH" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"dGI" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dGJ" = (
+"dbj" = (
/turf/open/floor/mech_bay_recharge_floor,
/area/shuttle/escape)
-"dGK" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dGL" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/shuttle/escape)
-"dGM" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dGN" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/shuttle/escape)
-"dGO" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGP" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"dGQ" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"dGR" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"dGS" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"dGT" = (
+"dbk" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"dGU" = (
+"dbl" = (
/obj/machinery/door/airlock/glass_security{
name = "Emergency Shuttle Brig";
req_access_txt = "2"
@@ -103889,39 +90424,11 @@
icon_state = "darkredfull"
},
/area/shuttle/escape)
-"dGV" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"dGW" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dGX" = (
+"dbm" = (
/obj/machinery/computer/mech_bay_power_console,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dGY" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dGZ" = (
-/obj/machinery/computer/mech_bay_power_console,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHa" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHb" = (
-/obj/machinery/computer/mech_bay_power_console,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHc" = (
+"dbn" = (
/turf/open/floor/mineral/plastitanium/brig{
tag = "icon-darkred";
icon_state = "darkred";
@@ -103929,46 +90436,7 @@
floor_tile = /obj/item/stack/tile/plasteel
},
/area/shuttle/escape)
-"dHd" = (
-/turf/open/floor/mineral/plastitanium/brig{
- tag = "icon-darkred";
- icon_state = "darkred";
- dir = 2;
- floor_tile = /obj/item/stack/tile/plasteel
- },
-/area/shuttle/escape)
-"dHe" = (
-/turf/open/floor/mineral/plastitanium/brig{
- tag = "icon-darkred";
- icon_state = "darkred";
- dir = 2;
- floor_tile = /obj/item/stack/tile/plasteel
- },
-/area/shuttle/escape)
-"dHf" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Emergency Shuttle Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig{
- icon_state = "darkredfull"
- },
-/area/shuttle/escape)
-"dHg" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"dHh" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dHi" = (
+"dbo" = (
/obj/effect/turf_decal/stripes/line{
tag = "icon-warningline (NORTH)";
icon_state = "warningline";
@@ -103987,7 +90455,7 @@
dir = 8
},
/area/shuttle/escape)
-"dHj" = (
+"dbp" = (
/obj/effect/turf_decal/stripes/line{
tag = "icon-warningline (NORTH)";
icon_state = "warningline";
@@ -103995,23 +90463,7 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dHk" = (
-/obj/effect/turf_decal/stripes/line{
- tag = "icon-warningline (NORTH)";
- icon_state = "warningline";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHl" = (
-/obj/effect/turf_decal/stripes/line{
- tag = "icon-warningline (NORTH)";
- icon_state = "warningline";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHm" = (
+"dbq" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/stripes/line{
tag = "icon-warningline (NORTH)";
@@ -104028,7 +90480,7 @@
dir = 4
},
/area/shuttle/escape)
-"dHn" = (
+"dbr" = (
/obj/structure/chair{
dir = 1
},
@@ -104038,44 +90490,24 @@
icon_state = "darkred"
},
/area/shuttle/escape)
-"dHo" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"dHp" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dHq" = (
+"dbs" = (
/obj/machinery/door/airlock/shuttle{
name = "Emergency Shuttle Cargo"
},
/turf/open/floor/plasteel/darkyellow,
/area/shuttle/escape)
-"dHr" = (
+"dbt" = (
/turf/open/floor/plasteel/brown{
tag = "icon-brown (WEST)";
icon_state = "brown";
dir = 8
},
/area/shuttle/escape)
-"dHs" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHt" = (
+"dbu" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dHu" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHv" = (
+"dbv" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet/crate,
/turf/open/floor/plasteel/brown{
@@ -104084,67 +90516,11 @@
dir = 4
},
/area/shuttle/escape)
-"dHw" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"dHx" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dHy" = (
-/obj/machinery/door/airlock/shuttle{
- name = "Emergency Shuttle Cargo"
- },
-/turf/open/floor/plasteel/darkyellow,
-/area/shuttle/escape)
-"dHz" = (
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (WEST)";
- icon_state = "brown";
- dir = 8
- },
-/area/shuttle/escape)
-"dHA" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHB" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHC" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHD" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/brown{
- tag = "icon-brown (EAST)";
- icon_state = "brown";
- dir = 4
- },
-/area/shuttle/escape)
-"dHE" = (
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dHF" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dHG" = (
+"dbw" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dHH" = (
+"dbx" = (
/obj/structure/table,
/obj/item/weapon/storage/box/cups,
/obj/item/device/radio/intercom{
@@ -104155,60 +90531,43 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dHI" = (
+"dby" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dHJ" = (
+"dbz" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dHK" = (
+"dbA" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets,
/obj/item/weapon/storage/box/donkpockets,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dHL" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (WEST)";
- icon_state = "neutral";
- dir = 8
- },
-/area/shuttle/escape)
-"dHM" = (
+"dbB" = (
/obj/structure/sign/nanotrasen{
pixel_x = -32;
pixel_y = 32
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dHN" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dHO" = (
+"dbC" = (
/turf/open/floor/plasteel/brown{
tag = "icon-brown (SOUTHWEST)";
icon_state = "brown";
dir = 10
},
/area/shuttle/escape)
-"dHP" = (
+"dbD" = (
/turf/open/floor/plasteel/brown,
/area/shuttle/escape)
-"dHQ" = (
+"dbE" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/brown,
/area/shuttle/escape)
-"dHR" = (
-/turf/open/floor/plasteel/brown,
-/area/shuttle/escape)
-"dHS" = (
+"dbF" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet,
/turf/open/floor/plasteel/brown{
@@ -104217,27 +90576,24 @@
dir = 6
},
/area/shuttle/escape)
-"dHT" = (
+"dbG" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dHU" = (
+"dbH" = (
/turf/open/floor/plasteel/neutral/corner{
tag = "icon-neutralcorner (EAST)";
icon_state = "neutralcorner";
dir = 4
},
/area/shuttle/escape)
-"dHV" = (
+"dbI" = (
/turf/open/floor/plasteel/neutral/side,
/area/shuttle/escape)
-"dHW" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/shuttle/escape)
-"dHX" = (
+"dbJ" = (
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
@@ -104246,7 +90602,7 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dHY" = (
+"dbK" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -104257,14 +90613,7 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dHZ" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIa" = (
+"dbL" = (
/obj/structure/chair{
dir = 8
},
@@ -104273,7 +90622,7 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dIb" = (
+"dbM" = (
/obj/structure/chair{
dir = 4
},
@@ -104282,463 +90631,20 @@
},
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dIc" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dId" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIe" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIf" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIg" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIh" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIi" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIj" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIk" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIl" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIm" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIn" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIo" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIp" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIq" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIr" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIs" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIt" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dIu" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIv" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIw" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIx" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIy" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIz" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIA" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIB" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIC" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dID" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIE" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIF" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIG" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIH" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dII" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIJ" = (
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (EAST)";
- icon_state = "neutral";
- dir = 4
- },
-/area/shuttle/escape)
-"dIK" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIL" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIM" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIN" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIO" = (
+"dbN" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -28
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dIP" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIQ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIR" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIS" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIT" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIU" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIV" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIW" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIX" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIY" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dIZ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJa" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJb" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJc" = (
+"dbO" = (
/obj/structure/sign/bluecross_2{
pixel_x = 32;
pixel_y = -32
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dJd" = (
+"dbP" = (
/obj/machinery/light,
/turf/open/floor/plasteel/neutral/side{
tag = "icon-neutral (NORTH)";
@@ -104746,7 +90652,7 @@
dir = 1
},
/area/shuttle/escape)
-"dJe" = (
+"dbQ" = (
/obj/machinery/light{
dir = 4
},
@@ -104756,13 +90662,13 @@
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dJf" = (
+"dbR" = (
/obj/machinery/door/airlock/glass_medical{
name = "Emergency Shuttle Medbay"
},
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dJg" = (
+"dbS" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -104773,31 +90679,13 @@
dir = 8
},
/area/shuttle/escape)
-"dJh" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJi" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJj" = (
+"dbT" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel,
/area/shuttle/escape)
-"dJk" = (
+"dbU" = (
/mob/living/simple_animal/bot/medbot{
name = "Speedy* Recovery"
},
@@ -104807,14 +90695,14 @@
dir = 9
},
/area/shuttle/escape)
-"dJl" = (
+"dbV" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
icon_state = "whiteblue";
dir = 1
},
/area/shuttle/escape)
-"dJm" = (
+"dbW" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/whiteblue/side{
@@ -104823,7 +90711,7 @@
dir = 1
},
/area/shuttle/escape)
-"dJn" = (
+"dbX" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -104831,7 +90719,7 @@
dir = 1
},
/area/shuttle/escape)
-"dJo" = (
+"dbY" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
@@ -104839,7 +90727,7 @@
dir = 1
},
/area/shuttle/escape)
-"dJp" = (
+"dbZ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
/obj/item/weapon/wrench,
@@ -104849,45 +90737,21 @@
dir = 5
},
/area/shuttle/escape)
-"dJq" = (
+"dca" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dJr" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJs" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJt" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Emergency Shuttle Medbay"
- },
-/turf/open/floor/plasteel/whiteblue,
-/area/shuttle/escape)
-"dJu" = (
+"dcb" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (WEST)";
icon_state = "whiteblue";
dir = 8
},
/area/shuttle/escape)
-"dJv" = (
+"dcc" = (
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dJw" = (
+"dcd" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -104895,11 +90759,11 @@
},
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dJx" = (
+"dce" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dJy" = (
+"dcf" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -104907,14 +90771,14 @@
},
/turf/open/floor/plasteel/white,
/area/shuttle/escape)
-"dJz" = (
+"dcg" = (
/turf/open/floor/plasteel/whiteblue/corner{
tag = "icon-whitebluecorner (EAST)";
icon_state = "whitebluecorner";
dir = 4
},
/area/shuttle/escape)
-"dJA" = (
+"dch" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
@@ -104928,55 +90792,24 @@
dir = 5
},
/area/shuttle/escape)
-"dJB" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJC" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJD" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJE" = (
+"dci" = (
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (SOUTHWEST)";
icon_state = "whiteblue";
dir = 10
},
/area/shuttle/escape)
-"dJF" = (
+"dcj" = (
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/escape)
-"dJG" = (
-/turf/open/floor/plasteel/whiteblue/side,
-/area/shuttle/escape)
-"dJH" = (
+"dck" = (
/turf/open/floor/plasteel/whiteblue/corner{
tag = "icon-whitebluecorner (WEST)";
icon_state = "whitebluecorner";
dir = 8
},
/area/shuttle/escape)
-"dJI" = (
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
-"dJJ" = (
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
-"dJK" = (
+"dcl" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -104988,39 +90821,21 @@
dir = 4
},
/area/shuttle/escape)
-"dJL" = (
+"dcm" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/neutral,
/area/shuttle/escape)
-"dJM" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJN" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJO" = (
+"dcn" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
},
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dJP" = (
+"dco" = (
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dJQ" = (
+"dcp" = (
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
@@ -105032,20 +90847,7 @@
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dJR" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/shuttle/escape)
-"dJS" = (
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
-"dJT" = (
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
-"dJU" = (
+"dcq" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
@@ -105056,29 +90858,7 @@
dir = 4
},
/area/shuttle/escape)
-"dJV" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJW" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJX" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dJY" = (
+"dcr" = (
/obj/structure/closet/crate/freezer,
/obj/item/weapon/reagent_containers/blood/empty,
/obj/item/weapon/reagent_containers/blood/empty,
@@ -105102,10 +90882,7 @@
/obj/item/weapon/reagent_containers/blood/random,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dJZ" = (
-/turf/open/floor/plasteel/whiteblue,
-/area/shuttle/escape)
-"dKa" = (
+"dcs" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4;
@@ -105123,20 +90900,7 @@
/obj/item/weapon/retractor,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dKb" = (
-/turf/open/floor/plasteel/whiteblue/side{
- tag = "icon-whiteblue (WEST)";
- icon_state = "whiteblue";
- dir = 8
- },
-/area/shuttle/escape)
-"dKc" = (
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
-"dKd" = (
-/turf/open/floor/plasteel/white,
-/area/shuttle/escape)
-"dKe" = (
+"dct" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire,
/obj/item/weapon/crowbar,
@@ -105146,37 +90910,15 @@
dir = 4
},
/area/shuttle/escape)
-"dKf" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dKg" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dKh" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dKi" = (
+"dcu" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dKj" = (
+"dcv" = (
/obj/structure/table/optable,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dKk" = (
+"dcw" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4;
@@ -105189,7 +90931,7 @@
/obj/item/weapon/razor,
/turf/open/floor/plasteel/whiteblue,
/area/shuttle/escape)
-"dKl" = (
+"dcx" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2,
/obj/item/weapon/storage/firstaid/toxin,
@@ -105199,14 +90941,14 @@
dir = 10
},
/area/shuttle/escape)
-"dKm" = (
+"dcy" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 1
},
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/escape)
-"dKn" = (
+"dcz" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -105214,7 +90956,7 @@
},
/turf/open/floor/plasteel/whiteblue/side,
/area/shuttle/escape)
-"dKo" = (
+"dcA" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
@@ -105225,19 +90967,7 @@
dir = 6
},
/area/shuttle/escape)
-"dKp" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/neutral,
-/area/shuttle/escape)
-"dKq" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/neutral/side{
- tag = "icon-neutral (NORTH)";
- icon_state = "neutral";
- dir = 1
- },
-/area/shuttle/escape)
-"dKr" = (
+"dcB" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -30
@@ -105248,47 +90978,23 @@
dir = 1
},
/area/shuttle/escape)
-"dKs" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/shuttle/escape)
-"dKt" = (
+"dcC" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engine Room";
req_one_access_txt = "10;24"
},
/turf/open/floor/plasteel/yellow,
/area/shuttle/escape)
-"dKu" = (
+"dcD" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dKv" = (
+"dcE" = (
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dKw" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKx" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKy" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKz" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKA" = (
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKB" = (
+"dcF" = (
/obj/structure/toilet{
icon_state = "toilet00";
dir = 8
@@ -105298,7 +91004,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dKC" = (
+"dcG" = (
/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (NORTHWEST)";
@@ -105306,21 +91012,14 @@
dir = 9
},
/area/shuttle/escape)
-"dKD" = (
+"dcH" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (NORTH)";
icon_state = "yellow";
dir = 1
},
/area/shuttle/escape)
-"dKE" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/shuttle/escape)
-"dKF" = (
+"dcI" = (
/obj/machinery/light{
dir = 1
},
@@ -105331,28 +91030,14 @@
dir = 1
},
/area/shuttle/escape)
-"dKG" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/shuttle/escape)
-"dKH" = (
-/turf/open/floor/plasteel/yellow/side{
- tag = "icon-yellow (NORTH)";
- icon_state = "yellow";
- dir = 1
- },
-/area/shuttle/escape)
-"dKI" = (
+"dcJ" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (NORTHEAST)";
icon_state = "yellow";
dir = 5
},
/area/shuttle/escape)
-"dKJ" = (
+"dcK" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -105364,22 +91049,13 @@
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dKK" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKL" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKM" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKN" = (
+"dcL" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dKO" = (
+"dcM" = (
/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -105387,21 +91063,21 @@
dir = 10
},
/area/shuttle/escape)
-"dKP" = (
+"dcN" = (
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (WEST)";
icon_state = "yellowcorner";
dir = 8
},
/area/shuttle/escape)
-"dKQ" = (
+"dcO" = (
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (EAST)";
icon_state = "yellowcorner";
dir = 4
},
/area/shuttle/escape)
-"dKR" = (
+"dcP" = (
/obj/structure/table,
/obj/item/weapon/storage/box/metalfoam,
/turf/open/floor/plasteel/yellow/side{
@@ -105410,7 +91086,7 @@
dir = 1
},
/area/shuttle/escape)
-"dKS" = (
+"dcQ" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
/turf/open/floor/plasteel/yellow/side{
@@ -105419,7 +91095,7 @@
dir = 1
},
/area/shuttle/escape)
-"dKT" = (
+"dcR" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plasteel/yellow/side{
@@ -105428,53 +91104,20 @@
dir = 5
},
/area/shuttle/escape)
-"dKU" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKV" = (
+"dcS" = (
/obj/structure/urinal{
pixel_y = -32
},
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dKW" = (
-/obj/structure/urinal{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKX" = (
-/obj/structure/urinal{
- pixel_y = -32
- },
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKY" = (
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dKZ" = (
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/freezer,
-/area/shuttle/escape)
-"dLa" = (
+"dcT" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/freezer,
/area/shuttle/escape)
-"dLb" = (
+"dcU" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (SOUTHWEST)";
@@ -105482,14 +91125,7 @@
dir = 10
},
/area/shuttle/escape)
-"dLc" = (
-/turf/open/floor/plasteel/yellow/corner{
- tag = "icon-yellowcorner (WEST)";
- icon_state = "yellowcorner";
- dir = 8
- },
-/area/shuttle/escape)
-"dLd" = (
+"dcV" = (
/obj/structure/sign/electricshock{
pixel_x = 32
},
@@ -105499,7 +91135,7 @@
dir = 4
},
/area/shuttle/escape)
-"dLe" = (
+"dcW" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel/yellow/side{
@@ -105508,20 +91144,20 @@
dir = 10
},
/area/shuttle/escape)
-"dLf" = (
+"dcX" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical,
/obj/item/weapon/storage/toolbox/electrical,
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dLg" = (
+"dcY" = (
/obj/structure/table,
/obj/structure/sign/enginesafety{
pixel_y = -32
},
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dLh" = (
+"dcZ" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_x = 0;
@@ -105529,19 +91165,15 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dLi" = (
+"dda" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dLj" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow/side,
-/area/shuttle/escape)
-"dLk" = (
+"ddb" = (
/obj/machinery/light,
/turf/open/floor/plasteel/yellow/side,
/area/shuttle/escape)
-"dLl" = (
+"ddc" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -30
@@ -105552,17 +91184,14 @@
dir = 6
},
/area/shuttle/escape)
-"dLm" = (
+"ddd" = (
/obj/machinery/door/airlock/maintenance_hatch,
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLn" = (
+"dde" = (
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLo" = (
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"dLp" = (
+"ddf" = (
/obj/machinery/light/small{
tag = "icon-bulb1 (NORTH)";
icon_state = "bulb1";
@@ -105570,7 +91199,7 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLq" = (
+"ddg" = (
/obj/machinery/power/terminal{
tag = "icon-term (EAST)";
icon_state = "term";
@@ -105578,38 +91207,747 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLr" = (
+"ddh" = (
/obj/machinery/power/smes/engineering,
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLs" = (
+"ddi" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLt" = (
+"ddj" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLu" = (
+"ddk" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/shuttle/escape)
-"dLv" = (
-/obj/machinery/power/terminal{
- tag = "icon-term (EAST)";
- icon_state = "term";
- dir = 4
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"dLw" = (
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"dLx" = (
+"ddl" = (
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
/area/space)
+"ddm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "Service-Engineering Bridge"
+ })
+"ddn" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddo" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddp" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddq" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddr" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dds" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/space,
+/area/space)
+"ddt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddx" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddy" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddz" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/camera{
+ c_tag = "Hydroponics Bee Reserve North";
+ dir = 9;
+ icon_state = "camera";
+ network = list("SS13")
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddA" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddB" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddC" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddD" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddE" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddF" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddG" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"ddI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddK" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ tag = "icon-darkgreen (WEST)";
+ icon_state = "darkgreen";
+ dir = 8;
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddN" = (
+/obj/effect/landmark/lightsout,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless;
+ dir = 4
+ },
+/area/hydroponics)
+"ddR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddS" = (
+/obj/machinery/door/airlock/glass{
+ name = "Bee Reserve";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddU" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddV" = (
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddW" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j1s";
+ name = "disposal pipe - Hydroponics";
+ sortType = 21
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"ddX" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ddZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dea" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deb" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dec" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"ded" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dee" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"def" = (
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deg" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"dei" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"dej" = (
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dek" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"del" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dem" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"den" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dep" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deq" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"der" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"des" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/darkgreen/side{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"det" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deu" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dev" = (
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dew" = (
+/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
+ },
+/turf/open/floor/plasteel/hydrofloor{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dex" = (
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dey" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"dez" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deC" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deD" = (
+/obj/machinery/vending/hydroseeds,
+/obj/machinery/camera{
+ c_tag = "Hydroponics South 1";
+ dir = 1;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deE" = (
+/obj/machinery/vending/hydronutrients,
+/obj/machinery/light,
+/turf/open/floor/plasteel/black{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deF" = (
+/obj/structure/closet{
+ name = "Bee-keeping suits"
+ },
+/obj/item/clothing/head/beekeeper_head,
+/obj/item/clothing/head/beekeeper_head,
+/obj/item/clothing/suit/beekeeper_suit,
+/obj/item/clothing/suit/beekeeper_suit,
+/obj/item/weapon/melee/flyswatter,
+/obj/item/weapon/melee/flyswatter,
+/obj/machinery/camera{
+ c_tag = "Hydroponics South 2";
+ dir = 1;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
+ },
+/turf/open/floor/plasteel/darkgreen{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deG" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Hydroponics APC";
+ pixel_x = -23;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/asteroid/end{
+ tag = "icon-ast_warn_end (EAST)";
+ icon_state = "ast_warn_end";
+ dir = 4
+ },
+/obj/structure/cable/orange,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/hydroponics)
+"deI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
+"deJ" = (
+/obj/item/device/assembly/mousetrap/armed,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/astplate{
+ baseturf = /turf/open/floor/plating/asteroid/airless
+ },
+/area/maintenance/port{
+ name = "Port Asteroid Maintenance"
+ })
(1,1,1) = {"
aaa
@@ -109757,7 +96095,7 @@ aai
aai
aai
aai
-aer
+aeh
aai
aai
aai
@@ -110010,15 +96348,15 @@ aai
aai
aai
aai
+acT
+adj
+acT
acU
-adm
-acU
-acV
-aes
-aeP
-afg
-afk
-afH
+aei
+aeE
+aeS
+aeW
+aft
aaa
aaa
aaa
@@ -110267,15 +96605,15 @@ acd
acd
abT
aai
-acV
-acV
-acV
-acV
-aet
-acV
-afh
-afk
-afI
+acU
+acU
+acU
+acU
+aej
+acU
+aeT
+aeW
+afu
aaa
aaa
aaa
@@ -110524,15 +96862,15 @@ aan
aan
aan
aai
-acW
acV
-acV
-acV
-aeu
-aeQ
-afi
-afk
-afJ
+acU
+acU
+acU
+aek
+aeF
+aeU
+aeW
+afv
aaa
aaa
aaa
@@ -110655,13 +96993,13 @@ aaa
aaa
aaa
aaa
-aZm
-aZm
-cdT
-cdT
-cdT
-aZm
-aZm
+aXL
+aXL
+caR
+caR
+caR
+aXL
+aXL
aaa
aaa
aaa
@@ -110781,15 +97119,15 @@ aan
aan
aan
aai
-acX
-acV
-acV
-acV
-aev
+acW
+acU
+acU
+acU
+ael
aai
aai
aai
-agl
+afX
aaa
aaa
aaa
@@ -110830,12 +97168,12 @@ aaa
aad
aab
aab
-dnS
-dnZ
-dnN
-dnS
-dou
-dnN
+cUo
+cUr
+cUm
+cUo
+cUw
+cUm
aac
aac
aac
@@ -110912,13 +97250,13 @@ aaa
aaa
aaa
aaa
-aZm
-bdM
-beC
-bUi
-ceF
-cfc
-aZm
+aXL
+bcj
+bcX
+bRl
+cbD
+cca
+aXL
aaa
aaa
aaa
@@ -111038,13 +97376,13 @@ acq
aan
aan
aai
-acY
-acV
-acV
-acV
-aew
+acX
+acU
+acU
+acU
+aem
aai
-afj
+aeV
aaa
aaa
aaa
@@ -111086,14 +97424,14 @@ aaa
aaa
aab
aad
-dnM
-dnS
-doa
-dnP
-doa
-dov
-dnN
-dnN
+cUl
+cUo
+cUs
+cUn
+cUs
+cUx
+cUm
+cUm
aac
aac
aad
@@ -111167,17 +97505,17 @@ aaa
aaa
aaa
aaa
-aZm
-aZm
-aZm
-cdC
-bVi
-bVi
-ceG
-beC
-aZm
-aZm
-aZm
+aXL
+aXL
+aXL
+caA
+bSl
+bSl
+cbE
+bcX
+aXL
+aXL
+aXL
aaa
aaa
aaa
@@ -111228,13 +97566,13 @@ aaa
aaa
aaa
aaa
-cGR
-cGR
-cGR
-cGR
-cGR
-cGR
-cGR
+cCJ
+cCJ
+cCJ
+cCJ
+cCJ
+cCJ
+cCJ
aaa
aaa
aaa
@@ -111293,12 +97631,12 @@ aai
aai
aai
acE
-acM
+acL
aai
aai
-adn
-adC
-adW
+adk
+adw
+adM
aai
aai
aai
@@ -111343,14 +97681,14 @@ aaa
aad
aad
aad
-dnN
-dnS
-dnZ
-dnV
-dop
-doa
-doD
-dnS
+cUm
+cUo
+cUr
+cUp
+cUu
+cUs
+cUB
+cUo
aac
aac
aad
@@ -111369,7 +97707,7 @@ aba
abr
abr
abV
-bat
+aYS
aaa
aaa
aaa
@@ -111424,17 +97762,17 @@ aaa
aaa
aaa
aaa
-aYO
-bpL
-cdk
-cdD
-cdU
-cel
-ceH
-cfd
-cfr
-bpL
-cfL
+aXn
+bnM
+cai
+caB
+caS
+cbj
+cbF
+ccb
+ccp
+bnM
+ccJ
aaa
aaa
aaa
@@ -111485,14 +97823,14 @@ aaa
aaa
aaa
aaa
-cGS
-cHh
-cHp
-cHG
-cHU
-cIi
-cHq
-cGR
+cCK
+cCY
+cDg
+cDx
+cDL
+cDZ
+cDh
+cCJ
aaa
aaa
aaa
@@ -111551,15 +97889,15 @@ aan
acr
aan
aan
-acQ
+acP
aan
aan
aan
aan
aaB
-aeR
-afk
-afH
+aeG
+aeW
+aft
aaa
aaa
aaa
@@ -111600,14 +97938,14 @@ aac
aac
aad
aad
-dnM
-dnV
-dnP
-doj
-dnV
-dox
-doE
-dnS
+cUl
+cUp
+cUn
+cUt
+cUp
+cUy
+cUC
+cUo
aac
aad
aad
@@ -111681,17 +98019,17 @@ aaa
aaa
aaa
aaa
-aZm
-aYX
-cdl
-cdE
-cdV
-cem
-ceI
-cfe
-aZm
-aZm
-aZm
+aXL
+aXw
+caj
+caC
+caT
+cbk
+cbG
+ccc
+aXL
+aXL
+aXL
aaa
aaa
aaa
@@ -111720,14 +98058,14 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -111742,14 +98080,14 @@ aaa
aaa
aaa
aaa
-cGR
-cGR
-cHq
-cHH
-cHV
-cIj
-cIi
-cGR
+cCJ
+cCJ
+cDh
+cDy
+cDM
+cEa
+cDZ
+cCJ
aaa
aaa
aaa
@@ -111814,9 +98152,9 @@ aan
aan
aan
aan
-aeS
-afk
-afI
+aeH
+aeW
+afu
aaa
aaa
aaa
@@ -111857,14 +98195,14 @@ aac
aac
aad
aad
-dnP
-dnV
-dnV
-dnP
-doa
-doy
-doF
-dnP
+cUn
+cUp
+cUp
+cUn
+cUs
+cUz
+cUD
+cUn
aac
aad
aab
@@ -111938,17 +98276,17 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-cdl
-cdF
-cdW
-cen
-ceJ
-cff
-aYX
-aYP
-aYP
+aXo
+aXo
+caj
+caD
+caU
+cbl
+cbH
+ccd
+aXw
+aXo
+aXo
aaa
aaa
aaa
@@ -111977,14 +98315,14 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -112001,13 +98339,13 @@ aaa
aaa
abC
aaa
-cGR
-cHI
-cHW
-cIk
-cIB
-cGR
-cGR
+cCJ
+cDz
+cDN
+cEb
+cEs
+cCJ
+cCJ
aaa
aaa
aaa
@@ -112071,9 +98409,9 @@ acG
aan
aan
aaB
-aeR
-afk
-afJ
+aeG
+aeW
+afv
aaa
aaa
aaa
@@ -112114,14 +98452,14 @@ aaa
aad
aac
aac
-dnN
-dnX
-dnV
-dnV
-dos
-doz
-doG
-dnN
+cUm
+cUq
+cUp
+cUp
+cUv
+cUA
+cUE
+cUm
aac
aad
aab
@@ -112193,19 +98531,19 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYP
-cdl
-cdG
-cdX
-ceo
-cdF
-cfg
-aYX
-aYP
-aYP
+aXo
+aXo
+aXo
+aXo
+caj
+caE
+caV
+cbm
+caD
+cce
+aXw
+aXo
+aXo
aaa
aaa
aaa
@@ -112234,14 +98572,14 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -112253,18 +98591,18 @@ aaa
aaa
aaa
aaa
-cgN
-cgN
+cdI
+cdI
aaa
abC
aaa
-cGR
-cGR
-cHX
-cIl
-cIj
-cIJ
-cGR
+cCJ
+cCJ
+cDO
+cEc
+cEa
+cEA
+cCJ
aaa
aaa
aaa
@@ -112325,8 +98663,8 @@ acr
aai
aai
aai
-adD
-adX
+adx
+adN
aai
aai
aai
@@ -112371,14 +98709,14 @@ aaa
aad
aac
aac
-dnN
-dnN
-dnM
-dnS
-dnS
-dnM
-dnN
-dnS
+cUm
+cUm
+cUl
+cUo
+cUo
+cUl
+cUm
+cUo
aad
aad
aab
@@ -112450,24 +98788,24 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aZn
-cdm
-aZm
-baz
-cep
-aYX
-aYX
-aYX
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
+aXo
+aXo
+aXo
+aXM
+cak
+aXL
+aYY
+cbn
+aXw
+aXw
+aXw
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
aaa
aaa
aaa
@@ -112491,14 +98829,14 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -112507,21 +98845,21 @@ aaa
aaa
aaa
aaa
-cgS
-cgS
-cgS
-cgN
-cgN
-cgN
+cdN
+cdN
+cdN
+cdI
+cdI
+cdI
abC
aaa
aaa
-cGR
-cHq
-cIm
-cHq
-cIK
-cGR
+cCJ
+cDh
+cEd
+cDh
+cEB
+cCJ
aaa
aaa
aaa
@@ -112580,12 +98918,12 @@ aan
aan
aan
aai
-acZ
+acY
aan
aan
aan
-aex
-aeT
+aen
+aeI
aai
aaa
aaa
@@ -112695,36 +99033,36 @@ aaa
aaa
aaa
aaa
-aZm
-aZm
-bVg
-bVg
-bVg
-aZm
-aZm
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aZn
-cdn
-aZA
-aZy
-ceq
-djV
-aZo
-aZn
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
+aXL
+aXL
+bSj
+bSj
+bSj
+aXL
+aXL
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXM
+cal
+aXZ
+aXX
+cbo
+cSf
+aXN
+aXM
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
aaa
aaa
aaa
@@ -112748,14 +99086,14 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -112764,21 +99102,21 @@ aaa
aaa
aaa
aaa
-cgS
-cgS
-cgS
-cgN
-cgN
+cdN
+cdN
+cdN
+cdI
+cdI
aaa
abC
aaa
aaa
aaa
-cGR
-cIn
-cHq
-cIL
-cGR
+cCJ
+cEe
+cDh
+cEC
+cCJ
aaa
aaa
aaa
@@ -112837,15 +99175,15 @@ aan
aan
aan
aai
-ada
+acZ
aan
aan
aan
-aey
+aeo
aai
aai
aai
-agm
+afY
aaa
aaa
aaa
@@ -112948,40 +99286,40 @@ aaa
aaa
aaa
aaa
-aYT
-bjB
-bjB
-bjB
-aZm
-bUh
-bVh
-bVW
-bWK
-bXm
-aYX
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aZn
-cdo
-aZA
-cdY
-bCF
-djV
-aZo
-aZo
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
+aXs
+bhP
+bhP
+bhP
+aXL
+bRk
+bSk
+bSY
+bTL
+bUn
+aXw
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXM
+cam
+aXZ
+caW
+bAk
+cSf
+aXN
+aXN
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
aaa
aaa
aaa
@@ -113005,37 +99343,37 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
aaa
abC
aaa
aaa
aaa
-cGR
-cIm
-cGR
-cIM
-cGR
+cCJ
+cEd
+cCJ
+cED
+cCJ
aaa
aaa
aaa
@@ -113094,15 +99432,15 @@ aan
acG
aan
aai
-adb
+ada
aan
aan
aan
aan
aan
-afl
-afk
-afH
+aeX
+aeW
+aft
aaa
aaa
aaa
@@ -113185,16 +99523,16 @@ aaa
aaa
aaa
aaa
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
aaa
aaa
aaa
@@ -113205,45 +99543,45 @@ aaa
aaa
aaa
aaa
-aYP
-bjB
-bjB
-bjB
-aYX
-bUi
-bVi
-beC
-bWL
-beC
-aYX
-aYT
-aYT
-aYT
-aZo
-dbU
-aZm
-aYX
-aZn
-aZm
-cdp
-bbu
-bbu
-cdp
-aZo
-aZo
-aZo
-aZo
-aZo
-aZn
-aZn
-aZn
-aZn
-aYP
-aYP
-cgN
-cgS
-cgS
-cgS
+aXo
+bhP
+bhP
+bhP
+aXw
+bRl
+bSl
+bcX
+bTM
+bcX
+aXw
+aXs
+aXs
+aXs
+aXN
+cNi
+aXL
+aXw
+aXM
+aXL
+can
+aZT
+aZT
+can
+aXN
+aXN
+aXN
+aXN
+aXN
+aXM
+aXM
+aXM
+aXM
+aXo
+aXo
+cdI
+cdN
+cdN
+cdN
aaa
aaa
aaa
@@ -113262,34 +99600,34 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-cgS
-cgS
-cgS
-cgN
-cgN
-cgS
-cgS
-cgS
+cdN
+cdN
+cdN
+cdI
+cdI
+cdN
+cdN
+cdN
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -113351,15 +99689,15 @@ aai
aai
aai
aai
-adc
+adb
ace
aan
aan
aan
aan
-afm
-afk
-afI
+aeY
+aeW
+afu
aaa
aaa
aaa
@@ -113442,66 +99780,66 @@ aaa
aaa
aaa
aaa
-bjB
-bjB
-bjB
-bjB
-aYP
-aYP
-aYT
-bjB
-bjB
-bjB
-bjB
-bjB
+bhP
+bhP
+bhP
+bhP
+aXo
+aXo
+aXs
+bhP
+bhP
+bhP
+bhP
+bhP
aaa
aaa
aaa
aaa
-bjB
-bjB
-bjB
-aYP
-aYP
-aYP
-aYT
-aYT
-aZm
-aYX
-aZm
-bVX
-bWM
-bXn
-aZm
-aYT
-aZo
-aZo
-aZm
-ccr
-aZA
-bbg
-aZA
-bHy
-bCF
-aZA
-aZA
-cer
-aYX
-ceK
-cfs
-aZz
-aZA
-aZA
-cge
-aZn
-cgj
-cgv
-cgv
-cgN
-cgN
-cgN
-cgS
-cgS
+bhP
+bhP
+bhP
+aXo
+aXo
+aXo
+aXs
+aXs
+aXL
+aXw
+aXL
+bSZ
+bTN
+bUo
+aXL
+aXs
+aXN
+aXN
+aXL
+bZq
+aXZ
+aZF
+aXZ
+bEP
+bAk
+aXZ
+aXZ
+cbp
+aXw
+cbI
+ccq
+aXY
+aXZ
+aXZ
+cdb
+aXM
+cdf
+cdr
+cdr
+cdI
+cdI
+cdI
+cdN
+cdN
aaa
aaa
aaa
@@ -113530,23 +99868,23 @@ aaa
aaa
aaa
aaa
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgS
-cgS
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdN
+cdN
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -113606,17 +99944,17 @@ aaa
aaa
aaa
aaa
-acN
+acM
aai
-add
-ado
+adc
+adl
aan
-adY
-adY
+adO
+adO
acG
-afn
-afk
-afJ
+aeZ
+aeW
+afv
aaa
aaa
aaa
@@ -113691,74 +100029,74 @@ aaa
aaa
aaa
aaa
-bjB
-bjB
-bjB
+bhP
+bhP
+bhP
aaa
-bjB
-bjB
-bjB
-bjB
-bjB
-aYP
-aYP
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYT
-aYT
-aYT
-aYT
-aYP
-aYP
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aZm
-aYX
-aYX
-bXo
-aYX
-aZo
-aZm
-aYX
-bWp
-blT
-bbf
-bbf
-bbf
-bbf
-bmN
-aZA
-aZA
-ces
-ceK
-ceK
-cft
-aZA
-aZA
-aZA
-aZA
-aZX
-cgj
-cgj
-cgj
-cgO
-cgO
-cgN
-cgS
-cgS
+bhP
+bhP
+bhP
+bhP
+bhP
+aXo
+aXo
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXs
+aXs
+aXs
+aXs
+aXo
+aXo
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXL
+aXw
+aXw
+bUp
+aXw
+aXN
+aXL
+aXw
+bTq
+bkc
+aZE
+aZE
+aZE
+aZE
+bkU
+aXZ
+aXZ
+cbq
+cbI
+cbI
+ccr
+aXZ
+aXZ
+aXZ
+aXZ
+aYw
+cdf
+cdf
+cdf
+cdJ
+cdJ
+cdI
+cdN
+cdN
aaa
aaa
aaa
@@ -113787,23 +100125,23 @@ aaa
aaa
aaa
aaa
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgS
-cgS
-cgN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdN
+cdN
+cdI
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -113947,76 +100285,76 @@ aaa
aaa
aaa
aaa
-bjB
-bjB
-aYP
-aYP
+bhP
+bhP
+aXo
+aXo
aaa
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aZo
-aZo
-aYX
-bWN
-bXp
-aZn
-aYX
-aZm
-dhj
-beC
-bCF
-blT
-bbf
-bbf
-bVY
-bbf
-bbf
-bbf
-bmN
-aZn
-aZn
-aZn
-aZn
-aZn
-aZn
-bec
-aZA
-aZA
-aZA
-cgj
-cgj
-cgj
-cgO
-cgN
-cgS
-cgS
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXN
+aXN
+aXw
+bTO
+bUq
+aXM
+aXw
+aXL
+cQN
+bcX
+bAk
+bkc
+aZE
+aZE
+bTa
+aZE
+aZE
+aZE
+bkU
+aXM
+aXM
+aXM
+aXM
+aXM
+aXM
+bcx
+aXZ
+aXZ
+aXZ
+cdf
+cdf
+cdf
+cdJ
+cdI
+cdN
+cdN
aaa
aaa
aaa
@@ -114039,20 +100377,20 @@ aaa
aaa
aaa
aaa
-cgS
+cdN
aaa
aaa
-cgS
-cgS
-cgS
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgS
-cgS
+cdN
+cdN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdN
+cdN
aaa
aaa
abC
@@ -114060,7 +100398,7 @@ aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -114148,15 +100486,15 @@ aaa
aaa
aaa
aaa
-awc
-awc
-awd
-awc
-awc
-awd
-awc
-awc
-awc
+avw
+avw
+avx
+avw
+avw
+avx
+avw
+avw
+avw
aaa
aaa
aaa
@@ -114191,95 +100529,95 @@ aaa
aaa
aaa
aaa
-aYN
-aZg
-aYN
+aXm
+aXF
+aXm
aaa
aaa
abC
aaa
aaa
aaa
-aYP
+aXo
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYP
-aYP
-aYT
-aZo
-aZo
-aZo
-aZo
-aZo
-aZn
-aZn
-aZz
-aZA
-bHy
-aZm
-beC
-aZz
-bCF
-bCF
-aZA
-ccr
-bbg
-aZA
-aZA
-aZA
-bec
-aZm
-aZn
-djX
-djX
-cea
-cea
-djX
-aZn
-cgm
-aZA
-aZA
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXo
+aXo
+aXs
+aXN
+aXN
+aXN
+aXN
+aXN
+aXM
+aXM
+aXY
+aXZ
+bEP
+aXL
+bcX
+aXY
+bAk
+bAk
+aXZ
+bZq
+aZF
+aXZ
+aXZ
+aXZ
+bcx
+aXL
+aXM
+cSg
+cSg
+caY
+caY
+cSg
+aXM
+cdi
+aXZ
+aXZ
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
aaa
aaa
aaa
@@ -114296,28 +100634,28 @@ aaa
aaa
aaa
aaa
-cgS
-cgS
+cdN
+cdN
aaa
-cgS
-cgS
-cgS
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgS
-cgS
-cgS
+cdN
+cdN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdN
+cdN
+cdN
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -114405,15 +100743,15 @@ aaa
aaa
aaa
aaa
-awd
-axf
-ayb
-azI
-aAW
-aAW
-aDh
-aEw
-aFQ
+avx
+awy
+axu
+aza
+aAo
+aAo
+aCy
+aDM
+aFf
aaa
aaa
aaa
@@ -114448,94 +100786,94 @@ aaa
aaa
aaa
aaa
-aYN
-aZh
-aYN
+aXm
+aXG
+aXm
aaa
aaa
abC
aaa
aaa
-aYP
-aYP
+aXo
+aXo
aaa
-aYP
-aYP
-aYP
+aXo
+aXo
+aXo
+aXs
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXM
+aXL
+aXM
+aXw
+cNi
+aXL
+aXL
+aXM
+aXM
+aXN
+aXw
+aXw
+aXL
+aXM
+bSm
aYT
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aZn
-aZm
-aZn
-aYX
-dbU
-aZm
-aZm
-aZn
-aZn
-aZo
-aYX
-aYX
-aZm
-aZn
-bVj
-bau
-aZn
-aZz
-blT
-bbf
-bbf
-bbf
-bbf
-bmN
-bCF
-aZA
-aZA
-bbg
-aZm
-aYX
-aZm
-aZn
-aZn
-cea
-cea
-cfD
-cfE
-cfW
-cea
-cgj
-cgj
-cgj
-aZA
-aZA
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgO
-cgS
-cgS
-cgS
+aXM
+aXY
+bkc
+aZE
+aZE
+aZE
+aZE
+bkU
+bAk
+aXZ
+aXZ
+aZF
+aXL
+aXw
+aXL
+aXM
+aXM
+caY
+caY
+ccB
+ccC
+ccT
+caY
+cdf
+cdf
+cdf
+aXZ
+aXZ
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdN
+cdN
+cdN
aaa
aaa
aaa
@@ -114553,28 +100891,28 @@ aaa
aaa
aaa
aaa
-cgS
-cgS
-cgR
-cgR
-cgR
-cgS
-cgS
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgS
-cgS
+cdN
+cdN
+cdM
+cdM
+cdM
+cdN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdN
+cdN
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -114662,28 +101000,28 @@ aaa
aaa
aaa
aaa
-awd
-axg
-ayc
-awc
-aAW
-aAW
-aAW
-aEw
-aFQ
+avx
+awz
+axv
+avw
+aAo
+aAo
+aAo
+aDM
+aFf
aaa
aaa
aaa
aaa
aaa
abC
-afV
-afV
-afV
-afV
-afV
-afV
-afV
+afH
+afH
+afH
+afH
+afH
+afH
+afH
abC
aaa
aaa
@@ -114705,99 +101043,99 @@ aaa
aaa
aaa
aaa
-aYN
-aZi
-aYN
+aXm
+aXH
+aXm
aaa
aaa
abC
aaa
aaa
-aYP
-aYP
-aZo
-aZo
-aZo
-aYT
-aYT
-aYT
-aYT
-aYT
-aZo
-aZo
-aZo
-aZo
-bnS
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aZn
-aZm
-aZm
-bFa
-bec
-bHy
-bec
-aZA
-aZn
-bNg
-bNg
-aZA
-aZm
-aZA
-aZA
-blT
-bbf
-bVY
-bMd
-bbf
-bmN
-blT
-bbf
-bbf
-bbf
-bbf
-bmN
-cad
-aYX
-aYX
-aYX
-aZn
-aZn
-aZn
-aZn
-cea
-cfu
-cfE
-cfE
-cfX
-cea
-cgj
-cgj
-cgj
-cgj
-aZA
-bec
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgN
-cgS
-cgS
-cgN
-cgS
-cgS
-cgS
-cgS
+aXo
+aXo
+aXN
+aXN
+aXN
+aXs
+aXs
+aXs
+aXs
+aXs
+aXN
+aXN
+aXN
+aXN
+blY
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXM
+aXL
+aXL
+bCz
+bcx
+bEP
+bcx
+aXZ
+aXM
+bKr
+bKr
+aXZ
+aXL
+aXZ
+aXZ
+bkc
+aZE
+bTa
+bJq
+aZE
+bkU
+bkc
+aZE
+aZE
+aZE
+aZE
+bkU
+bXd
+aXw
+aXw
+aXw
+aXM
+aXM
+aXM
+aXM
+caY
+ccs
+ccC
+ccC
+ccU
+caY
+cdf
+cdf
+cdf
+cdf
+aXZ
+bcx
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdI
+cdN
+cdN
+cdI
+cdN
+cdN
+cdN
+cdN
aaa
aaa
aaa
@@ -114809,29 +101147,29 @@ aaa
aaa
aaa
aaa
-cgS
-cgR
-cgR
-cgR
-cgR
-cgR
-cgS
-cgS
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -114919,28 +101257,28 @@ aaa
aaa
aaa
aaa
-awd
-axh
-ayd
-azJ
-aAX
-aCa
-aAW
-aEw
-aFQ
+avx
+awA
+axw
+azb
+aAp
+aBs
+aAo
+aDM
+aFf
aaa
aaa
aaa
aaa
abC
abC
-afV
-aOF
-aPB
-aRj
-aSd
-ajr
-afV
+afH
+aNy
+aOo
+aPQ
+aQK
+aiZ
+afH
abC
abC
aaa
@@ -114962,99 +101300,99 @@ aaa
aaa
aaa
aaa
-aYN
-aZj
-aYN
-aYN
-aYN
-aYN
+aXm
+aXI
+aXm
+aXm
+aXm
+aXm
aaa
aaa
-aYP
-aYP
-aZo
-dci
-aZo
-aYX
-aYX
-dbV
-aZm
-aZm
-aZo
-bec
-bad
-aZm
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aZn
-bCE
-bbf
-bbf
-bbf
-bbf
-bbf
-bbf
-bMd
-bbf
-bbf
-bbf
-bbf
-bbf
-bbf
-bmN
-bVk
-bVZ
-bPW
-bPW
-bPW
-bYP
-aZA
-aZA
-aZA
-bWp
-cbw
-cbZ
-aZm
-aZn
-aZo
-aZo
-aZo
-aZn
-aZn
-cea
-cfv
-cfF
-cfE
-cfE
-djX
-aZn
-aZn
-cgj
-cgj
-cgP
-aZA
-aZA
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgO
-cgO
-cgO
-cgO
-cgN
-cgN
-cgN
+aXo
+aXo
+aXN
+cNw
+aXN
+aXw
+aXw
+cNj
+aXL
+aXL
+aXN
+bcx
+aYC
+aXL
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXM
+bAj
+aZE
+aZE
+aZE
+aZE
+aZE
+aZE
+bJq
+aZE
+aZE
+aZE
+aZE
+aZE
+aZE
+bkU
+bSn
+bTb
+bNd
+bNd
+bNd
+bVQ
+aXZ
+aXZ
+aXZ
+bTq
+bYv
+bYY
+aXL
+aXM
+aXN
+aXN
+aXN
+aXM
+aXM
+caY
+cct
+ccD
+ccC
+ccC
+cSg
+aXM
+aXM
+cdf
+cdf
+cdK
+aXZ
+aXZ
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -115065,30 +101403,30 @@ aaa
aaa
aaa
aaa
-cgS
-cBU
-cBU
-cBU
-cBU
-cBU
-cBU
-cBU
-cgS
-cgS
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
+cdN
+cxT
+cxT
+cxT
+cxT
+cxT
+cxT
+cxT
+cdN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
aaa
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -115176,30 +101514,30 @@ aaa
aaa
aaa
aaa
-awc
-awc
-aye
-awc
-awc
-awc
-aDi
-awc
-awc
+avw
+avw
+axx
+avw
+avw
+avw
+aCz
+avw
+avw
aaa
aaa
aaa
aaa
-afV
-afV
-afS
-aOG
-akp
-aym
-aym
-aym
-afS
-afV
-afV
+afH
+afH
+afE
+aNz
+ajW
+axF
+axF
+axF
+afE
+afH
+afH
aaa
aaa
aaa
@@ -115214,104 +101552,104 @@ aaa
aaa
aaa
aaa
-aYN
-aYN
-aYN
-aYN
-aYN
-aYX
-aZk
-aZu
-aZJ
-aZW
-aZJ
+aXm
+aXm
+aXm
+aXm
+aXm
+aXw
+aXJ
+aXT
+aYi
+aYv
+aYi
aaa
aaa
-aYP
-aZm
-aZm
-bFm
-beD
-dcA
-dcK
-beD
-ddt
-ddU
-bkb
-bkb
-bSs
-aZo
-aYT
-aYT
-aYT
-bsc
-bsd
-bsd
-bsd
-bsd
-bsc
-bsc
-bsc
-dgu
-bEd
-bnT
-bnT
-bnT
-dhi
-dft
-bnT
-bnT
-bOv
-dhL
-bQY
-bPW
-dhL
-dhL
-bVl
-aYX
-aZA
-aZA
-aZA
-bCW
-aZA
-bbi
-bdL
-aZm
-aZn
-aZo
-aZo
-aZo
-aZo
-aZo
-aZo
-aZn
-aZn
-djX
-cea
-cfE
-cfE
-cfY
-cea
-aZn
-aZn
-cgn
-cgE
-cgQ
-aZA
-aZA
-aZA
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgO
-cgO
-cgO
-cgN
-cgN
-cgN
+aXo
+aXL
+aXL
+bCG
+bcY
+cNL
+cNO
+bcY
+cOs
+cOH
+bip
+bip
+bPw
+aXN
+aXs
+aXs
+aXs
+bpZ
+bqa
+bqa
+bqa
+bqa
+bpZ
+bpZ
+bpZ
+cQs
+bBD
+blZ
+blZ
+blZ
+cQM
+cPM
+blZ
+blZ
+bLD
+cRh
+bOd
+bNd
+cRh
+cRh
+bSo
+aXw
+aXZ
+aXZ
+aXZ
+bAw
+aXZ
+aZH
+bci
+aXL
+aXM
+aXN
+aXN
+aXN
+aXN
+aXN
+aXN
+aXM
+aXM
+cSg
+caY
+ccC
+ccC
+ccV
+caY
+aXM
+aXM
+cdj
+cdz
+cdL
+aXZ
+aXZ
+aXZ
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -115322,30 +101660,30 @@ aaa
aaa
aaa
aaa
-cgS
-cBU
-dlN
-dlS
-dlW
-cCO
-dmh
-cBU
-cgS
-cgS
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
+cdN
+cxT
+cSU
+cSY
+cTa
+cyM
+cTj
+cxT
+cdN
+cdN
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
abC
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -115433,30 +101771,30 @@ aaa
aaa
aaa
aaa
-awe
-axi
-ayf
-axi
-aAY
-axi
-aDj
-axi
+avy
+awB
+axy
+awB
+aAq
+awB
+aCA
+awB
acj
aaa
aaa
aaa
aaa
-aLv
-aMC
-aNz
-aNz
-aPC
-ahA
-aSe
-aSe
-aTM
-aMC
-aVn
+aKz
+aLC
+aMv
+aMv
+aOp
+ahm
+aQL
+aQL
+aSq
+aLC
+aTR
aaa
aaa
aaa
@@ -115471,105 +101809,105 @@ aaa
aaa
aaa
aaa
-aYO
-aYR
-aYS
-aYV
-aYX
-aZa
-aZb
-aZv
-aYX
-aYN
-aYN
-aYP
-aYP
-aZn
-aZm
-aZA
-bCW
-dcp
-dcB
-dcL
-dcL
-dcL
-dcL
-dcL
-dez
-deP
-aZm
-aYT
-aYT
-aYT
-bsc
-btx
-bty
-bwx
-bty
-bzs
-bty
-bsd
-dgu
-deT
-aYX
-aZm
-aYX
-dhj
-aZm
-cfg
-beC
-dhB
-aZn
-aZm
-dbV
-aYX
-aZm
-aZm
-aZn
-aZn
-aZn
-aZA
-bCW
-aZn
-aZm
-aZm
-aZm
-aZo
-aZo
-aZo
-aZo
-aZo
-aZn
-aZn
-cdZ
-cdZ
-cdZ
-djX
-cfG
-cfE
-cfZ
-cea
-aZn
-cgn
-cgw
-cgF
-cgj
-cgj
-aZA
-aZA
-aZA
-cgj
-cgj
-cgj
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgO
-cgN
-cgS
+aXn
+aXq
+aXr
+aXu
+aXw
+aXz
+aXA
+aXU
+aXw
+aXm
+aXm
+aXo
+aXo
+aXM
+aXL
+aXZ
+bAw
+cND
+cNM
+cNP
+cNP
+cNP
+cNP
+cNP
+cPc
+cPo
+aXL
+aXs
+aXs
+aXs
+bpZ
+bru
+brv
+bum
+brv
+bxa
+brv
+bqa
+cQs
+cPr
+aXw
+aXL
+aXw
+cQN
+aXL
+cce
+bcX
+cRa
+aXM
+aXL
+cNj
+aXw
+aXL
+aXL
+aXM
+aXM
+aXM
+aXZ
+bAw
+aXM
+aXL
+aXL
+aXL
+aXN
+aXN
+aXN
+aXN
+aXN
+aXM
+aXM
+caX
+caX
+caX
+cSg
+ccE
+ccC
+ccW
+caY
+aXM
+cdj
+cds
+cdA
+cdf
+cdf
+aXZ
+aXZ
+aXZ
+cdf
+cdf
+cdf
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdI
+cdN
aaa
aaa
aaa
@@ -115580,29 +101918,29 @@ aaa
aaa
aaa
aaa
-cBU
-dlO
-dlO
-cDE
-dmc
-dmh
-cBU
-cgS
-cgS
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cGT
+cxT
+cSV
+cSV
+czB
+cTf
+cTj
+cxT
+cdN
+cdN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cCL
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -115691,29 +102029,29 @@ aaa
abC
abC
abC
-axj
-ayg
-axj
+awC
+axz
+awC
abC
-axj
-ayg
-axj
+awC
+axz
+awC
abC
abC
aaa
aaa
aaa
-afV
-afV
-afV
-aOH
-aPD
-aiW
-aym
-aym
-afS
-afV
-afV
+afH
+afH
+afH
+aNA
+aOq
+aiE
+axF
+axF
+afE
+afH
+afH
aaa
aaa
aaa
@@ -115728,138 +102066,138 @@ aaa
aaa
aaa
aaa
-aYN
-aYN
-aYN
-aYW
-aYY
-aZb
-aZl
-aZw
-aYX
-aZn
+aXm
+aXm
+aXm
+aXv
+aXx
+aXA
+aXK
+aXV
+aXw
+aXM
+aXs
+aXs
+aXs
+aXN
aYT
-aYT
-aYT
-aZo
-bau
-aZA
-bCW
-dcq
-dcw
-dcw
-dcw
-ddv
-dcw
-dcw
-dcq
-bCW
-dbU
-aYT
-aYT
-aYP
-bsc
-bty
-bvc
-bwy
-byg
-bzt
-bAy
-bsd
-dgu
-deT
-aYX
-bGn
-bHz
-beC
-aZm
-aZm
-dhr
-bfr
-dhM
-aYX
-aZn
-aZo
-aZo
-aZo
-aZo
-aZo
-aZn
-aZB
-bYQ
-aZn
-aZn
-aZn
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-aZn
-cdZ
-cdZ
-ceu
-cev
-cfw
-cev
-cev
-djX
-cea
-aZn
-cgo
-aZn
-aZn
-aZn
-cgj
-cgj
-aZA
-aZA
-aZA
+aXZ
+bAw
+cNE
+cNJ
+cNJ
+cNJ
+cOt
+cNJ
+cNJ
+cNE
+bAw
+cNi
+aXs
+aXs
+aXo
+bpZ
+brv
+bsU
+bun
+bvR
+bxb
+byf
+bqa
+cQs
+cPr
+aXw
+bDH
+bEQ
+bcX
+aXL
+aXL
+cQR
bdL
-cgj
-cgj
-cgj
-cgO
-cgO
-cgO
-cgO
-cgO
-cgN
-cgN
+cRi
+aXw
+aXM
+aXN
+aXN
+aXN
+aXN
+aXN
+aXM
+aYa
+bVR
+aXM
+aXM
+aXM
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+aXM
+caX
+caX
+cbs
+cbt
+ccu
+cbt
+cbt
+cSg
+caY
+aXM
+cdk
+aXM
+aXM
+aXM
+cdf
+cdf
+aXZ
+aXZ
+aXZ
+bci
+cdf
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdI
+cdI
aaa
aaa
aaa
aaa
aaa
aaa
-cgS
+cdN
aaa
aaa
aaa
-cBU
-dlP
-dlU
-dlX
-dmd
-dmh
-cBU
-cgS
-cgS
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
+cxT
+cSW
+cSZ
+cTb
+cTg
+cTj
+cxT
+cdN
+cdN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -115945,30 +102283,30 @@ abW
abW
abW
abW
-atR
-atR
-atR
-axk
-ayh
-axo
-atR
-axo
-aDk
-aEx
-atR
-atR
+atl
+atl
+atl
+awD
+axA
+awH
+atl
+awH
+aCB
+aDN
+atl
+atl
abW
abW
aaa
abW
abW
-afS
-aym
-aiW
-aht
-aSf
-aTi
-afV
+afE
+axF
+aiE
+ahf
+aQM
+aRO
+afH
abW
abW
aaa
@@ -115987,136 +102325,136 @@ aaa
aaa
aaa
aaa
-aYN
-aYN
-aYN
-aYN
-aZm
-aZx
-aYX
-aZn
-aYT
-aYT
-aYT
-aZo
-aZo
-aZm
-dcj
-dcq
-dcw
-dcM
-ddc
-ddw
-ddW
-dcw
-deB
-deQ
-aZo
-aYT
-aYT
-aYP
-bsc
-bty
-bvd
-bwz
-byh
-bzu
-bAz
-bsd
-dgu
-deT
-aYX
-aYX
-aZm
-aZn
-aZn
-aZn
-dhs
-bfr
-beC
-aYX
-aZn
-bHA
-bHA
-bHA
-bHA
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-cbx
-cbx
-cbx
-cbx
-bWO
-aZn
-cea
-cet
-ceu
-cdZ
-cea
-djX
-djX
-djX
-aYP
-aZn
-aZn
-aZn
-aYP
-cgN
-cgO
-cgj
-cgj
-cgj
-aZA
-aZA
-aZA
-aZA
-cgj
-cgj
-cgj
-cgj
-cgO
-cgO
-cgN
-cgN
-cgS
+aXm
+aXm
+aXm
+aXm
+aXL
+aXW
+aXw
+aXM
+aXs
+aXs
+aXs
+aXN
+aXN
+aXL
+cNx
+cNE
+cNJ
+cNQ
+cOe
+cOu
+cOI
+cNJ
+cPd
+cPp
+aXN
+aXs
+aXs
+aXo
+bpZ
+brv
+bsV
+buo
+bvS
+bxc
+byg
+bqa
+cQs
+cPr
+aXw
+aXw
+aXL
+aXM
+aXM
+aXM
+cQS
+bdL
+bcX
+aXw
+aXM
+bER
+bER
+bER
+bER
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bYw
+bYw
+bYw
+bYw
+bTP
+aXM
+caY
+cbr
+cbs
+caX
+caY
+cSg
+cSg
+cSg
+aXo
+aXM
+aXM
+aXM
+aXo
+cdI
+cdJ
+cdf
+cdf
+cdf
+aXZ
+aXZ
+aXZ
+aXZ
+cdf
+cdf
+cdf
+cdf
+cdJ
+cdJ
+cdI
+cdI
+cdN
aaa
aaa
aaa
aaa
-cgS
-ctW
-cuQ
-cuQ
-cuQ
-ctW
-dlQ
-dlQ
-cDE
-dme
-dmh
-cBU
-cgS
-cgS
-cgS
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
+cdN
+cqb
+cqU
+cqU
+cqU
+cqb
+cSX
+cSX
+czB
+cTh
+cTj
+cxT
+cdN
+cdN
+cdN
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
aaa
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -116202,33 +102540,33 @@ acH
acH
acH
acH
-atR
-auV
-awf
-axl
-ayi
-azK
-aAZ
-aCb
-axl
-axl
-aFR
-atR
+atl
+aup
+avz
+awE
+axB
+azc
+aAr
+aBt
+awE
+awE
+aFg
+atl
abW
acH
acH
acH
acH
-afS
-aym
-aPE
-aRk
-aSg
-aTj
-afV
+afE
+axF
+aOr
+aPR
+aQN
+aRP
+afH
abW
abW
-akG
+akm
abC
abC
abC
@@ -116248,132 +102586,132 @@ abC
abC
abC
abC
-aZm
-aZy
-aZK
-aZn
-aZo
-aZo
-aYX
-aYX
-aZm
-dcb
-bCW
-beA
-dcw
-dcN
-ddd
-ddx
-ddX
-dcw
-dcq
-deQ
-aYX
-aYT
-aYT
-aYP
-bsd
-bty
-bve
-bwA
-byi
-bzv
-bAA
-bsc
-dgu
-deT
-dbU
-aZn
-aZn
-aZn
-aZn
-aZn
-aZn
-bOw
-dhN
-aZn
-aZn
-bHA
-bUj
-bVm
-bWa
-bWO
-bXq
-bYd
-bYR
-bZp
-cWF
-cao
-caY
-cby
-cca
-bYd
-bYd
-bWO
-aZn
-cdZ
-ceu
-cdZ
-cdZ
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYP
-cgN
-cgO
-cgO
-cgO
-cgj
-cgj
-bec
-aZA
-aZA
-aZA
-bec
-cgj
-cgj
-cgO
-cgO
-cgO
-cgN
-cgN
+aXL
+aXX
+aYj
+aXM
+aXN
+aXN
+aXw
+aXw
+aXL
+cNp
+bAw
+bcV
+cNJ
+cNR
+cOf
+cOv
+cOJ
+cNJ
+cNE
+cPp
+aXw
+aXs
+aXs
+aXo
+bqa
+brv
+bsW
+bup
+bvT
+bxd
+byh
+bpZ
+cQs
+cPr
+cNi
+aXM
+aXM
+aXM
+aXM
+aXM
+aXM
+bLE
+cRj
+aXM
+aXM
+bER
+bRm
+bSp
+bTc
+bTP
+bUr
+bVe
+bVS
+bWq
+cLb
+bXn
+bXX
+bYx
+bYZ
+bVe
+bVe
+bTP
+aXM
+caX
+cbs
+caX
+caX
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXo
+cdI
+cdJ
+cdJ
+cdJ
+cdf
+cdf
+bcx
+aXZ
+aXZ
+aXZ
+bcx
+cdf
+cdf
+cdJ
+cdJ
+cdJ
+cdI
+cdI
aaa
aaa
aaa
aaa
-cgS
-ctW
-cuR
-cvR
-cvR
-ctW
-cCQ
-cCQ
-dlY
-dme
-dmh
-cBU
-cCB
-cjU
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
+cdN
+cqb
+cqV
+crU
+crU
+cqb
+cyO
+cyO
+cTc
+cTh
+cTj
+cxT
+cyz
+cgv
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
aaa
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -116458,32 +102796,32 @@ abW
acH
acH
acH
-aez
-atS
-auW
-awg
-axm
-axm
-azL
-aBa
-axm
-aDl
-axm
-aFS
-atR
-aez
-aqG
-afS
-afV
-afS
-afV
-afV
-aPF
-aRl
-afS
-afS
-afS
-adZ
+aep
+atm
+auq
+avA
+awF
+awF
+azd
+aAs
+awF
+aCC
+awF
+aFh
+atl
+aep
+aqg
+afE
+afH
+afE
+afH
+afH
+aOs
+aPS
+afE
+afE
+afE
+adP
abW
abW
aaa
@@ -116504,133 +102842,133 @@ aaa
aaa
aaa
aaa
-aYP
-aYX
-aZz
-aZz
-aZz
-aZm
-aZm
-bbg
-dbW
-aZA
-bFm
-bCY
-dcs
-dcw
-dcO
-dde
-ddy
-ddY
-dcw
-dcq
-bfq
-aZm
-aYT
-aYT
-aYT
-bsd
-btz
-bvf
-bwB
-byj
-bzw
-bty
-bsc
+aXo
+aXw
+aXY
+aXY
+aXY
+aXL
+aXL
+aZF
+cNk
+aXZ
bCG
-blW
-aYX
-aZn
-aZn
-bHA
-bHA
-bHA
-bHA
-bHA
-bHA
-bHA
-bHA
-bHA
-bUk
-bVn
-bWb
-bWP
-bXr
-bXr
-bYS
-bXr
-bXr
-cap
-caZ
-bXr
-ccb
-ccs
-ccJ
-bWO
-aZn
-cdZ
-ceu
-ceL
-cdZ
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-cgN
-cgO
-cgO
-cgO
-cgO
-cgj
-cgj
-cgj
-cgj
-aZA
-aZA
-aZA
-aZn
-aZn
-aZn
-cgN
-cgN
-cgN
+bAy
+cNF
+cNJ
+cNS
+cOg
+cOw
+cOK
+cNJ
+cNE
+bdK
+aXL
+aXs
+aXs
+aXs
+bqa
+brw
+bsX
+buq
+bvU
+bxe
+brv
+bpZ
+bAl
+bkf
+aXw
+aXM
+aXM
+bER
+bER
+bER
+bER
+bER
+bER
+bER
+bER
+bER
+bRn
+bSq
+bTd
+bTQ
+bUs
+bUs
+bVT
+bUs
+bUs
+bXo
+bXY
+bUs
+bZa
+bZr
+bZI
+bTP
+aXM
+caX
+cbs
+cbJ
+caX
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+cdI
+cdJ
+cdJ
+cdJ
+cdJ
+cdf
+cdf
+cdf
+cdf
+aXZ
+aXZ
+aXZ
+aXM
+aXM
+aXM
+cdI
+cdI
+cdI
aaa
aaa
aaa
aaa
-cgS
-ctW
-cuS
-cvR
-cwO
-ctW
-cBU
-cBU
-dlZ
-dmg
-ctW
-ctW
-cCC
-cjU
-chc
-cjU
-cjV
-cgu
-cgu
-cgR
-cgN
-cgN
-cgN
+cdN
+cqb
+cqW
+crU
+csR
+cqb
+cxT
+cxT
+cTd
+cTi
+cqb
+cqb
+cyA
+cgv
+cdU
+cgv
+cgw
+cdq
+cdq
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -116714,33 +103052,33 @@ acH
acH
acH
acH
-aez
-aez
-atR
-auX
-awh
-axn
-ayj
-azL
-aAZ
-axn
-ayj
-axm
-aFT
-atR
-aIo
-afq
-aqH
-afq
-afq
-afq
-afq
-aPG
-aPG
-afq
-aTk
-afV
-afV
+aep
+aep
+atl
+aur
+avB
+awG
+axC
+azd
+aAr
+awG
+axC
+awF
+aFi
+atl
+aHz
+afc
+aqh
+afc
+afc
+afc
+afc
+aOt
+aOt
+afc
+aRQ
+afH
+afH
acH
acH
abE
@@ -116761,133 +103099,133 @@ aaa
aaa
aaa
aaa
-aYP
-aZn
-aYX
-aZL
-aZz
-aZz
-aZz
-aZz
-aZz
-aZz
-bCW
-dck
-dct
-dcw
-dcw
-ddf
-ddz
-ddZ
-dcw
-deE
-bfr
-aZm
-aYX
-aYX
-aZo
-bsd
-bsd
-bsd
-bwC
-bwC
-bsd
-bsd
-bsc
-bCH
-blW
-aYX
-aZn
-aZn
-bHA
-bKz
-bMe
-bNh
-bOx
-cME
-bMe
-bPX
-bHC
-bIY
-bKF
-bWc
-bWQ
-bXs
-bXs
-bWQ
-bZq
-bWQ
-caq
-bWQ
-bXs
-bXs
-cct
-ccK
-bWO
-aZn
-cdZ
-ceu
-cdZ
-cdZ
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-cgN
-cgN
-cgO
-cgO
-cgO
-cgO
-cgO
-cgj
-cgj
-aZA
-aZA
-aZA
-bbu
-aZA
-aZn
-aZo
-cgR
-cgN
-cgS
+aXo
+aXM
+aXw
+aYk
+aXY
+aXY
+aXY
+aXY
+aXY
+aXY
+bAw
+cNy
+cNG
+cNJ
+cNJ
+cOh
+cOx
+cOL
+cNJ
+cPe
+bdL
+aXL
+aXw
+aXw
+aXN
+bqa
+bqa
+bqa
+bur
+bur
+bqa
+bqa
+bpZ
+bAm
+bkf
+aXw
+aXM
+aXM
+bER
+bHP
+bJr
+bKs
+bLF
+cHr
+bJr
+bNe
+bET
+bGp
+bHV
+bTe
+bTR
+bUt
+bUt
+bTR
+bWr
+bTR
+bXp
+bTR
+bUt
+bUt
+bZs
+bZJ
+bTP
+aXM
+caX
+cbs
+caX
+caX
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+cdI
+cdI
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdf
+cdf
+aXZ
+aXZ
+aXZ
+aZT
+aXZ
+aXM
+aXN
+cdM
+cdI
+cdN
aaa
aaa
aaa
-cgS
-ctW
-cuT
-cvS
-cuT
-ctW
-cxY
-cyN
-cXY
-cYa
-cYb
-ctW
-cCB
-cjU
-cjV
-cjX
-cgL
-cjV
-cjU
-cgR
-cgR
-cgR
-cgR
+cdN
+cqb
+cqX
+crV
+cqX
+cqb
+ctZ
+cuN
+cLl
+cLn
+cLo
+cqb
+cyz
+cgv
+cgw
+cgy
+cdG
+cgw
+cgv
+cdM
+cdM
+cdM
+cdM
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -116960,45 +103298,45 @@ aaa
aaa
aaa
abC
-afV
-ajo
-ajo
-ajo
-afV
+afH
+aiW
+aiW
+aiW
+afH
acH
acH
acH
acH
-aez
-aez
-afV
-afV
-atR
-atR
-atR
-axo
-ayk
-azM
-atR
-axo
-aDm
-axo
-aFU
-atR
-aIp
-aJx
-aqk
-aox
-aox
-aNA
-afo
-aot
-aeV
-afq
-afq
-aUW
-afV
-aez
+aep
+aep
+afH
+afH
+atl
+atl
+atl
+awH
+axD
+aze
+atl
+awH
+aCD
+awH
+aFj
+atl
+aHA
+aIG
+apK
+anY
+anY
+aMw
+afa
+anV
+aeJ
+afc
+afc
+aTA
+afH
+aep
acH
abE
aaa
@@ -117017,134 +103355,134 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aZn
-aZn
-aZX
-aZz
-aZz
-bbu
-aZn
-aZn
-dcc
-dcl
-aZn
-dcw
-dcP
-ddg
-dcR
-dea
-dcw
-dcs
-bfr
-beC
-beC
-aZm
-aYX
-aZm
-aZn
-bvg
-bwD
-dfR
-bzx
-aZn
-aZn
-dgu
-blW
-aYX
-aZm
-aZn
-bHA
-bKA
-bKA
-bKA
-bKA
-bKA
-bKA
-bKA
-bHA
-bIZ
-bKF
-bWd
-bWO
-bXt
-bXt
-bWO
-bZr
-bWO
-car
-bWO
-cbz
-cbz
-cbz
-cbz
-bWO
-aZn
-cdZ
-cev
-cdZ
-cdZ
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-cgR
-cgR
-cgN
-cgN
-cgO
-cgO
-cgO
-cgO
-cgj
-aZn
-aZn
-aZn
-aZA
-aZA
-bad
-aZo
-cgR
-cgN
-cgS
+aXo
+aXo
+aXo
+aXM
+aXM
+aYw
+aXY
+aXY
+aZT
+aXM
+aXM
+cNq
+cNz
+aXM
+cNJ
+cNT
+cOi
+cNV
+cOM
+cNJ
+cNF
+bdL
+bcX
+bcX
+aXL
+aXw
+aXL
+aXM
+bsY
+bus
+cQd
+bxf
+aXM
+aXM
+cQs
+bkf
+aXw
+aXL
+aXM
+bER
+bHQ
+bHQ
+bHQ
+bHQ
+bHQ
+bHQ
+bHQ
+bER
+bGq
+bHV
+bTf
+bTP
+bUu
+bUu
+bTP
+bWs
+bTP
+bXq
+bTP
+bYy
+bYy
+bYy
+bYy
+bTP
+aXM
+caX
+cbt
+caX
+caX
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+cdM
+cdM
+cdI
+cdI
+cdJ
+cdJ
+cdJ
+cdJ
+cdf
+aXM
+aXM
+aXM
+aXZ
+aXZ
+aYC
+aXN
+cdM
+cdI
+cdN
aaa
aaa
aaa
-cgN
-ctW
-cuU
-cvT
-cwP
-ctW
-cxZ
-cyO
-czh
-czZ
-cAU
-cYc
-cCD
-cDv
-dmx
-cEQ
-cFb
-cmA
-cjV
-cgu
-cgR
-cgR
-cgR
+cdI
+cqb
+cqY
+crW
+csS
+cqb
+cua
+cuO
+cvh
+cvZ
+cwU
+cLp
+cyB
+czs
+cTs
+cAM
+cAX
+ciW
+cgw
+cdq
+cdM
+cdM
+cdM
aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
abC
@@ -117217,45 +103555,45 @@ aaa
aaa
abW
abW
-afS
-ajp
-ako
-ajr
-afS
+afE
+aiX
+ajV
+aiZ
+afE
acH
acH
acH
-aez
-afS
-akp
-cYl
-akp
-cYt
-auY
-awi
-axp
-ayl
-azN
-aBb
-aCc
-aDn
-aEy
-aFV
-aHr
-cYK
-aJy
-afo
-aju
-afo
-aNB
-aOI
-aSe
-aRm
+aep
+afE
+ajW
+cLx
+ajW
+cLC
aus
-akq
-akq
-aqm
-aez
+avC
+awI
+axE
+azf
+aAt
+aBu
+aCE
+aDO
+aFk
+aGF
+cLJ
+aIH
+afa
+ajc
+afa
+aMx
+aNB
+aQL
+aPT
+atM
+ajX
+ajX
+apM
+aep
acH
abW
abE
@@ -117263,7 +103601,7 @@ abE
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
aaa
@@ -117272,137 +103610,137 @@ aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYX
-aYX
-dbT
-dbU
-aZm
-aZm
-aZm
-dcd
-dcm
-aZm
-dcw
-dcQ
-ddh
-ddB
-deb
-dcw
-deG
-deS
-dfe
-dfe
-bbf
-dfe
-dfe
-bbf
-bbf
-bbf
-dfe
-dfe
-dfe
-dfe
-dgA
-blW
-dgY
-aYX
-bHA
-bHA
-cMA
-bKA
-bKB
-bKA
-bKB
-bKA
-bKB
-bHA
-bUl
-bVo
-bWe
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bWO
-bHA
-bHA
-cew
-bHA
-bHA
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-cgR
-cgR
-cgN
-cgN
-cgO
-cgO
-cgO
-cgO
-cgO
-cgN
-cgN
-aZn
-aZn
-aZA
-aZA
-aZn
-cgR
-cgN
-cgS
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXw
+aXw
+cNh
+cNi
+aXL
+aXL
+aXL
+cNr
+cNA
+aXL
+cNJ
+cNU
+cOj
+cOy
+cON
+cNJ
+cPf
+cPq
+cPz
+cPz
+aZE
+cPz
+cPz
+aZE
+aZE
+aZE
+cPz
+cPz
+cPz
+cPz
+cQt
+bkf
+cQF
+aXw
+bER
+bER
+cHn
+bHQ
+bHR
+bHQ
+bHR
+bHQ
+bHR
+bER
+bRo
+bSr
+bTg
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bTP
+bER
+bER
+cbu
+bER
+bER
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+cdM
+cdM
+cdI
+cdI
+cdJ
+cdJ
+cdJ
+cdJ
+cdJ
+cdI
+cdI
+aXM
+aXM
+aXZ
+aXZ
+aXM
+cdM
+cdI
+cdN
aaa
aaa
aaa
-cgN
-ctW
-cuT
-cvU
-cuT
-cxu
-cya
-cyP
-czi
-cAa
-cAV
-ctW
-cCE
-cgL
-cgL
-cxT
-cFc
-dmQ
-cjU
-cjV
-cgR
-cgR
-cgN
+cdI
+cqb
+cqX
+crX
+cqX
+ctw
+cub
+cuP
+cvi
+cwa
+cwV
+cqb
+cyC
+cdG
+cdG
+ctU
+cAY
+cTH
+cgv
+cgw
+cdM
+cdM
+cdI
aaa
aaa
aaa
-cjU
-cIo
-cjU
+cgv
+cEf
+cgv
aaa
abC
aaa
@@ -117474,46 +103812,46 @@ aaa
aaa
abW
abW
-afV
-ajq
-akp
-ala
-afV
+afH
+aiY
+ajW
+akG
+afH
abW
-aez
-afV
-cYj
-afS
-cYt
-cYE
-cYN
-cYK
-auZ
-awj
-axq
-aym
-azO
-aBc
-aCd
-aDo
-aEz
-aFW
-daa
-aSe
-aJz
-afq
-afV
-afV
+aep
+afH
+cLv
+afE
+cLC
+cLI
+cLK
+cLJ
+aut
+avD
+awJ
+axF
+azg
+aAu
+aBv
+aCF
+aDP
+aFl
+cMr
+aQL
+aII
+afc
+afH
+afH
+aMy
aNC
-aOJ
-afV
-afS
-afS
-afS
-akp
-alo
-afS
-aez
+afH
+afE
+afE
+afE
+ajW
+akT
+afE
+aep
abW
abW
abE
@@ -117529,139 +103867,139 @@ aaa
aaa
aaa
aaa
-aYT
-aYT
-aYT
-aYT
-aZm
-aZm
-aYX
-beC
-aZz
-dbV
-aZm
-bdM
-dbZ
-dce
-dcn
-beB
-dcw
-dcR
-bhi
-dcR
-bjk
-dcw
+aXs
+aXs
+aXs
+aXs
+aXL
+aXL
+aXw
+bcX
+aXY
+cNj
+aXL
+bcj
+cNn
+cNs
+cNB
+bcW
+cNJ
+cNV
+bfz
+cNV
+bhz
+cNJ
+bjf
+bkd
bkT
-blU
-bmM
-dft
-bnT
-bnT
-bse
-bnT
-bvh
-bwE
-dft
-dft
-dft
-dft
-dft
-bEe
-aZz
-bec
-bHA
-bIV
-bIW
-bIW
-bNi
-bKA
-bPZ
-bPZ
-bPZ
-bTn
-bPZ
-bVp
-bWf
-bWR
-bXu
-bYe
-bYT
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bYT
-bIW
-ceM
-bHA
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYP
-aYP
-aYT
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-aZn
-aZA
-aZA
-aZA
-aZn
-cgR
-cgN
-cgS
+cPM
+blZ
+blZ
+bqb
+blZ
+bsZ
+but
+cPM
+cPM
+cPM
+cPM
+cPM
+bBE
+aXY
+bcx
+bER
+bGm
+bGn
+bGn
+bKt
+bHQ
+bNf
+bNf
+bNf
+bQr
+bNf
+bSs
+bTh
+bTS
+bUv
+bVf
+bVU
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bVU
+bGn
+cbK
+bER
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXo
+aXo
+aXs
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+aXM
+aXZ
+aXZ
+aXZ
+aXM
+cdM
+cdI
+cdN
aaa
aaa
aaa
-cgN
-ctW
-cuV
-cvV
-cwQ
-cvV
-cyb
-cvW
-cXZ
-cAb
-cAW
-ctW
-ckH
-ckz
-cjV
-cgu
-dmI
-cjU
-cFH
-cjU
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cjU
-cIp
-cjU
-cIN
-cjU
+cdI
+cqb
+cqZ
+crY
+csT
+crY
+cuc
+crZ
+cLm
+cwb
+cwW
+cqb
+chh
+cgZ
+cgw
+cdq
+cTA
+cgv
+cBA
+cgv
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cgv
+cEg
+cgv
+cEE
+cgv
aaa
aaa
aaa
@@ -117731,46 +104069,46 @@ abW
abW
acH
acH
-afS
-ajr
-akp
-akq
-afS
+afE
+aiZ
+ajW
+ajX
+afE
acH
-aez
-cYn
-aCr
-cJx
-cJA
-arS
-arS
-arS
-arS
-arS
-axr
-arS
-arS
-arS
-arS
-arS
-aEA
-aFX
-arS
-aqG
-anC
-aUW
-afV
-aMD
+aep
+cLz
+aBJ
+cFi
+cFl
+aro
+aro
+aro
+aro
+aro
+awK
+aro
+aro
+aro
+aro
+aro
+aDQ
+aFm
+aro
+aqg
+anh
+aTA
+afH
+aLD
+aMz
aND
-aOK
-cZu
-aRn
-aSh
-afV
-akp
-afV
-aVo
-afV
+cLW
+aPU
+aQO
+afH
+ajW
+afH
+aTS
+afH
abW
abW
abE
@@ -117784,143 +104122,143 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aZm
-dbR
-ceG
-beC
-aZm
-aZm
-aZm
-bdN
-beC
-dcf
-bVi
-dcu
-dcw
-dcS
-bhj
-biv
-bjl
-dcw
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXL
+cNf
+cbE
+bcX
+aXL
+aXL
+aXL
+bck
+bcX
+cNt
+bSl
+cNH
+cNJ
+cNW
+bfA
+bgL
+bhA
+cNJ
+bjg
+bke
bkU
-blV
-bmN
-bau
-aZX
-bqE
-aZm
-aZm
-dbV
-aZm
-bmO
-bmO
-bmO
-bmO
-bmO
-bmO
-aZz
-bbE
-bHB
-bIW
-bKC
-bMf
-bNj
-bOy
-bOy
-bOy
-bOy
-bOy
-bOy
-bVq
-bOA
-bWS
-bXv
-bYf
-bYT
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bYT
-bYf
-ceN
-bHA
aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-bjB
-aYP
-aYP
-cgN
-cgN
-cgS
-cgN
-cgS
-cgN
-cgN
-cgN
-cgR
-cgR
-aZo
-aZn
-aZA
-cge
-bec
-aZn
-aZo
-cgN
-cgN
+aYw
+boB
+aXL
+aXL
+cNj
+aXL
+bkV
+bkV
+bkV
+bkV
+bkV
+bkV
+aXY
+bad
+bES
+bGn
+bHS
+bJs
+bKu
+bLG
+bLG
+bLG
+bLG
+bLG
+bLG
+bSt
+bLI
+bTT
+bUw
+bVg
+bVU
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bVU
+bVg
+cbL
+bER
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+bhP
+aXo
+aXo
+cdI
+cdI
+cdN
+cdI
+cdN
+cdI
+cdI
+cdI
+cdM
+cdM
+aXN
+aXM
+aXZ
+cdb
+bcx
+aXM
+aXN
+cdI
+cdI
aaa
aaa
aaa
-cgN
-ctW
-cXW
-cvW
-cXW
-cvW
-cvW
-cvW
-dma
-cAc
-cAX
-ctW
-cBR
-cBR
-cBR
-cBR
-dmJ
-coJ
-dmY
-cjV
-cgR
-cgR
-cgR
-cgN
-chc
-chc
-cjU
-cIo
-cjV
-cIO
-cjU
-cJb
-cJb
+cdI
+cqb
+cLk
+crZ
+cLk
+crZ
+crZ
+crZ
+cTe
+cwc
+cwX
+cqb
+cxQ
+cxQ
+cxQ
+cxQ
+cTB
+cle
+cTI
+cgw
+cdM
+cdM
+cdM
+cdI
+cdU
+cdU
+cgv
+cEf
+cgw
+cEF
+cgv
+cES
+cES
aaa
aaa
aaa
@@ -117988,49 +104326,49 @@ acH
acH
acH
acH
-afV
-ajs
-aym
-alb
-afS
-aez
-afV
-cYo
-arS
-cJy
-cJB
-arS
-asM
-atT
-arS
-awk
-axs
-ayn
-azP
-aBd
-aCe
-aDp
-aEB
-aFY
-arS
-afV
-anC
-aKF
-afS
-aME
-aym
-aym
-daZ
-cZy
-cZu
-afS
-akp
-akp
-cYl
-aez
+afH
+aja
+axF
+akH
+afE
+aep
+afH
+cLA
+aro
+cFj
+cFm
+aro
+asi
+atn
+aro
+avE
+awL
+axG
+azh
+aAv
+aBw
+aCG
+aDR
+aFn
+aro
+afH
+anh
+aJM
+afE
+aLE
+axF
+axF
+cMU
+cLY
+cLW
+afE
+ajW
+ajW
+cLx
+aep
acH
abW
-akG
+akm
abC
abC
abC
@@ -118045,139 +104383,139 @@ abC
abC
abC
abD
-aYP
-aYP
-aZm
-dbS
-beC
-aYX
-aZm
-aZo
-aZm
-dbX
-bVi
-bfr
-bVi
-bhk
-dcw
-dcT
-ddi
-ddC
-dec
-dcw
+aXo
+aXo
+aXL
+cNg
+bcX
+aXw
+aXL
+aXN
+aXL
+cNl
+bSl
+bdL
+bSl
+bfB
+cNJ
+cNX
+cOk
+cOz
+cOO
+cNJ
+bjh
+bkf
+aYa
+aXM
+aXM
+aXM
+aXM
+aXM
+aXM
+aXM
bkV
-blW
-aZB
-aZn
-aZn
-aZn
-aZn
-aZn
-aZn
-aZn
-bmO
-bzy
-bAB
-bBy
-bBz
-bmO
-bka
-bbE
-bHB
-bIX
-bKD
-bMg
-bNk
-bOz
-bQa
-bQa
-bQa
-bQa
-bQa
-bVr
-bWg
-bMj
-bXw
-bYg
-bYT
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bYT
-bYg
-ceO
-bHA
-aYT
-aYT
-aYT
-aYP
-aYP
-bjB
-bjB
-aYP
-aYP
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgR
-cgR
-aZo
-bec
-aZA
-aZA
-cfs
-cge
-aZn
-cgR
-cgR
+bxg
+byi
+bze
+bzf
+bkV
+bio
+bad
+bES
+bGo
+bHT
+bJt
+bKv
+bLH
+bNg
+bNg
+bNg
+bNg
+bNg
+bSu
+bTi
+bJw
+bUx
+bVh
+bVU
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bVU
+bVh
+cbM
+bER
+aXs
+aXs
+aXs
+aXo
+aXo
+bhP
+bhP
+aXo
+aXo
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdM
+cdM
+aXN
+bcx
+aXZ
+aXZ
+ccq
+cdb
+aXM
+cdM
+cdM
aaa
-crd
+cno
aaa
-cgN
-ctW
-cuW
-cvW
-cwR
-cxv
-cyc
-cvW
-dma
-cAd
-cAY
-ctW
-cCF
-cDw
-cEf
-cBR
-dmK
-cjU
-dmZ
-cjU
-cgu
-cgu
-cgu
-chc
-chc
-chc
-cjV
-cIq
-cIC
-cIP
-cIC
-cJc
-cJb
+cdI
+cqb
+cra
+crZ
+csU
+ctx
+cud
+crZ
+cTe
+cwd
+cwY
+cqb
+cyD
+czt
+cAc
+cxQ
+cTC
+cgv
+cTJ
+cgv
+cdq
+cdq
+cdq
+cdU
+cdU
+cdU
+cgw
+cEh
+cEt
+cEG
+cEt
+cET
+cES
aaa
aaa
aaa
@@ -118244,47 +104582,47 @@ acH
acH
acH
acH
-aez
-afV
-afV
-afS
-alc
-afS
-aez
-akp
-cYo
-arS
-cJz
-cJC
-cJD
-asN
-atU
-ava
-awl
-cLV
-ayo
-azQ
-aBe
-azQ
-aDq
-aEC
-aFZ
-arS
-afS
-anC
-aKG
-afS
-aMF
+aep
+afH
+afH
+afE
+akI
+afE
+aep
+ajW
+cLA
+aro
+cFk
+cFn
+cFo
+asj
+ato
+auu
+avF
+cGW
+axH
+azi
+aAw
+azi
+aCH
+aDS
+aFo
+aro
+afE
+anh
+aJN
+afE
+aLF
+aMA
aNE
-aOL
-aPI
-aRo
-daW
-afV
-cZh
-aUQ
-afS
-aez
+aOu
+aPV
+cMR
+afH
+cLS
+aTu
+afE
+aep
acH
abE
abE
@@ -118302,139 +104640,139 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-aZm
-aYX
-aYX
-aYX
-aZo
-aZo
-aZm
-dbY
-dca
-dcg
-bdP
-dcv
-dcw
-bgt
-bhl
-bgt
-ded
-dcw
+aXo
+aXo
+aXL
+aXw
+aXw
+aXw
+aXN
+aXN
+aXL
+cNm
+cNo
+cNu
+bcl
+cNI
+cNJ
+beK
+bfC
+beK
+cOP
+cNJ
+bjh
+bkf
bkV
-blW
-bmO
-bmO
-bpx
-bmO
-bmO
-bmO
-bmO
-bmO
-bmO
-bzy
-bzy
-bBz
-bBz
-bmO
-aZz
-bGo
-bHA
-bIY
-bKE
-bMh
-bNi
-bOA
-bQb
-bQZ
-bSb
-bSb
-bUm
-bKA
-bWh
-bHA
-bXx
-bYg
-bYT
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bYT
-bYg
-ceP
-bHA
-aYT
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-aYP
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgR
-cgR
-aZo
-aZn
-aZn
-aZm
-ceK
-cno
-aZm
-cgR
-cgR
-cqo
-cre
-cqo
-cgN
-ctW
-cuX
-cvX
-cuX
-cxw
-cyd
-cyQ
-czj
-cAe
-cAZ
-ctW
-cCG
-cCJ
-cCG
-cBR
-dmK
-cjV
-cjU
-cjV
-cjV
-cgu
-cjV
-cjV
-cjU
-chb
-cjV
-cIr
-cID
-cIQ
-cIC
-cJd
-cjU
+bkV
+bny
+bkV
+bkV
+bkV
+bkV
+bkV
+bkV
+bxg
+bxg
+bzf
+bzf
+bkV
+aXY
+bDI
+bER
+bGp
+bHU
+bJu
+bKt
+bLI
+bNh
+bOe
+bPf
+bPf
+bRp
+bHQ
+bTj
+bER
+bUy
+bVh
+bVU
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bVU
+bVh
+cbN
+bER
+aXs
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+aXo
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdM
+cdM
+aXN
+aXM
+aXM
+aXL
+cbI
+cjK
+aXL
+cdM
+cdM
+cmC
+cnp
+cmC
+cdI
+cqb
+crb
+csa
+crb
+cty
+cue
+cuQ
+cvj
+cwe
+cwZ
+cqb
+cyE
+cyH
+cyE
+cxQ
+cTC
+cgw
+cgv
+cgw
+cgw
+cdq
+cgw
+cgw
+cgv
+cdT
+cgw
+cEi
+cEu
+cEH
+cEt
+cEU
+cgv
aaa
aaa
aaa
@@ -118478,11 +104816,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
aaa
@@ -118501,49 +104839,49 @@ acH
acH
acH
acH
-afS
-cJq
-aqm
-akq
-ald
-akq
-akq
-akp
-cYo
-arS
-arS
-arS
-arS
-asO
-atU
-ava
-awm
-cLV
-cLV
-azR
-cLV
-cLV
-aDr
-aED
-aGa
-arS
-adZ
-aJA
-afV
-afV
-aMG
-aFe
-afV
-dBI
-aRp
-aLm
-aLm
-aTN
-aTN
-aLn
-aLn
-aLm
-aLm
+afE
+cFb
+apM
+ajX
+akJ
+ajX
+ajX
+ajW
+cLA
+aro
+aro
+aro
+aro
+ask
+ato
+auu
+avG
+cGW
+cGW
+azj
+cGW
+cGW
+aCI
+aDT
+aFp
+aro
+adP
+aIJ
+afH
+afH
+aLG
+aEt
+afH
+cYZ
+aPW
+aKq
+aKq
+aSr
+aSr
+aKr
+aKr
+aKq
+aKq
abE
abE
aaa
@@ -118562,136 +104900,136 @@ aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aZY
-aZY
-bdQ
-aZY
-dch
-bgu
-bgu
-dcw
-dcU
-ddj
-dcW
-dec
-dcw
+aXo
+aXs
+aXs
+aXs
+aYx
+aYx
+bcm
+aYx
+cNv
+beL
+beL
+cNJ
+cNY
+cOl
+cOa
+cOO
+cNJ
+bjh
+bkf
bkV
-blW
-bmO
-bnU
-bpy
-bqF
-bsf
-btA
-bvi
-bwF
-byk
-bzy
-bzy
-bBz
-bBz
-bmO
-aZz
-aZm
-bHA
-bIZ
-bKF
-bMh
-bNi
-bOB
-bQb
-bRa
-bSc
-bSd
-bUn
-bKA
-bWi
-bHA
-bXy
-bYg
-bYT
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bZs
-bYT
-bYg
-ceQ
-bHA
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgR
-cgR
-cjg
-cjg
-cjg
-cmI
-cmI
-cjg
-cjg
-cgN
-cqo
-crf
-cqo
-cgN
-ctX
-ctX
-ctX
-ctX
-ctX
-ctX
-ctX
-czk
-cAe
-cBa
-ctW
-cCH
-cDx
-cCH
-cBR
-dmL
-cFu
-cFI
-dnb
-cFu
-cFu
-dnb
-cFu
-cFI
-cHJ
-cHY
-cIs
-cIE
-cIR
-cIC
-cIC
-cjU
+bma
+bnz
+boC
+bqc
+brx
+bta
+buu
+bvV
+bxg
+bxg
+bzf
+bzf
+bkV
+aXY
+aXL
+bER
+bGq
+bHV
+bJu
+bKt
+bLJ
+bNh
+bOf
+bPg
+bPh
+bRq
+bHQ
+bTk
+bER
+bUz
+bVh
+bVU
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bWt
+bVU
+bVh
+cbO
+bER
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdM
+cdM
+cfI
+cfI
+cfI
+cje
+cje
+cfI
+cfI
+cdI
+cmC
+cnq
+cmC
+cdI
+cqc
+cqc
+cqc
+cqc
+cqc
+cqc
+cqc
+cvk
+cwe
+cxa
+cqb
+cyF
+czu
+cyF
+cxQ
+cTD
+cBo
+cBB
+cTL
+cBo
+cBo
+cTL
+cBo
+cBB
+cDA
+cDP
+cEj
+cEv
+cEI
+cEt
+cEt
+cgv
aaa
aaa
aaa
@@ -118735,11 +105073,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
aaa
@@ -118758,197 +105096,197 @@ acH
acH
acH
acH
-avi
-akq
-afq
-afq
-afq
-akq
-akq
-akq
-aBC
-aCr
-apX
-aoq
-arS
-asP
-atV
-arS
-awn
-axt
-axt
-axt
-axt
-axt
-aDs
-aEE
-aGb
-aHs
-aHs
-aHs
-aHs
-aHs
-aHs
-aHs
-aHs
-aPK
-aRq
-aSi
-aLm
-aTO
-aTO
-aUw
-aMo
-aMn
-aLm
+auC
+ajX
+afc
+afc
+afc
+ajX
+ajX
+ajX
+aAU
+aBJ
+apx
+anT
+aro
+asl
+atp
+aro
+avH
+awM
+awM
+awM
+awM
+awM
+aCJ
+aDU
+aFq
+aGG
+aGG
+aGG
+aGG
+aGG
+aGG
+aGG
+aGG
+aOw
+aPX
+aQP
+aKq
+aSs
+aSs
+aTa
+aLo
+aLn
+aKq
abE
abE
abE
-aXR
-aXR
-aXR
+aWs
+aWs
+aWs
aaa
-aXR
-aXR
-aXR
-aXR
+aWs
+aWs
+aWs
+aWs
aaa
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
-aYP
-aYT
-aYT
-aYP
-aZY
-bbv
-bbW
-aZY
-aZY
-aZY
-dcw
-dcw
-dcV
-ddk
-ddE
-def
-dcw
-bkW
-deT
-bmO
-bnV
-bpz
-bqG
-bqG
-bqG
-bqG
-bwG
-bqI
-bqI
-bqI
-bqI
-bCI
-bmO
-aZz
-bbV
-bHC
-bJa
-bKG
-bMh
-bNi
-bOA
-bQb
-bRa
-bSd
-bSd
-bUn
-bKA
-bKA
-bHC
-bXz
-bYg
-bYT
-bYT
-bYT
-bYT
-cba
-bYT
-bYT
-cba
-bYT
-bYT
-bYT
-bYT
-bYg
-bXz
-bHA
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgR
-cgR
-cjg
-clB
-cmc
-cmJ
-cmd
-cnZ
-cjg
-cgN
-cqo
-crg
-cqo
-cgN
-cta
-doU
-cuY
-cwS
-cLE
-cwS
-ctX
-czl
-cAf
-cBb
-ctW
-cCI
-cDy
-cEg
-cBR
-cFf
-cDv
-dna
-cDv
-cDv
-dnh
-dnh
-dnh
-cDv
-cHK
-cHZ
-cIt
-cIF
-cIS
-cll
-cJe
-cjU
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
+aXo
+aXs
+aXs
+aXo
+aYx
+aZU
+bav
+aYx
+aYx
+aYx
+cNJ
+cNJ
+cNZ
+cOm
+cOA
+cOQ
+cNJ
+bji
+cPr
+bkV
+bmb
+bnA
+boD
+boD
+boD
+boD
+buv
+boF
+boF
+boF
+boF
+bAn
+bkV
+aXY
+bau
+bET
+bGr
+bHW
+bJu
+bKt
+bLI
+bNh
+bOf
+bPh
+bPh
+bRq
+bHQ
+bHQ
+bET
+bUA
+bVh
+bVU
+bVU
+bVU
+bVU
+bXZ
+bVU
+bVU
+bXZ
+bVU
+bVU
+bVU
+bVU
+bVh
+bUA
+bER
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdM
+cdM
+cfI
+chZ
+ciy
+cjf
+ciz
+ckv
+cfI
+cdI
+cmC
+cnr
+cmC
+cdI
+cph
+cUJ
+crc
+csV
+cGK
+csV
+cqc
+cvl
+cwf
+cxb
+cqb
+cyG
+czv
+cAd
+cxQ
+cBa
+czs
+cTK
+czs
+czs
+cTQ
+cTQ
+cTQ
+czs
+cDB
+cDQ
+cEk
+cEw
+cEJ
+chK
+cEV
+cgv
aaa
aaa
aaa
@@ -118992,11 +105330,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
aaa
@@ -119012,52 +105350,52 @@ acH
acH
acH
acH
-afr
-afr
-afr
-afr
-afr
-alf
-afr
-alf
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-arS
-arS
-arS
-arS
-arS
-arS
-arS
-aDt
-aEF
-aGc
-aHs
-aIq
-aJB
-aKH
-aLw
-aMH
-aNG
-aHs
-aPL
-aRr
-aSj
-aLm
-aNp
-aNp
-aNp
-aNp
-aMp
-aLm
+afd
+afd
+afd
+afd
+afd
+akL
+afd
+akL
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aCK
+aDV
+aFr
+aGG
+aHB
+aIK
+aJO
+aKA
+aLH
+aMB
+aGG
+aOx
+aPY
+aQQ
+aKq
+aMl
+aMl
+aMl
+aMl
+aLp
+aKq
abE
abE
abE
@@ -119076,136 +105414,136 @@ abC
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYP
-aZY
-bbw
-dBN
-bbX
-bbX
-dBR
-dcw
-dcJ
-dcW
-ddi
-dcW
-deg
-dcw
+aXo
+aXs
+aXs
+aXo
+aYx
+aZV
+cZe
+baw
+baw
+cZe
+cNJ
+cNN
+cOa
+cOk
+cOa
+cOR
+cNJ
+bjh
+cPr
bkV
-deT
-bmO
-bnV
-bpA
-bqH
-bqH
-bqH
-bvj
-bwH
-byl
-bzz
-bzz
-bBA
-bqI
-bpx
-aZz
-bbg
-bHA
-bJb
-bKF
-bMi
-bNi
-bOA
-bQb
-bRb
-bSe
-bSe
-bUo
-bKA
-bWi
-bHA
-bXz
-bYg
-bYU
-bSf
-bTo
-bSf
-bIW
-cbA
-ccc
-bIW
-bSf
-bSf
-bTo
-bYU
-bYg
-bXz
-bHA
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgN
+bmb
+bnB
+boE
+boE
+boE
+btb
+buw
+bvW
+bxh
+bxh
+bzg
+boF
+bny
+aXY
+aZF
+bER
+bGs
+bHV
+bJv
+bKt
+bLI
+bNh
+bOg
+bPi
+bPi
+bRr
+bHQ
+bTk
+bER
+bUA
+bVh
+bVV
+bPj
+bQs
+bPj
+bGn
+bYz
+bZb
+bGn
+bPj
+bPj
+bQs
+bVV
+bVh
+bUA
+bER
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdI
+cfI
+cia
+ciz
cjg
-clC
-cmd
-cmK
-cmd
-cnZ
-cjg
-cjg
-cqp
-crh
-cqp
-cta
-cta
-cuZ
-cvY
-cwT
-cvY
-cwT
-ctX
-czm
-cAg
-cBc
-ctW
-cCJ
-cDz
-cEh
-cBR
-cFg
-cxT
-ckH
-chb
-cGu
-cjV
-cjU
-chc
-chb
-cgL
-cjV
-cIc
-cIG
-cIT
-cIC
-cJf
-cjU
+ciz
+ckv
+cfI
+cfI
+cmD
+cns
+cmD
+cph
+cph
+crd
+csb
+csW
+csb
+csW
+cqc
+cvm
+cwg
+cxc
+cqb
+cyH
+czw
+cAe
+cxQ
+cBb
+ctU
+chh
+cdT
+cCn
+cgw
+cgv
+cdU
+cdT
+cdG
+cgw
+cDT
+cEx
+cEK
+cEt
+cEW
+cgv
aaa
aaa
aaa
@@ -119249,11 +105587,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
aaa
@@ -119269,54 +105607,54 @@ acH
acH
acH
acH
-afr
-agn
-ahj
-ahU
-aiC
-ajv
-ahV
-alg
-alH
-amm
-anm
-aoa
-alH
-apY
-anm
-arT
-alH
-atW
-anm
-awo
-alH
-ayp
-anm
-aBf
-afr
-aDu
-aEG
-aGd
-aHt
-aIr
-aJC
-aJC
-aLx
-aJC
-aJC
-aHs
-aPM
-aRs
-aSk
-aTl
-aTP
-aNp
-aNp
-aNp
-aWg
-aLm
-aLm
-aLm
+afd
+afZ
+agV
+ahG
+ail
+ajd
+ahH
+akM
+alm
+alR
+amR
+anD
+alm
+apy
+amR
+arp
+alm
+atq
+amR
+avI
+alm
+axI
+amR
+aAx
+afd
+aCL
+aDW
+aFs
+aGH
+aHC
+aIL
+aIL
+aKB
+aIL
+aIL
+aGG
+aOy
+aPZ
+aQR
+aRR
+aSt
+aMl
+aMl
+aMl
+aUK
+aKq
+aKq
+aKq
aaa
aaa
abC
@@ -119335,134 +105673,134 @@ aaa
aaa
aaa
aaa
-aZY
-aZY
-aZY
-dBM
-dBO
-dBP
-bdf
-bdS
-dcw
-dcw
-dcw
-ddm
-bgt
-deh
-dcw
+aYx
+aYx
+aYx
+cZd
+cZe
+cZe
+bbC
+bcn
+cNJ
+cNJ
+cNJ
+cOn
+beK
+cOS
+cNJ
+bjh
+cPr
bkV
-deT
-bmO
-bnW
-bpB
-bqI
-bqI
-bqI
-bqI
-bqI
-bqI
-bqI
-bqI
-bBB
-bqI
-bmO
-aZz
-aZX
-bHA
-bJc
-bKF
-bMh
-bNi
-bOA
-bQb
-bIW
-bSf
-bTo
-bUp
-bKA
-bWi
-bHA
-bXA
-bYh
-bMf
-bMf
-bMf
-bMf
-bMf
-cbB
-ccd
-ccu
-ccu
-ccu
-ccu
-ccu
-cex
-ceR
-bHA
-bHA
-bHA
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cjg
-cjg
-cjg
-clD
-cmd
-cmd
-cmd
-cmd
-cjg
-cjg
-cjg
-cri
-cjg
-cta
-ctY
-cva
-cvY
-cwU
-cvY
-cye
-cta
-czn
-cAh
-cBd
-cBQ
-cCJ
-cDA
-cEi
-cBR
-cFd
-cgL
-cjU
-cjV
-chc
-chc
-chc
-chc
-cjV
-cjV
-cjV
-cIu
-cIG
-cIU
-cll
-cJg
-cJb
+bmc
+bnC
+boF
+boF
+boF
+boF
+boF
+boF
+boF
+boF
+bzh
+boF
+bkV
+aXY
+aYw
+bER
+bGt
+bHV
+bJu
+bKt
+bLI
+bNh
+bGn
+bPj
+bQs
+bRs
+bHQ
+bTk
+bER
+bUB
+bVi
+bJs
+bJs
+bJs
+bJs
+bJs
+bYA
+bZc
+bZt
+bZt
+bZt
+bZt
+bZt
+cbv
+cbP
+bER
+bER
+bER
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cfI
+cfI
+cfI
+cib
+ciz
+ciz
+ciz
+ciz
+cfI
+cfI
+cfI
+cnt
+cfI
+cph
+cqd
+cre
+csb
+csX
+csb
+cuf
+cph
+cvn
+cwh
+cxd
+cxP
+cyH
+czx
+cAf
+cxQ
+cAZ
+cdG
+cgv
+cgw
+cdU
+cdU
+cdU
+cdU
+cgw
+cgw
+cgw
+cEl
+cEx
+cEL
+chK
+cEX
+cES
aaa
aaa
aaa
@@ -119506,11 +105844,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
aaa
@@ -119525,201 +105863,201 @@ acH
acH
acH
acH
-afr
-afr
-ago
-ahk
-ann
-aiD
-ajw
-ajy
-alh
-alH
-amn
-ann
-ann
-alH
-apZ
-ann
-ann
-alH
-atX
-anv
-ann
-alH
-ayq
-ann
-ann
-afr
-aDv
-aEH
-aGe
-aHu
-aIs
-aJD
-aKI
-aIs
-aIs
-aNH
-aHs
-aPL
-aRt
-aSl
-aLm
-aTQ
-aUR
-aUR
-aUR
-aWp
-aWG
-aWU
-aXj
-aXB
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-aYF
-aZZ
-bav
+afd
+afd
+aga
+agW
+amS
+aim
+aje
+ajg
+akN
+alm
+alS
+amS
+amS
+alm
+apz
+amS
+amS
+alm
+atr
+ana
+amS
+alm
+axJ
+amS
+amS
+afd
+aCM
+aDX
+aFt
+aGI
+aHD
+aIM
+aJP
+aHD
+aHD
+aMC
+aGG
+aOx
+aQa
+aQS
+aKq
+aSu
+aTv
+aTv
+aTv
+aUT
+aVj
+aVw
+aVK
+aWc
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aXg
+aYy
+aYU
+aZw
+aZW
+bax
baX
-bbx
-bbY
-bcz
-dBQ
-dBS
-bcz
-bfu
-dcw
-bhl
-bgt
-ded
-dcw
-bkX
-blX
-bmO
-bnX
-bpC
-bqJ
-bsg
-btB
-bvk
-bwI
-bym
-bzA
-bAC
-bBB
-bCJ
-bmO
-bFb
-bGp
-bHA
-bJd
-bKH
-bMh
-bNi
-bOA
-bQb
-bIW
-bSg
-bTp
-bUq
-bIW
-bWk
-bHA
-bXB
-bYi
-bYV
-bZt
-bYi
-cas
-cbb
-cbC
-cce
-bMg
-bMg
-bMg
-cdH
-bMg
-bMg
-ceS
+cZf
+cZf
+baX
+bdM
+cNJ
+bfC
+beK
+cOP
+cNJ
+bjj
+bkg
+bkV
+bmd
+bnD
+boG
+bqd
+bry
+btc
+bux
+bvX
+bxi
+byj
+bzh
+bAo
+bkV
+bCA
+bDJ
+bER
+bGu
+bHX
+bJu
+bKt
+bLI
+bNh
+bGn
+bPk
+bQt
+bRt
+bGn
+bTl
+bER
+bUC
+bVj
+bVW
+bWu
+bVj
+bXr
+bYa
+bYB
+bZd
+bJt
+bJt
+bJt
+caF
+bJt
+bJt
+cbQ
+ccf
+ccv
+ccF
+ccK
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
cfh
-cfx
cfH
-cfM
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-ciC
-cjf
-cjE
-ckm
-ckM
-clE
-clE
-clE
-cnp
-coa
-cjg
-cjg
-cmd
-cmd
-csr
-cta
-ctY
-cva
-cvY
-cvY
-cvY
-cyf
-cta
-czo
-cAi
-cyU
-cBR
-cBR
-cBR
-cBR
-cBR
-cFd
-cgL
-clr
-cjU
-cgu
-chc
-chc
-chc
-chc
-chc
-cjV
-cjU
-cjU
-cIV
-cjV
-cJb
-cJb
+cgf
+cgM
+chl
+cic
+cic
+cic
+cjL
+ckw
+cfI
+cfI
+ciz
+ciz
+coz
+cph
+cqd
+cre
+csb
+csb
+csb
+cug
+cph
+cvo
+cwi
+cuU
+cxQ
+cxQ
+cxQ
+cxQ
+cxQ
+cAZ
+cdG
+chQ
+cgv
+cdq
+cdU
+cdU
+cdU
+cdU
+cdU
+cgw
+cgv
+cgv
+cEM
+cgw
+cES
+cES
aaa
aaa
aaa
@@ -119763,11 +106101,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
aaa
@@ -119782,199 +106120,199 @@ acH
acH
acH
acH
-afr
-afL
-agp
-ahl
-ahW
-aiE
-ajx
-ann
-ali
-alH
-amo
-ann
-aob
-alH
-amo
-ann
-aob
-alH
-amo
-ann
-aob
-alH
-amo
-ann
-aob
-afr
-aDv
-aEI
-aGf
-aHv
-aIt
-aJE
-aKJ
-aLy
-aMI
-aNI
-aHs
-aPL
-aRt
-aSm
-aLm
-aLm
-aLm
-aLm
-aPl
-aLm
-aLm
-aLm
-aLm
-aXC
-aXS
-aXS
-dsX
-aXS
-aXS
-aXS
-dsX
-aXS
-aXS
-dsX
-aXS
-aXS
-aXS
-dsX
-aXS
-aXS
-aZM
-aZY
-aZY
-aZY
-aZY
-aZY
-bcA
-aZY
-aZY
-aZY
-bfv
-dcw
-ddn
-ddG
-dej
-dcw
-bkY
-blY
-bmO
-bmO
-bpD
-bmO
-bmO
-btC
-btC
-btC
-btC
-bmO
-bmO
-bBC
-bmO
-cKS
-bFc
-bFc
-bHA
-bHA
-bKI
-bMj
-bNl
-bOC
-bNl
-bMj
-bHA
-bHA
-bHA
-bHA
-bHA
-bHC
-bHA
-bHA
-bHA
-bHA
-bHA
-bHA
-bOC
-cbD
-ccf
-bMj
-bHA
-bHA
-bHA
-cLh
-bHA
-bHA
-bHA
-bHA
-bHA
-cfN
-cga
-cga
-cga
-dBB
-cga
-cga
-dBB
-cga
-cga
-dBB
-cga
-cga
-cga
-ciD
-cjg
-cjg
-cjg
-ckN
-cjg
-cjg
-cjg
-cjg
-cob
-cjg
-cjg
-cjg
-crj
-cjg
-cta
-cta
-cvb
-cvZ
-cwV
-cxx
-cyg
-cta
-czo
-cAi
-cBe
-cBS
-cCK
-cDB
-czG
-chb
-cFd
-cxT
-ckH
-cjU
-cjV
-cgu
-cgu
-chc
-chc
-chc
-cgN
-cgS
-cjU
-cIW
-cjU
+afd
+afx
+agb
+agX
+ahI
+ain
+ajf
+amS
+akO
+alm
+alT
+amS
+anE
+alm
+alT
+amS
+anE
+alm
+alT
+amS
+anE
+alm
+alT
+amS
+anE
+afd
+aCM
+aDY
+aFu
+aGJ
+aHE
+aIN
+aJQ
+aKC
+aLI
+aMD
+aGG
+aOx
+aQa
+aQT
+aKq
+aKq
+aKq
+aKq
+aOc
+aKq
+aKq
+aKq
+aKq
+aWd
+aWt
+aWt
+cWV
+aWt
+aWt
+aWt
+cWV
+aWt
+aWt
+cWV
+aWt
+aWt
+aWt
+cWV
+aWt
+aWt
+aYl
+aYx
+aYx
+aYx
+aYx
+aYx
+baY
+aYx
+aYx
+aYx
+bdN
+cNJ
+cOo
+cOB
+cOT
+cNJ
+bjk
+bkh
+bkV
+bkV
+bnE
+bkV
+bkV
+brz
+brz
+brz
+brz
+bkV
+bkV
+bzi
+bkV
+cGg
+bCB
+bCB
+bER
+bER
+bHY
+bJw
+bKw
+bLK
+bKw
+bJw
+bER
+bER
+bER
+bER
+bER
+bET
+bER
+bER
+bER
+bER
+bER
+bER
+bLK
+bYC
+bZe
+bJw
+bER
+bER
+bER
+cGt
+bER
+bER
+bER
+bER
+bER
+ccL
+ccX
+ccX
+ccX
+cYT
+ccX
+ccX
+cYT
+ccX
+ccX
+cYT
+ccX
+ccX
+ccX
+cfi
+cfI
+cfI
+cfI
+chm
+cfI
+cfI
+cfI
+cfI
+ckx
+cfI
+cfI
+cfI
+cnu
+cfI
+cph
+cph
+crf
+csc
+csY
+ctz
+cuh
+cph
+cvo
+cwi
+cxe
+cxR
+cyI
+czy
+cvG
+cdT
+cAZ
+ctU
+chh
+cgv
+cgw
+cdq
+cdq
+cdU
+cdU
+cdU
+cdI
+cdN
+cgv
+cEN
+cgv
aaa
aaa
aaa
@@ -120020,11 +106358,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
abC
abE
@@ -120039,197 +106377,197 @@ acH
acH
acH
acH
-afr
-afr
-afr
-afr
-ahX
-aiF
-ajy
-aks
-alj
-alH
-amp
-ano
-aoc
-alH
-amp
-aqV
-aoc
-alH
-amp
-avb
-aoc
-alH
-amp
-azS
-aoc
-afr
-cNw
-aEI
-aGg
-aHs
-aIu
-aJF
-aKK
-aLz
-aMJ
-aNJ
-aOM
-aPL
-aRt
-aSn
-aSU
-aTR
-aSU
-aSU
-aVJ
-aSU
-aVB
-aSU
-aSR
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dth
-dsV
-dsV
-dtx
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-baa
-baw
-baY
-bby
-bbZ
-bcB
-bcB
-bdT
-bcB
-bfw
-dcX
-bhm
-bcB
-bKJ
-bkd
-bkZ
-blZ
-bby
-bcB
-bpE
-bcB
-bsh
-btD
-bcB
-bcB
-bcB
-bzB
-bAD
-bBD
-bcB
-bcB
-bcB
-bcB
-bHD
-cMy
-bKJ
-bcB
-bcB
-bOD
-bcB
-bcB
-bSh
-btD
-bsh
-bdT
-bWl
-bcB
-bcB
-bby
-bcB
-bcB
-bZV
-bcB
-cbc
-cbE
+afd
+afd
+afd
+afd
+ahJ
+aio
+ajg
+ajY
+akP
+alm
+alU
+amT
+anF
+alm
+alU
+aqv
+anF
+alm
+alU
+auv
+anF
+alm
+alU
+azk
+anF
+afd
+cHK
+aDY
+aFv
+aGG
+aHF
+aIO
+aJR
+aKD
+aLJ
+aME
+aNF
+aOx
+aQa
+aQU
+aRA
+aSv
+aRA
+aRA
+aUn
+aRA
+aUf
+aRA
+aRx
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cXb
+cWT
+cWT
+cXi
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+aYz
+aYV
+aZx
+aZX
+bay
+baZ
+baZ
+bco
+baZ
+bdO
+cOb
+bfD
+baZ
+bHZ
+biq
+bjl
+bki
+aZX
+baZ
+bnF
+baZ
+bqe
+brA
+baZ
+baZ
+baZ
+bxj
+byk
+bzj
+baZ
+baZ
+baZ
+baZ
+bEU
+cHl
+bHZ
+baZ
+baZ
+bLL
+baZ
+baZ
+bPl
+brA
+bqe
+bco
+bTm
+baZ
+baZ
+aZX
+baZ
+baZ
+bWV
+baZ
+bYb
+bYD
+bZf
+bZu
+baZ
+bco
+byk
+baZ
+bqe
+cbR
ccg
-ccv
-bcB
-bdT
-bAD
-bcB
-bsh
-ceT
-cfi
-cfy
-baa
-cfO
-cfO
-cfO
-cfO
-cgp
-cfO
-cfO
-cgU
-cfO
-cfO
-cgp
-cfO
-cfO
-cfO
-cfO
-cjh
-cjF
-cjF
-ckO
-clF
-cme
-cme
-cnq
-coc
-cme
-cpw
-cqq
-cme
-css
-ctb
-ctZ
-cvc
-cvc
-cNs
-cvc
-cyh
-cyR
-czp
-cAi
-cyU
-cyU
-cyU
-cDC
-czG
-ckH
-cFh
-cFv
-cgL
-cgL
-cjU
-cgu
-cgu
-chc
-chc
-chc
-cgN
-cgS
-cgS
+ccw
+aYz
+ccM
+ccM
+ccM
+ccM
+cdl
+ccM
+ccM
+cdO
+ccM
+ccM
+cdl
+ccM
+ccM
+ccM
+ccM
+cfJ
+cgg
+cgg
+chn
+cid
+ciA
+ciA
+cjM
+cky
+ciA
+clN
+cmE
+ciA
+coA
+cpi
+cqe
+crg
+crg
+cHH
+crg
+cui
+cuR
+cvp
+cwi
+cuU
+cuU
+cuU
+czz
+cvG
+chh
+cBc
+cBp
+cdG
+cdG
+cgv
+cdq
+cdq
+cdU
+cdU
+cdU
+cdI
+cdN
+cdN
aaa
aaa
aaa
@@ -120297,196 +106635,196 @@ acH
acH
acH
abW
-afr
-agq
-ahm
-aob
-aiG
-ajz
-cJt
-akt
-alI
-amq
-anp
-aod
-apk
-aqa
-anp
-aod
-asQ
-aqa
-anp
-aod
-axu
-ayr
-azT
-aBg
-afr
-aDv
-aEJ
-aGh
-aHs
-aIv
-aJG
-aKK
-aLA
-aMK
-aNK
-aHs
-aPL
-cKd
-aSo
-aRD
-aTS
-aRD
-aRD
-aRD
-aRD
-aRD
-aRD
-aRP
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dBj
-dsV
-dty
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-dsV
-bab
-bax
-baZ
-bbz
-bbz
-bbz
-bbz
-bdU
-bbz
-bfx
-bbz
-bbz
-biw
-dek
-bbz
-bla
-bma
-bmP
-bmP
-bpF
-bqK
-bsi
-btE
-cKM
-bax
-bax
-bax
-bax
-bax
-bax
-bax
-bax
-bGq
-cMw
-bax
-bKK
-bax
-bax
-bax
-bQc
-bax
-bSi
-bTq
-bax
-bHE
-bax
-bax
-bax
-bax
-bax
-bax
-bax
-bGq
-bSi
-bKK
-cch
-ccw
-bax
-bHE
-bax
-bax
-bax
-bTq
-bax
-bax
-bab
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cfO
-cji
-cjG
-cjG
-ckP
-cjG
-cjG
-cjG
-cnr
-cjG
-cjG
-cjG
-cjG
-cjG
-cLt
-ctc
-ctZ
-cvc
-cvc
-cwX
-cvc
-cyi
-cyR
-czq
-cAj
-cyU
-cBT
-cCL
-cDD
-czG
-cER
-ckH
-cFw
-cFv
-chb
-cgu
-cgu
-cgu
-cgu
-cgu
-chc
-cgN
-cgS
-cgS
+afd
+agc
+agY
+anE
+aip
+ajh
+cFe
+ajZ
+aln
+alV
+amU
+anG
+aoL
+apA
+amU
+anG
+asm
+apA
+amU
+anG
+awN
+axK
+azl
+aAy
+afd
+aCM
+aDZ
+aFw
+aGG
+aHG
+aIP
+aJR
+aKE
+aLK
+aMF
+aGG
+aOx
+cFH
+aQV
+aQk
+aSw
+aQk
+aQk
+aQk
+aQk
+aQk
+aQk
+aQw
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cYL
+cWT
+cXj
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+cWT
+aYA
+aYW
+aZy
+aZY
+aZY
+aZY
+aZY
+bcp
+aZY
+bdP
+aZY
+aZY
+bgM
+cOU
+aZY
+bjm
+bkj
+bkW
+bkW
+bnG
+boH
+bqf
+brB
+cGe
+aYW
+aYW
+aYW
+aYW
+aYW
+aYW
+aYW
+aYW
+bDK
+cHj
+aYW
+bIa
+aYW
+aYW
+aYW
+bNi
+aYW
+bPm
+bQu
+aYW
+bEV
+aYW
+aYW
+aYW
+aYW
+aYW
+aYW
+aYW
+bDK
+bPm
+bIa
+bZg
+bZv
+aYW
+bEV
+aYW
+aYW
+aYW
+bQu
+aYW
+aYW
+aYA
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+ccM
+cfK
+cgh
+cgh
+cho
+cgh
+cgh
+cgh
+cjN
+cgh
+cgh
+cgh
+cgh
+cgh
+cGC
+cpj
+cqe
+crg
+crg
+cta
+crg
+cuj
+cuR
+cvq
+cwj
+cuU
+cxS
+cyJ
+czA
+cvG
+cAN
+chh
+cBq
+cBp
+cdT
+cdq
+cdq
+cdq
+cdq
+cdq
+cdU
+cdI
+cdN
+cdN
aaa
aaa
aaa
@@ -120546,204 +106884,204 @@ abE
abW
acH
acH
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-afr
-ahZ
-aiH
-ajA
-aku
-alk
-alJ
-amr
-anq
-aoe
-ajF
-ajF
-ajF
-arU
-ajF
-ajF
-ajF
-aoe
-axv
-ays
-azU
-aBh
-aBj
-aDv
-aEI
-aGi
-aHw
-aHx
-aHx
-aHx
-aHx
-aHx
-aHx
-aHx
-aPL
-aRt
-aSp
-aSN
-aTT
-aSN
-aSN
-aVK
-aSN
-aSN
-aSN
-aSP
-dsV
-dsV
-dsV
-dsY
-dsV
-dsV
-dsV
-dti
-dsV
-dsV
-dtz
-dtG
-dtG
-dtG
-dtQ
-dtG
-dtG
-dtG
-bac
-duk
-bba
-bbA
-bbA
-bbA
-bbA
-bdV
-beE
-bfy
-bbA
-bbA
-bix
-bix
-bbA
-blb
-bmb
-bmQ
-bnY
-bpG
-bqL
-bsj
-btF
-bvl
-bwJ
-byn
-bvl
-bvl
-bvl
-bvl
-bvl
-bvl
-bGr
-cMx
-bvl
-bGr
-bvl
-bvl
-bvl
-bvl
-byn
-bSj
-bmQ
-bUr
-bHF
-bvl
-bvl
-bvl
-bvl
-bvl
-bvl
-bnY
-cat
-cbd
-cbF
-cci
-ccx
-ccL
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+afd
+ahK
+aiq
+aji
+aka
+akQ
+alo
+alW
+amV
+anH
+ajm
+ajm
+ajm
+arq
+ajm
+ajm
+ajm
+anH
+awO
+axL
+azm
+aAz
+aAB
+aCM
+aDY
+aFx
+aGK
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aOx
+aQa
+aQW
+aRu
+aSx
+aRu
+aRu
+aUo
+aRu
+aRu
+aRu
+aRw
+cWT
+cWT
+cWT
+cWW
+cWT
+cWT
+cWT
+cXc
+cWT
+cWT
+cXk
+cXl
+cXl
+cXl
+cXm
+cXl
+cXl
+cXl
+aYB
+cXo
+aZz
+aZZ
+aZZ
+aZZ
+aZZ
+bcq
+bcZ
+bdQ
+aZZ
+aZZ
+bgN
+bgN
+aZZ
+bjn
+bkk
+bkX
+bme
+bnH
+boI
+bqg
+brC
+btd
+buy
+bvY
+btd
+btd
+btd
+btd
+btd
+btd
+bDL
+cHk
+btd
+bDL
+btd
+btd
+btd
+btd
+bvY
+bPn
+bkX
+bRu
+bEW
+btd
+btd
+btd
+btd
+btd
+btd
+bme
+bXs
+bYc
+bYE
+bZh
+bZw
+bZK
+cao
+caG
+aYX
+aYX
+cbS
+aYX
+cKd
+cKf
+ccN
+ccN
+ccN
+ccN
+cYU
+cYW
+cYW
+cdP
+cYW
+cYW
+cYW
+cYW
+cYW
+cYW
+cYW
+cfL
+cKg
+cgN
+cgi
+cie
+cgi
+cjh
+cjO
+ckz
+clk
+clk
+clk
+cnv
+coB
+cpk
+cph
+crh
+csd
+ctb
+ctA
+cuk
+cuS
+cvr
+cwk
+cxf
+cTk
+cTk
+cTk
+cTt
+cTk
+cTk
+cTk
+cAZ
+ctU
+cgw
+cdU
cdq
+cdq
+cdq
+cdU
cdI
-bay
-bay
-ceU
-bay
-cTV
-cTX
-cfQ
-cfQ
-cfQ
-cfQ
-dBC
-dBE
-dBE
-cgW
-dBE
-dBE
-dBE
-dBE
-dBE
-dBE
-dBE
-cjj
-cTY
-ckn
-cjH
-clG
-cjH
-cmL
-cns
-cod
-coR
-coR
-coR
-crk
-cst
-ctd
-cta
-cvd
-cwa
-cwY
-cxy
-cyj
-cyS
-czr
-cAk
-cBf
-dmm
-dmm
-dmm
-dmy
-dmm
-dmm
-dmm
-cFd
-cxT
-cjV
-chc
-cgu
-cgu
-cgu
-chc
-cgN
-cgN
-cgS
+cdI
+cdN
aaa
aaa
aaa
@@ -120803,211 +107141,211 @@ abE
abW
acH
acH
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-doW
-acO
-acO
-afr
-afr
-afr
-afr
-alf
-ams
-anr
-aof
-apl
-aof
-aof
-aof
-aof
-aof
-apl
-aof
-axw
-ayt
-aof
-aof
-aCf
-aDw
-aEK
-aGj
-aHx
-aIw
-aJH
-aKL
-aLB
-aJI
-aNL
-aON
-aPL
-aRt
-aSl
-aTm
-aTm
-aTm
-aTm
-cKf
-aTm
-aLm
-aLm
-aLm
-aXD
-aXD
-aXD
-dsZ
-aXD
-aXD
-aXD
-dsZ
-aXD
-aXD
-dsZ
-aXD
-aXD
-aXD
-dsZ
-aXD
-aXD
-aXD
-aZY
-baz
-bbb
-bbB
-bbB
-bbB
-cKn
-bbB
-bbB
-bbB
-bbB
-bbB
-bbB
-bbB
-bbB
-blc
-bmc
-bmR
-blc
-bbB
-bqM
-bsk
-btG
-bBK
-bvs
-bvs
-bvs
-bvs
-cTv
-cTv
-cTv
-cTv
-cTD
-bvs
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+cUL
+acN
+acN
+afd
+afd
+afd
+afd
+akL
+alX
+amW
+anI
+aoM
+anI
+anI
+anI
+anI
+anI
+aoM
+anI
+awP
+axM
+anI
+anI
+aBx
+aCN
+aEa
+aFy
+aGL
+aHH
+aIQ
+aJS
+aKF
+aIR
+aMG
+aNG
+aOx
+aQa
+aQS
+aRS
+aRS
+aRS
+aRS
+cFJ
+aRS
+aKq
+aKq
+aKq
+aWe
+aWe
+aWe
+cWX
+aWe
+aWe
+aWe
+cWX
+aWe
+aWe
+cWX
+aWe
+aWe
+aWe
+cWX
+aWe
+aWe
+aWe
+aYx
+aYY
+aZA
+baa
+baa
+baa
+cFQ
+baa
+baa
+baa
+baa
+baa
+baa
+baa
+baa
+bjo
+bkl
+bkY
+bjo
+baa
+boJ
+bqh
+brD
+bzq
+btk
+btk
+btk
+ddI
+cJW
+btk
+btk
+btk
+cJZ
+btk
+cKa
+cKa
+cKa
+cKa
+cKa
+cKa
+cKa
+bPo
+bQv
+bRv
+cKa
+cKa
+cKa
+bUD
+cKb
+cGs
+bWb
+bWW
+bXt
+bYd
+bYF
+bWb
+cKc
+bZL
+cKb
+caH
+cKb
+cKb
+cKb
+cKb
+cKe
+aYx
+ccO
+ccY
+ccY
+ccY
+cYV
+ccY
+ccY
+cYV
+ccY
+ccY
+cYV
+ccY
+ccY
+ccY
+cfj
+cfI
+cfI
+cKh
+cKi
+cKi
+cKj
+cKi
+cKi
+ckA
+cKi
+cKi
+cKp
+cnw
+cgh
+cpl
+cqf
+cri
+crg
+csZ
+ctB
+cul
+cuR
+cvq
+cwj
+cxg
+cxU
+cyK
+cTn
+cTl
+cTw
cTE
-cTE
-cTE
-cTE
-cTE
-cTE
-cTE
-bSk
-bTr
-bUs
-cTE
-cTE
-cTE
-bXC
-cTO
-cLg
-bZa
-bZW
-cau
-cbe
-cbG
-bZa
-cTP
-ccM
-cTO
-cdJ
-cTO
-cTO
-cTO
-cTO
-cTW
-aZY
-cfR
-cgb
-cgb
-cgb
-dBD
-cgb
-cgb
-dBD
-cgb
-cgb
-dBD
-cgb
-cgb
-cgb
-ciE
-cjg
-cjg
-cTZ
-cUa
-cUa
-cUc
-cUa
-cUa
-coe
-cUa
-cUa
-cUm
-crl
-cjG
-cte
-cua
-cve
-cvc
-cwW
-cxz
-cyk
-cyR
-czq
-cAj
-cBg
-cBV
-cCM
-dms
-dmp
-dmD
-dmN
-dmm
-cFd
-cCC
-cjU
-cjU
-cjV
-cgu
-cgu
-chc
-cgN
-cgS
-cgS
+cTk
+cAZ
+cyA
+cgv
+cgv
+cgw
+cdq
+cdq
+cdU
+cdI
+cdN
+cdN
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -121060,59 +107398,59 @@ abE
abW
acH
acH
-acO
-acO
-adF
-aea
-aeB
-aeB
-aeB
-aeB
-aeB
-agr
-doX
-doZ
-aiI
-akw
-akv
-ajB
-afr
-amt
-anr
-aof
-aog
-aog
-aqW
-arV
-asR
-aog
-aog
-aof
-axx
-ayt
-aof
-aof
-aBm
-aDv
-aEI
-aGj
-aHx
-aIx
-aJI
-aJI
-aJI
-aJI
-aNM
-aOO
-aPL
-aRt
-aSq
-aTn
-aTU
-aUS
-aVp
-aVL
-aWq
+acN
+acN
+ady
+adQ
+aeq
+aeq
+aeq
+aeq
+aeq
+agd
+cUM
+cUN
+air
+akc
+akb
+ajj
+afd
+alY
+amW
+anI
+anJ
+anJ
+aqw
+arr
+asn
+anJ
+anJ
+anI
+awQ
+axM
+anI
+anI
+aAE
+aCM
+aDY
+aFy
+aGL
+aHI
+aIR
+aIR
+aIR
+aIR
+aMH
+aNH
+aOx
+aQa
+aQX
+aRT
+aSy
+aTw
+aTT
+aUp
+aUU
abE
abE
aaa
@@ -121133,138 +107471,138 @@ aaa
aaa
aaa
aaa
-aYP
-aZn
-aZy
-bbc
-bbB
-bca
-bcC
-bdg
-bbB
-beF
-bfz
-bcD
-bhn
-biy
-bjm
-bke
-bjp
-bmd
-bmS
-bnZ
-blc
-bqN
-bsl
-btH
-cTa
-bvn
-byo
-bvm
-bAE
-bBE
-bBE
-bBE
-bBE
-bGs
-bvm
-bJf
-bKL
-bMk
-bJe
-bOE
-bQd
-bRc
-bSl
-bTs
-bUt
-bVs
-bVs
-bJe
-bXD
-bYj
-bYm
-bZu
-bZX
-bZD
-cbf
-cbH
-ccj
-ccy
-ccN
-aZY
-cdK
-ceb
-ceb
-ceb
-cfj
-cfz
-cfj
-cfS
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-ciF
-cjk
-cjk
-cko
-ckQ
-clH
-cmf
-cmM
-cnt
-cof
-cjg
-cgN
-cUn
-crm
-cjG
-ctf
-cub
-cvf
-cwb
-cwZ
-cvc
-cyl
-cta
-czs
-cAl
-cBh
-cBW
-cCN
-dmt
-dmA
-dmE
-cFi
-dmm
-cFJ
-dnc
-coJ
-clV
-cjV
-chc
-chc
-chc
-cgN
-cgN
-cgS
+aXo
+aXM
+aXX
+aZB
+baa
+baz
+bba
+bbD
+baa
+bda
+bdR
+bbb
+bfE
+bgO
+bhB
+bir
+bhE
+bkm
+bkZ
+bmf
+bjo
+boK
+bqi
+brE
+cJJ
+btf
+bvZ
+bwe
+byl
+bwc
+bte
+bzk
+dew
+bDM
+bte
+bGw
+bIb
+bJx
+bGv
+bLM
+bNj
+bOh
+bPp
+bQw
+bRw
+bSv
+bSv
+bGv
+bUE
+bVk
+bVn
+bWv
+bWX
+bWD
+bYe
+bYG
+bZi
+bZx
+bZM
+aYx
+caI
+caZ
+caZ
+caZ
+cch
+ccx
+cch
+ccP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cfk
+cfM
+cfM
+cgO
+chp
+cif
+ciB
+cji
+cjP
+ckB
+cfI
+cdI
+cKq
+cnx
+cgh
+cpm
+cqg
+crj
+cse
+ctc
+crg
+cum
+cph
+cvs
+cwl
+cxh
+cxV
+cyL
+cTo
+cTu
+cTx
+cBd
+cTk
+cBC
+cTM
+cle
+cit
+cgw
+cdU
+cdU
+cdU
+cdI
+cdI
+cdN
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -121317,59 +107655,59 @@ abW
abW
abW
abW
-acO
-acO
-dsd
-aec
-aeb
-aeC
-aeY
-afs
-afM
-ags
-doX
-dpa
-aiJ
-akw
-akw
-ajB
-afr
-ams
-anr
-cJu
-aog
-aqb
-aqX
-arW
-asS
-atY
-aog
-cJv
-axw
-ayt
-cZr
-aBi
-afr
-aDu
-aEL
-aGk
-aHy
-aIy
-aJJ
-aJJ
-aLC
-aMM
-aNN
-aOP
-aPL
-aRu
-aSr
-aTo
-aTV
-aUT
-aVq
-aVM
-aWq
+acN
+acN
+cWm
+adS
+adR
+aer
+aeK
+afe
+afy
+age
+cUM
+cUO
+ais
+akc
+akc
+ajj
+afd
+alX
+amW
+cFf
+anJ
+apB
+aqx
+ars
+aso
+ats
+anJ
+cFg
+awP
+axM
+cLV
+aAA
+afd
+aCL
+aEb
+aFz
+aGM
+aHJ
+aIS
+aIS
+aKG
+aLL
+aMI
+aNI
+aOx
+aQb
+aQY
+aRU
+aSz
+aTx
+aTU
+aUq
+aUU
abE
aaa
aaa
@@ -121390,138 +107728,138 @@ aaa
aaa
aaa
aaa
-aYP
-aZn
-aZA
-baB
-bbB
-bcb
-bcD
-bdh
-bbB
-beG
-bfA
-bgv
-bho
-biz
-bjn
-bkf
-bld
-bme
-bmT
-boa
-bpH
-bqO
-bsm
-btI
-cTb
-bvo
-bvo
-bzC
-bAF
-bBF
-cMt
-bBF
-bFd
-bGt
-bvm
-bJg
-bKM
-bMl
-bNm
-bKO
-bKO
-bRd
-bSl
-bTs
-bUu
-bVt
-bWm
-bJe
-bJe
-bJe
-bYm
-bZv
-bZY
-bZD
-cbf
-cbI
-cck
-ccy
-bYm
-aZY
-bbX
-bbX
-bbX
-ceV
-aZY
-aZY
-aZY
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cjg
-cjg
-cjg
-cmg
-cmN
-cnu
-cog
-cjg
-cgN
-cUn
-crn
-cjG
-ctf
-cta
-cvg
-cwc
-cxa
-cxB
-cym
-cyT
-czt
-cAm
-cBi
-cBX
-dmp
-dmu
-cEj
-dmF
-cFj
-dmm
-chc
-dmK
-cjU
-cjV
-cjV
-cjU
-chc
-cjV
-chc
-cgN
-cgN
+aXo
+aXM
+aXZ
+aZa
+baa
+baA
+bbb
+bbE
+baa
+bdb
+bdS
+beM
+bfF
+bgP
+bhC
+bis
+bjp
+bkn
+bla
+bmg
+bnI
+boL
+bqj
+brF
+cJK
+btg
+btg
+bxk
+bym
+bzl
+bte
+dem
+bwf
+bDN
+bte
+bGx
+bIc
+bJy
+bKx
+bIe
+bIe
+bOi
+bPp
+bQw
+bRx
+bSw
+bTn
+bGv
+bGv
+bGv
+bVn
+bWw
+bWY
+bWD
+bYe
+bYH
+bZj
+bZx
+bVn
+aYx
+baw
+baw
+baw
+cbT
+aYx
+aYx
+aYx
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cfI
+cfI
+cfI
+ciC
+cjj
+cjQ
+ckC
+cfI
+cdI
+cKq
+cny
+cgh
+cpm
+cph
+crk
+csf
+ctd
+ctC
+cun
+cuT
+cvt
+cwm
+cxi
+cxW
+cTl
+cTp
+cAg
+cTy
+cBe
+cTk
+cdU
+cTC
+cgv
+cgw
+cgw
+cgv
+cdU
+cgw
+cdU
+cdI
+cdI
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -121565,7 +107903,7 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
abE
@@ -121574,59 +107912,59 @@ abW
abW
abW
abW
-acO
-acO
-dse
-aec
-aeD
-aeD
-aeD
-aeD
-aeD
-agt
-acO
-acO
-afr
-ajD
-akx
-akx
-akx
-amu
-anr
-aoh
-apm
-apo
-asT
-arX
-cLR
-atZ
-avc
-aoh
-axw
-ayt
-afr
-aBj
-afr
-aDv
-aEM
-aGl
-aHz
-aIz
-aJK
-aKM
-aLD
-cMj
-aNO
-aHx
-aPN
-aRv
-aSs
-aTp
-aTW
+acN
+acN
+cWn
+adS
+aes
+aes
+aes
+aes
+aes
+agf
+acN
+acN
+afd
+ajk
+akd
+akd
+akd
+alZ
+amW
+anK
+aoN
+aoP
+asp
+art
+cGS
+att
+auw
+anK
+awP
+axM
+afd
+aAB
+afd
+aCM
+aEc
+aFA
+aGN
+aHK
+aIT
+aJT
+aKH
+cGZ
+aMJ
+aGL
+aOz
+aQc
+aQZ
+aRV
+aSA
+aTy
+aTV
+aUr
aUU
-aVr
-aVN
-aWq
abE
aaa
aaa
@@ -121646,139 +107984,139 @@ aaa
aaa
aaa
aaa
-aYP
-aYT
-aZn
-aZz
-bbd
-bbB
-bcc
-bcE
-bdi
-bdW
-beH
-bfB
-bgw
-bhp
-biA
-bjo
-bkg
-ble
-bmf
-bmU
-bob
-bpI
-bqP
-bsn
-btJ
-cTc
-bvp
-bvp
-bzD
-bvp
-bvp
-bCK
-bEf
-bFe
-bGu
-bvm
-bJh
-bKN
-bMm
-bJe
-dBV
-bQe
-bMn
-bSl
-bTs
-bUu
-bVt
-bVt
-bWT
-bXE
-bYk
-bYm
-bYX
-bYX
-bZD
-cbf
-cbJ
-bYX
-ccz
-ccO
-aZY
-bbX
-bbX
-bbX
-bbw
-aZY
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgN
-cgN
-cjg
-cmh
-cmO
-cnv
-coh
-cjg
-cgN
-cUn
-cro
-csu
-ctg
-cta
-cvh
-cwd
-cxb
-cxC
-cyn
-cta
-czu
-cAn
-cBj
-cBY
-dnL
-cCP
-dmB
-cES
-cFk
-dmm
-chc
-cFd
-cll
-cll
-cll
-cll
-cll
-dnu
-chc
-cgN
-cgN
+aXo
+aXs
+aXM
+aXY
+aZC
+baa
+baB
+bbc
+bbF
+bcr
+bdc
+bdT
+beN
+bfG
+bgQ
+bhD
+bit
+bjq
+bko
+blb
+bmh
+bnJ
+boM
+bqk
+brG
+cJL
+bth
+bth
+bxl
+ddJ
+ddX
+bte
+bBF
+cHi
+bDU
+bte
+bGy
+bId
+bJz
+bGv
+cZi
+bNk
+bJA
+bPp
+bQw
+bRx
+bSw
+bSw
+bTU
+bUF
+bVl
+bVn
+bVY
+bVY
+bWD
+bYe
+bYI
+bVY
+bZy
+bZN
+aYx
+baw
+baw
+baw
+aZV
+aYx
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdI
+cdI
+cfI
+ciD
+cjk
+cjR
+ckD
+cfI
+cdI
+cKq
+cnz
+coC
+cpn
+cph
+crl
+csg
+cte
+ctD
+cuo
+cph
+cvu
+cwn
+cxj
+cxX
+cUk
+cyN
+cTv
+cAO
+cBf
+cTk
+cdU
+cAZ
+chK
+chK
+chK
+chK
+chK
+cTX
+cdU
+cdI
+cdI
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -121822,7 +108160,7 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
abE
@@ -121831,59 +108169,59 @@ abE
abW
abW
abW
-acO
-acO
-adI
-dsf
-aed
-aeE
-aeZ
-aft
-afN
-agu
-aho
-aic
-aiK
-ajE
-aky
-aky
-aky
-amv
-ans
-aoi
-apn
-aqc
-aqZ
-arY
-aqc
-aua
-avd
-awp
-axy
-ayu
-azV
-aBk
-azV
-aDx
-aEN
-aGm
-aHA
-aIA
-aJL
-aKN
-aLE
-aMN
-aNP
-aHx
-aPO
-aRw
-aSl
-aTm
-aTm
-aTm
-aVs
-aTm
-aTm
+acN
+acN
+adz
+cWo
+adT
+aet
+aeL
+aff
+afz
+agg
+aha
+ahN
+ait
+ajl
+ake
+ake
+ake
+ama
+amX
+anL
+aoO
+apC
+aqy
+aru
+apC
+atu
+aux
+avJ
+awR
+axN
+azn
+aAC
+azn
+aCO
+aEd
+aFB
+aGO
+aHL
+aIU
+aJU
+aKI
+aLM
+aMK
+aGL
+aOA
+aQd
+aQS
+aRS
+aRS
+aRS
+aTW
+aRS
+aRS
abE
abC
abC
@@ -121901,141 +108239,141 @@ abC
abC
abC
abC
-aZc
-aYP
-aYP
-aZn
-aZm
-baA
-bbe
-bbC
-bcd
-bcF
-bdj
-bbB
-beI
-bfC
-bgx
-bhq
-biB
-bjp
-bkh
-blf
-bmg
-bmV
-bjp
+aXB
+aXo
+aXo
+aXM
+aXL
+aYZ
+aZD
+bab
+baC
+bbd
+bbG
+baa
+bdd
+bdU
+beO
+bfH
+bgR
+bhE
+biu
+bjr
+bkp
blc
-bqQ
-bax
-btK
-cTd
-bvq
-bvq
-bvm
-bAG
-bBG
-bCL
-bBG
-bFf
+bhE
+bjo
+boN
+aYW
+brI
+bzr
+bti
+ddt
+bte
+byn
+bzm
+bte
+bBF
+bCC
+bDO
+bte
bGv
-bvm
-bJe
-bJe
-bJe
-bJe
-bOF
-bKO
-bRe
-bSl
-bTs
-bUv
-bVu
-bVu
-bJe
-bXF
-bYl
-bYm
-bZw
-bZX
-bZD
-cbf
-cbK
-bZX
-ccy
-ccP
-aZY
-cdL
-cec
-cec
-bbw
-aZY
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgN
-cgN
-cjg
-cjg
-cjg
-cjg
-cjg
-cjg
-cgN
-cUn
-crp
-cjG
-cth
-cLw
-cvi
-cwe
-cvY
-cxD
-cyo
-cta
-czv
-cAj
-cBk
-dmm
-dmq
-cDF
-cEk
-dmG
-dmO
-dmm
-chc
-dnd
-dnf
-dnf
-cGv
-cHi
-dns
-cHM
-cjV
-cgN
-cgN
+bGv
+bGv
+bGv
+bLN
+bIe
+bOj
+bPp
+bQw
+bRy
+bSx
+bSx
+bGv
+bUG
+bVm
+bVn
+bWx
+bWX
+bWD
+bYe
+bYJ
+bWX
+bZx
+bZO
+aYx
+caJ
+cba
+cba
+aZV
+aYx
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdI
+cdI
+cfI
+cfI
+cfI
+cfI
+cfI
+cfI
+cdI
+cKq
+cnA
+cgh
+cpo
+cGF
+crm
+csh
+csb
+ctE
+cup
+cph
+cvv
+cwj
+cxk
+cTk
+cTm
+czC
+cAh
+cTz
+cTF
+cTk
+cdU
+cTN
+cTO
+cTO
+cCo
+cCZ
+cTV
+cDD
+cgw
+cdI
+cdI
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aab
@@ -122079,7 +108417,7 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
abE
@@ -122088,54 +108426,54 @@ abE
abW
abW
abW
-acO
-acO
-adJ
-aee
-aeF
-aeD
-afa
-afu
-afO
-agv
-ahp
-aid
-aiL
-ajF
-ajF
-ajF
-ajF
-amw
-ans
-aoj
-apo
-aqd
-ara
-arZ
-ara
-ara
-ara
-awq
-axz
-ayv
-azW
-aBl
-azW
-aDy
-aEO
-aGj
-cJP
-aHx
-aHx
-aHx
-aHx
-aHx
-aHx
-aHx
-aPP
-aRt
-aSl
-aLm
+acN
+acN
+adA
+adU
+aeu
+aes
+aeM
+afg
+afA
+agh
+ahb
+ahO
+aiu
+ajm
+ajm
+ajm
+ajm
+amb
+amX
+anM
+aoP
+apD
+aqz
+arv
+aqz
+aqz
+aqz
+avK
+awS
+axO
+azo
+aAD
+azo
+aCP
+aEe
+aFy
+cFw
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aGL
+aOB
+aQa
+aQS
+aKq
abW
abW
abW
@@ -122158,141 +108496,141 @@ aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aZn
-bad
-baB
-aZn
-bbB
-bce
-bcG
-bdk
-bbB
-beJ
-bcD
-bgx
-bhq
-biB
-bjp
-bki
-blg
-bmh
-bmS
-boc
-bpJ
-bqR
-bax
-btL
-bBL
-bwK
-byp
-bvm
-bAH
-bBG
-bCM
-bBG
-bFf
-bGw
-bBK
-bJi
-bKO
-bKO
-bKO
-bKO
-bQf
-bRf
-bSl
-bTs
-bUu
-bVt
-bWm
-bJe
-bJe
-bJe
-bYm
-bZx
-bZY
-bZD
-cbf
-cbI
-bZY
-ccA
-ccQ
-aZY
-aZY
-aZY
-aZY
-aZY
-aZY
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cUr
-crl
-cjG
-cti
-cta
-cvj
-cwf
-cxc
-cxE
-cyp
-cta
-czw
-cAo
-cBl
-cWl
-cWn
-cWn
-cWn
-cWq
-dmP
-dmm
-chc
-chc
-chc
-cjX
-cjV
-cjV
-dmK
-cIc
-cjV
-chc
-cgN
+aXo
+aXs
+aXs
+aXM
+aYC
+aZa
+aXM
+baa
+baD
+bbe
+bbH
+baa
+bde
+bbb
+beO
+bfH
+bgR
+bhE
+biv
+bjs
+bkq
+bkZ
+bmi
+bnK
+boO
+aYW
+brH
+bzr
+buz
+bwa
+ddA
+byo
+ddY
+bte
+den
+dex
+bte
+bzq
+bGz
+bIe
+bIe
+bIe
+bIe
+bNl
+bOk
+bPp
+bQw
+bRx
+bSw
+bTn
+bGv
+bGv
+bGv
+bVn
+bWy
+bWY
+bWD
+bYe
+bYH
+bWY
+bZz
+bZP
+aYx
+aYx
+aYx
+aYx
+aYx
+aYx
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cKr
+cnw
+cgh
+cpp
+cph
+crn
+csi
+ctf
+ctF
+cuq
+cph
+cvw
+cwo
+cxl
+cKL
+cKN
+cKN
+cKN
+cKO
+cTG
+cTk
+cdU
+cdU
+cdU
+cgy
+cgw
+cgw
+cTC
+cDT
+cgw
+cdU
+cdI
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aad
aad
@@ -122336,7 +108674,7 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
abE
@@ -122345,54 +108683,54 @@ abE
abW
abW
abW
-acO
-acO
-adK
-aef
-aef
-aee
-afb
-aee
-afP
-agw
-acO
-acO
-afr
-ajG
-akz
-akz
-akz
-amx
-anr
-aok
-app
-aqe
-cLQ
-arX
-arb
-apo
-ave
-awr
-axA
-ayw
-afr
-aBm
-afr
-aDz
-aEI
-aGf
-cNC
-aIB
-cNJ
-cNP
-cNV
-cJT
-cJX
-cKa
-cKb
-aRt
-aSl
-aLm
+acN
+acN
+adB
+adV
+adV
+adU
+aeN
+adU
+afB
+agi
+acN
+acN
+afd
+ajn
+akf
+akf
+akf
+amc
+amW
+anN
+aoQ
+apE
+cGR
+art
+aqA
+aoP
+auy
+avL
+awT
+axP
+afd
+aAE
+afd
+aCQ
+aDY
+aFu
+cHO
+aHM
+cHV
+cHY
+cIe
+cFy
+cFC
+cFE
+cFF
+aQa
+aQS
+aKq
abW
abW
abW
@@ -122415,134 +108753,134 @@ aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aZn
-aZA
-baB
-aZn
-bbB
-bcf
-bcG
-bcD
-bbB
-beK
-bcF
-bgx
-bhq
-biB
-bjp
-bkj
-bjp
-bmi
-bmS
-bjp
-bbB
-bqS
-bax
-btM
-bBL
-bwL
-byq
-bzE
-bAI
-byr
-bCN
-bAI
-bFg
-doS
-bBL
-bJj
-bKP
-bMn
-bMn
-bMn
-bQg
-bQg
-bSl
-bTs
-bUu
-bVt
-bVt
-bWT
-bXE
-cMG
-bYm
+aXo
+aXs
+aXs
+aXM
+aXZ
+aZa
+aXM
+baa
+baE
+bbe
+bbb
+baa
+bdf
+bbd
+beO
+bfH
+bgR
+bhE
+biw
+bhE
+bkr
+bkZ
+bhE
+baa
+boP
+aYW
+brI
+bzr
+buA
+bwb
+bxm
+ddK
+ddZ
+bAp
+deo
+bCD
+deD
+bzr
+bGA
+bIf
+bJA
+bJA
+bJA
+bNm
+bNm
+bPp
+bQw
+bRx
+bSw
+bSw
+bTU
+bUF
+cHt
+bVn
+bWA
+cHv
+bWD
+bYe
+bYK
+cHv
bZA
-cML
-bZD
-cbf
-cbL
-cML
-ccB
-ccR
-cdr
-cdr
-cdr
-cdr
-cdr
-cdr
-cdr
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgS
-cgN
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
+bZQ
+cap
+cap
+cap
+cap
+cap
+cap
+cap
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdN
+cdI
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cKh
+cKt
+cKu
+cpq
+cKC
+cKJ
+cKJ
+cKJ
+cKJ
+cur
+cKJ
+cvx
+cwp
+cKK
+cKM
+cyP
+czD
+cAi
+cKP
+cAP
+cAP
+cAP
+cAP
+cAP
+cAP
+cAP
+cAP
+cTC
+chK
cTZ
-cUu
-cUw
-ctj
-cVw
-cWf
-cWf
-cWf
-cWf
-cyq
-cWf
-czx
-cAp
-cWk
-cWm
-cCR
-cDG
-cEl
-cWr
-cET
-cET
-cET
-cET
-cET
-cET
-cET
-cET
-dmK
-cll
-dnw
-chc
-cgN
+cdU
+cdI
aaa
aaa
aaa
@@ -122602,54 +108940,54 @@ abE
abW
abW
abW
-acO
-acO
-adM
-aef
-aef
-aef
-aef
-aef
-afQ
-adM
-ahn
-aib
-aiM
-ajH
-akw
-akw
-afr
-amy
-anr
-cJv
-aog
-aqf
-arc
-arX
-asU
-aub
-aog
-cJu
-axw
-ayt
-cZr
-aBi
-afr
-aDv
-cNx
-aGn
-cND
-aIC
-cNK
-cNQ
-cNQ
-cJU
-cNQ
-cOm
-cKc
-aRt
-aSl
-aLm
+acN
+acN
+adC
+adV
+adV
+adV
+adV
+adV
+afC
+adC
+agZ
+ahM
+aiv
+ajo
+akc
+akc
+afd
+amd
+amW
+cFg
+anJ
+apF
+aqB
+art
+asq
+atv
+anJ
+cFf
+awP
+axM
+cLV
+aAA
+afd
+aCM
+cHL
+aFC
+cHP
+aHN
+cHW
+cHZ
+cHZ
+cFz
+cHZ
+cIu
+cFG
+aQa
+aQS
+aKq
abW
acH
acH
@@ -122672,134 +109010,134 @@ aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aZn
-aZA
-baC
+aXo
+aXs
+aXs
+aXM
+aXZ
+aZb
+aZE
+bac
+baF
bbf
-bbD
-bcg
-bcH
-bdl
-bdX
-beL
-bfE
-bbB
-bhr
-biC
-bjq
-bkk
-bjq
+bbI
+bcs
+bdg
+bdV
+baa
+bfI
+bgS
+bhF
+bix
+bhF
+bks
+bld
bmj
-bmW
-bod
-bpK
-bqT
-bso
-btM
-bvr
-bwM
-byr
-byr
-bwM
-byr
-bCO
-bwM
-bFg
-byr
-bBL
-bJk
-bKO
-bMo
-bNn
-bNn
-bNn
-bNn
-bSm
-bTt
-bUw
-bVv
-bVv
-bJe
-bXF
-bYl
-bYm
-bZz
-bZZ
-cav
-cbg
-cbM
-ccl
-ccC
-ccS
-cds
-cdM
-ced
-ccW
-ceW
-cfk
-cdr
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-crl
-cjG
-ctk
-cVx
-cvk
-cwg
-cxd
-cuc
-cyr
-cwg
-czy
-cAq
-cwh
-cCa
-cCS
-cDH
-cEm
-cWs
-cET
-cFl
-cFl
-cFZ
-cFl
-cFl
-cGV
-cET
-dmK
-cll
-cHM
-chc
-cgN
+bnL
+boQ
+bql
+brI
+bzr
+ddn
+bwc
+ddB
+ddL
+dea
+bAq
+dep
+dey
+deE
+bzr
+bGB
+bIe
+bJB
+bKy
+bKy
+bKy
+bKy
+bPq
+bQx
+bRz
+bSy
+bSy
+bGv
+bUG
+bVm
+bVn
+bWz
+bWZ
+bXu
+bYf
+bYL
+bZk
+bZB
+bZR
+caq
+caK
+cbb
+bZV
+cbU
+cci
+cap
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+cnw
+cgh
+cpr
+cKD
+cro
+csj
+ctg
+cqh
+cus
+csj
+cvy
+cwq
+csk
+cxZ
+cyQ
+czE
+cAj
+cKQ
+cAP
+cBg
+cBg
+cBS
+cBg
+cBg
+cCM
+cAP
+cTC
+chK
+cDD
+cdU
+cdI
aaa
aaa
aaa
@@ -122859,54 +109197,54 @@ abE
abW
abW
abW
-acO
-acO
-adM
-aeg
-aeG
-dsg
-afc
-afv
-aeG
-agx
-acO
-aia
-aiN
-ajB
-akA
-ajB
-afr
-amz
-anr
-aof
-aog
-aog
-aqW
-asa
-asR
-aog
-aog
-aws
-axw
-ayt
-aof
-aof
-aBj
-aDu
-cNy
-cNB
-cNE
-aID
-cNH
-aKO
-cNX
-cOc
-cOg
-cOn
-cOt
-aRt
-aSl
-aLm
+acN
+acN
+adC
+adW
+aev
+cWp
+aeO
+afh
+aev
+agj
+acN
+ahL
+aiw
+ajj
+akg
+ajj
+afd
+ame
+amW
+anI
+anJ
+anJ
+aqw
+arw
+asn
+anJ
+anJ
+avM
+awP
+axM
+anI
+anI
+aAB
+aCL
+cHM
+cHN
+cHQ
+aHO
+cHT
+aJV
+cIf
+cIk
+cIo
+cIv
+cIA
+aQa
+aQS
+aKq
abW
acH
acH
@@ -122929,134 +109267,134 @@ aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYX
-aZL
-baD
-aZn
-bbB
-bch
-bch
-bch
-bch
-bch
-bfF
-bgy
-bhs
-biD
-blh
-bkl
-blh
+aXo
+aXo
+aXo
+aXw
+aYk
+aZc
+aXM
+baa
+baG
+baG
+baG
+baG
+baG
+bdW
+beP
+bfJ
+bgT
+bjt
+biy
+bjt
+bkt
+bhE
bmk
-bjp
-boe
-bbB
-bqU
-bax
-btM
-bvr
-bwM
-bys
-byr
-bwM
-byr
-bCN
-bwM
-bFg
-byr
-bBL
-bJl
-bKQ
-bMp
-bNo
-bOG
-bOG
-bOG
-bSn
-bTu
-bUx
-bVt
-bWm
-bJe
-bJe
-bJe
-bYm
-bZA
-bZA
-bZD
-bZD
-cbL
-bZA
-ccD
-ccT
-cdt
+baa
+boR
+aYW
+brI
+btj
+ddo
+bwc
+ddC
+ddM
+deb
+dej
+deq
+dez
+cUI
+bzr
+bGC
+bIg
+bJC
+bKz
+bLO
+bLO
+bLO
+bPr
+bQy
+bRA
+bSw
+bTn
+bGv
+bGv
+bGv
+bVn
+bWA
+bWA
+bWD
+bWD
+bYK
+bWA
+bZC
+bZS
+car
+caL
+cbc
+car
+cbV
+ccj
+cap
+cap
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
cdN
-cee
-cdt
-ceX
+cdN
+cdN
+cdN
+cdN
+ceu
+ceL
cfl
-cdr
-cdr
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cif
-ciG
-ciG
-ciG
-ciG
-ciG
-ciG
-ciG
-cmP
-chM
-coi
-coS
-cpx
-chM
-crq
-csv
-ctl
-cud
-cvl
-cwh
-cxe
-cxF
-cys
-cwh
-czz
-cAr
-cyU
-cBZ
-cCT
-cDI
-cEn
-cET
-cET
-cFl
-cFl
-cGa
-cFl
-cFl
-cFl
-cET
-dmK
-cCC
-cjV
-chc
-cgN
+cfl
+cfl
+cfl
+cfl
+cfl
+cfl
+cjl
+ceu
+ckE
+cll
+clO
+ceu
+cnB
+coD
+cps
+cqi
+crp
+csk
+cth
+ctG
+cut
+csk
+cvz
+cwr
+cuU
+cxY
+cyR
+czF
+cAk
+cAP
+cAP
+cBg
+cBg
+cBT
+cBg
+cBg
+cBg
+cAP
+cTC
+cyA
+cgw
+cdU
+cdI
aaa
aaa
aaa
@@ -123116,63 +109454,63 @@ abE
abW
abW
abW
-acO
-acO
-doV
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-afr
-afr
-afr
-afr
-alf
-amy
-anr
-aof
-apq
-aof
-aof
-aof
-aof
-aof
-apq
-aof
-axw
-ayt
-aof
-aof
-aCf
-aDw
-aEK
-aGo
-aES
-aIF
-aES
-aES
-aES
-aES
-aNQ
-cOo
-aPR
-cOA
-aSz
-cOE
-adZ
-adZ
-aez
-aez
-aWr
-aWr
-aWr
-aWr
-aXE
+acN
+acN
+cUK
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+afd
+afd
+afd
+afd
+akL
+amd
+amW
+anI
+aoR
+anI
+anI
+anI
+anI
+anI
+aoR
+anI
+awP
+axM
+anI
+anI
+aBx
+aCN
+aEa
+aFD
+aEh
+aHP
+aEh
+aEh
+aEh
+aEh
+aML
+cIw
+aOD
+cIG
+aRg
+cIK
+adP
+adP
+aep
+aep
+aUV
+aUV
+aUV
+aUV
+aWf
abW
aaa
aaa
@@ -123186,134 +109524,134 @@ aaa
aaa
aaa
aaa
-aYT
-aYT
-aYT
-aZn
-aZA
-baB
-aZn
-aZn
-bch
-bcI
-bcK
-bcK
-bch
-cKo
-bch
-bch
-biE
-doO
-bkm
-bli
-bli
-bli
-bch
-bch
-bqU
-bax
-btM
-bvr
-bwM
-byr
-byr
-bwM
-bBH
-bCP
-bwM
-bFh
-bGx
-bBL
-bJm
-bJm
-bMq
-bNp
-bJm
-bJm
-bJm
-bJm
-bTv
-bUu
-bVt
-bVt
-bWT
-bXE
-bYk
-bYm
-bZB
-caa
-caw
-caw
-cbN
-caa
-ccE
-ccU
-cdu
-cdO
-cef
-cey
-cdr
+aXs
+aXs
+aXs
+aXM
+aXZ
+aZa
+aXM
+aXM
+baG
+bbg
+bbi
+bbi
+baG
+cFR
+baG
+baG
+bgU
+cUF
+biz
+bju
+bju
+bju
+baG
+baG
+boR
+aYW
+brI
+btj
+buB
+ddu
+ddD
+ddN
+bzn
+bAr
+buB
+bzo
+bDP
+bzr
+bGD
+bGD
+bJD
+bKA
+bGD
+bGD
+bGD
+bGD
+bQz
+bRx
+bSw
+bSw
+bTU
+bUF
+bVl
+bVn
+bWB
+bXa
+bXv
+bXv
+bYM
+bXa
+bZD
+bZT
+cas
+caM
+cbd
+cbw
+cap
+cck
+ccy
+cap
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceM
cfm
-cfA
-cdr
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-cmQ
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cjm
+cjS
+ckF
+clm
+clP
+ceu
cnw
-coj
-coT
-cpy
-chM
-crl
-csw
-ctm
-cVy
-cvm
-cwi
-cxf
-cue
-cyt
-cyU
-czo
-cAj
-cyU
-cBZ
-cCU
-cDI
-cEo
-cET
-cET
-cFl
-cFl
-cFl
-cFl
-cGF
-cFl
-cET
-cFd
-cll
-dlG
-chc
-cgN
+coE
+cpt
+cKE
+crq
+csl
+cti
+cqj
+cuu
+cuU
+cvo
+cwj
+cuU
+cxY
+cyS
+czF
+cAl
+cAP
+cAP
+cBg
+cBg
+cBg
+cBg
+cCx
+cBg
+cAP
+cAZ
+chK
+cSQ
+cdU
+cdI
aaa
aaa
aaa
@@ -123373,65 +109711,65 @@ abE
abW
abW
acH
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-acO
-afr
-afr
-afr
-dsr
-dsm
-akB
-all
-alK
-amA
-ant
-apr
-apr
-aol
-apr
-apr
-asV
-apr
-apr
-aol
-axB
-ays
-azU
-aBn
-aBm
-aDv
-cNx
-aGp
-cNF
-cNG
-cNF
-aKQ
-cNY
-cOd
-cOh
-aOQ
-cOu
-cOB
-aSl
-cOF
-aez
-adZ
-aez
-aez
-aWs
-aWH
-aWV
-aXk
-aXE
-aXE
-aXE
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+acN
+afd
+afd
+afd
+cWz
+cWv
+akh
+akR
+alp
+amf
+amY
+aoS
+aoS
+anO
+aoS
+aoS
+asr
+aoS
+aoS
+anO
+awU
+axL
+azm
+aAF
+aAE
+aCM
+cHL
+aFE
+cHR
+cHS
+cHR
+aJW
+cIg
+cIl
+cIp
+aNJ
+cIB
+cIH
+aQS
+cIL
+aep
+adP
+aep
+aep
+aUW
+aVk
+aVx
+aVL
+aWf
+aWf
+aWf
abC
abC
abC
@@ -123443,134 +109781,134 @@ aaa
aaa
aaa
aaa
-aYT
-aYT
-aYT
-aZn
-aZA
-baE
-aZm
-aZn
-bch
-bcJ
-bcN
-bdY
-beM
-bfG
-bgz
-bht
-biF
-bjs
-bkn
-bjw
-bjw
-bjw
-bof
-bch
-bqU
-bax
-btM
-bvr
-bwM
-byr
-byr
-bwM
-byr
-cMu
-bwM
-bFg
-bGy
-bBL
-bJn
-bKR
-bMr
-bNq
-bOH
-bQh
-bRg
-bJm
-bJm
-bUy
-bVw
-bVw
-bJe
-bXF
-bYl
-bYm
+aXs
+aXs
+aXs
+aXM
+aXZ
+aZd
+aXL
+aXM
+baG
+bbh
+bbl
+bct
+bdh
+bdX
+beQ
+bfK
+bgV
+bhG
+biA
+bhK
+bhK
+bhK
+bml
+baG
+boR
+aYW
+brI
+btj
+ddp
+ddv
+ddE
+ddO
+dec
+bwc
+der
+deA
+bDQ
+bzr
+bGE
+bIh
+bJE
+bKB
+bLP
+bNn
+bOl
+bGD
+bGD
+bRB
+bSz
+bSz
+bGv
+bUG
+bVm
+bVn
+bWA
+bWA
+bXw
+bWD
+bWA
+cHv
bZA
-bZA
-cax
-bZD
-bZA
-cML
-ccB
-ccV
-cdv
-cdP
-ceg
-ccW
-ceY
-cfn
-cfB
-cdr
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-cmQ
+bZU
+cat
+caN
+cbe
+bZV
+cbW
+ccl
+ccz
+cap
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceM
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cjm
+cjS
+ckF
+cln
+clQ
+ceu
cnw
-coj
-coU
-cpz
-chM
-crl
-cjG
-ctn
-cVz
-cuf
-cuf
-cuf
-cuf
-cyu
-cuf
-czA
-cAs
-cBm
-cCb
-cCV
-cDJ
-cEp
-cEU
-cET
-cFl
-cFl
-cFl
-cFl
-cGG
-cFl
-cET
-dnt
-cIc
-cgu
-chc
-cgN
+cgh
+cpu
+cKF
+cqk
+cqk
+cqk
+cqk
+cuv
+cqk
+cvA
+cws
+cxm
+cya
+cyT
+czG
+cAm
+cAQ
+cAP
+cBg
+cBg
+cBg
+cBg
+cCy
+cBg
+cAP
+cTW
+cDT
+cdq
+cdU
+cdI
aaa
aaa
aaa
@@ -123639,195 +109977,195 @@ abW
abW
abW
abW
-afr
-dsh
-dsm
-dss
-ajJ
-akt
-alm
-dsA
-amB
-dsB
-aqg
-anp
-dsE
-dsG
-dsH
-anp
-aqg
-anp
-aom
-axC
-ayx
-azT
-aBo
-afr
-aDu
-aEQ
-aGq
-aHE
-aIG
-aHE
-aKR
-aHC
-aHC
-cOi
-aOR
-aPS
-aRt
-aSl
-cOF
-aez
-adZ
-apx
-afq
-aWs
-aWI
-aWW
-aXl
-aXF
-aXT
-aXF
-aYn
-aYn
-aYn
-aYn
-aXB
+afd
+cWq
+cWv
+cWA
+ajq
+ajZ
+akS
+cWE
+amg
+cWF
+apG
+amU
+cWI
+cWK
+cWL
+amU
+apG
+amU
+anP
+awV
+axQ
+azl
+aAG
+afd
+aCL
+aEf
+aFF
+aGR
+aHQ
+aGR
+aJX
+aGQ
+aGQ
+cIq
+aNK
+aOE
+aQa
+aQS
+cIL
+aep
+adP
+aoX
+afc
+aUW
+aVl
+aVy
+aVM
+aWg
+aWu
+aWg
+aWO
+aWO
+aWO
+aWO
+aWc
abC
abC
abC
abC
abC
abC
-aYT
-aYT
-aYT
-aZn
-aZA
-baB
+aXs
+aXs
+aXs
+aXM
+aXZ
+aZa
+aZF
+aXM
+baG
+bbi
bbg
-aZn
-bch
-bcK
-bcI
-bcK
-bcN
-bfH
-bch
-bhu
-biG
-bjt
-bko
-bjw
-bjt
-bjw
-bjw
-bch
-bqU
-bax
-btN
-bBL
-bwM
-byr
-byr
-bwM
-byr
-bCN
-bwM
-bFg
-bGz
-bBL
-bJo
-bJr
-bMr
-bNr
-bOI
-bOI
-bRh
-bSo
-bJm
-bJm
-bJm
-bJm
-bJm
-bJm
-bYm
-bYm
-bZC
-bZX
-bZD
-bZD
-bZw
+bbi
+bbl
+bdY
+baG
+bfL
+bgW
+bhH
+biB
+bhK
+bhH
+bhK
+bhK
+baG
+boR
+aYW
+brJ
+bzr
+ddq
+ddw
+ddF
+ddP
+ded
+bwc
+des
+deB
+bDR
+bzr
+bGF
+bGI
+bJE
+bKC
+bLQ
+bLQ
+bOm
+bPs
+bGD
+bGD
+bGD
+bGD
+bGD
+bGD
+bVn
+bVn
+bWC
+bWX
+bWD
+bWD
+bWx
+bZl
+bZA
+bZV
+cau
+caO
+cbf
+cbx
+cap
ccm
-ccB
-ccW
-cdw
-cdQ
-ceh
-cez
-cdr
-cfo
-cfC
-cdr
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-ciH
-ckp
-ciH
-ciH
-ciH
-cmQ
-chM
-cok
-coU
-cpA
-chM
+ccA
+cap
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceM
+cfm
+cfm
+cfm
+cgP
+cfm
+cfm
+cfm
+cjm
+ceu
+ckG
+cln
+clR
+ceu
+cnC
+cgh
+cpv
+cKF
crr
-cjG
-cto
-cVz
-cvn
-cwj
-cxg
-cxG
-cyv
-cuf
-czw
-cAt
-cBl
-cCc
-cCc
-cCc
-cCc
-cET
-cET
-cET
-cFK
-cFl
-cFl
-cGH
-cET
-cET
-dmK
-cJf
-cjV
-chc
-cgN
+csm
+ctj
+ctH
+cuw
+cqk
+cvw
+cwt
+cxl
+cyb
+cyb
+cyb
+cyb
+cAP
+cAP
+cAP
+cBD
+cBg
+cBg
+cCz
+cAP
+cAP
+cTC
+cEW
+cgw
+cdU
+cdI
aaa
aaa
aaa
@@ -123896,195 +110234,195 @@ abW
abW
abW
abW
-afr
-dsi
-dsn
-dsn
-dsx
-afr
-amC
-anu
-aon
-alH
-amC
-ard
-aon
-alH
-dsI
-alH
-amC
-avf
-aon
-alH
-amC
-azX
-aon
-afr
-aDv
-aEI
-aGr
-aES
-cNH
-aES
-cNR
-cNZ
-aHC
-cOj
-aES
-aPT
-aRt
-aSl
-cOF
-aez
-aez
-afq
-aVO
-aWt
-aWJ
-aWX
-aXm
-aXE
-aXE
-aXE
+afd
+cWr
+cWw
+cWw
+cWC
+afd
+amh
+amZ
+anQ
+alm
+amh
+aqC
+anQ
+alm
+cWM
+alm
+amh
+auz
+anQ
+alm
+amh
+azp
+anQ
+afd
+aCM
+aDY
+aFG
+aEh
+cHT
+aEh
+cIa
+cIh
+aGQ
+cIr
+aEh
+aOF
+aQa
+aQS
+cIL
+aep
+aep
+afc
+aUs
+aUX
+aVm
+aVz
+aVN
+aWf
+aWf
+aWf
abC
abC
abC
abC
-aYA
+aXb
abC
aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aZn
-bae
-baF
-bbh
-aZn
-bch
-bcL
-bdm
+aXo
+aXs
+aXs
+aXs
+aXM
+aYD
+aZe
+aZG
+aXM
+baG
+bbj
+bbJ
+bcu
+bbl
bdZ
-bcN
-bfI
-bch
-bhv
-biG
-bju
-bkp
-blj
-bml
-bjw
-bjw
-doP
-bqU
-bax
-btO
-doQ
-bAJ
-byt
-bzF
-bAJ
-bBI
-bCQ
-bAJ
-bFi
-bGA
-bBL
-bJp
-bKU
-bMs
-bNs
-bOJ
-bQi
-bRi
-bSp
-bJm
-bUz
-bVx
-bJr
-bVx
-bUz
-bYm
-bYW
-bZx
-bZY
-bZD
-bZD
-bZx
-bZY
-ccF
-ccX
-cdr
-cdr
-cdr
-cdr
-cdr
-cLj
-cdr
-cdr
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-dkI
-ckq
-dkR
-ciH
-ciH
-cmQ
-cnx
-col
-coV
-cpB
-cqr
+baG
+bfM
+bgW
+bhI
+biC
+bjv
+bku
+bhK
+bhK
+cUG
+boR
+aYW
+brK
+bzr
+byq
+bwd
+bxn
+ddQ
+bzo
+byp
+det
+bzm
+bDS
+bzr
+bGG
+bIj
+bJF
+bKD
+bLR
+bNo
+bOn
+bPt
+bGD
+bRC
+bSA
+bGI
+bSA
+bRC
+bVn
+bVX
+bWy
+bWY
+bWD
+bWD
+bWy
+bWY
+bZE
+bZW
+cap
+cap
+cap
+cap
+cap
+cGv
+cap
+cap
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceM
+cfm
+cfm
+cSj
+cgQ
+cSr
+cfm
+cfm
+cjm
+cjT
+ckH
+clo
+clS
+cmF
+cnD
+coF
+cpt
+cKF
crs
-csx
-ctm
-cVz
+csn
+ctk
+ctI
+cux
+cqk
cvo
-cwk
-cxh
-cxH
-cyw
-cuf
-czo
-cAj
-cBk
-cCc
-cCW
-cDK
-cEq
-cEU
-cFm
-cFx
-cFL
-cGb
-cGw
-cGI
-cGW
-cET
-dmK
-cll
-cgu
-chc
-cgN
+cwj
+cxk
+cyb
+cyU
+czH
+cAn
+cAQ
+cBh
+cBr
+cBE
+cBU
+cCp
+cCA
+cCN
+cAP
+cTC
+chK
+cdq
+cdU
+cdI
aaa
aaa
aaa
@@ -124153,195 +110491,195 @@ acH
acH
abW
abW
-afr
-dsj
-dso
-dst
-dsx
-afr
-amD
-ann
-aoo
-alH
-amD
-ann
-aoo
-alH
-dsJ
-alH
-amD
-ann
-aoo
-alH
-amD
-ann
-aoo
-afr
-aDA
-aEI
-aGs
-aHB
-cNI
-cNN
-aKT
-aHC
-aHC
-cOk
-cOp
-cOt
-aRy
-aSu
-cOF
-aez
-afV
-alR
-anC
-aWs
-aWs
-aWr
-aWs
-aXE
+afd
+cWs
+cWx
+cWB
+cWC
+afd
+ami
+amS
+anR
+alm
+ami
+amS
+anR
+alm
+cWN
+alm
+ami
+amS
+anR
+alm
+ami
+amS
+anR
+afd
+aCR
+aDY
+aFH
+aGP
+cHU
+cHX
+aJZ
+aGQ
+aGQ
+cIs
+cIx
+cIA
+aQf
+aRb
+cIL
+aep
+afH
+alw
+anh
+aUW
+aUW
+aUV
+aUW
+aWf
abW
aaa
aaa
aaa
aaa
abC
-aYA
+aXb
abC
aaa
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aZn
-aZm
-aZA
-baB
-aZn
-bch
-bcM
-bdn
-bea
-beN
-beN
-bgA
-bhw
-biH
-bjv
-bkq
-blk
-bmm
-bmX
+aXo
+aXs
+aXs
+aXs
+aXM
+aXL
+aXZ
+aZa
+aXM
+baG
+bbk
+bbK
+bcv
+bdi
+bdi
+beR
+bfN
+bgX
+bhJ
+biD
bjw
-bch
-bqV
-bsp
-btP
-bBL
-bvm
-bvm
-bzG
-bvm
-bvm
-bCR
-doR
-bFj
-doR
-bBL
-bJq
-bKT
-bMs
-bNs
-bOK
-bQj
-bRj
-bSp
-bJm
-bJr
-bVx
-bWn
-bVx
-bJr
-bYm
-bYX
-bZD
-bZD
-bZD
-bZD
-bZD
-bZD
-bYX
-ccY
-cdx
-cdx
-cdx
-bYm
-cdr
-cfp
-cdr
-aZn
-aYP
+bkv
+ble
+bhK
+baG
+boS
+bqm
+brL
+bzr
+ddr
+ddx
+bxo
+ddR
+dee
+bAs
+cUH
+bCE
+deF
+bzr
+bGH
+bIi
+bJF
+bKD
+bLS
+bNp
+bOo
+bPt
+bGD
+bGI
+bSA
+bTo
+bSA
+bGI
+bVn
+bVY
+bWD
+bWD
+bWD
+bWD
+bWD
+bWD
+bVY
+bZX
+cav
+cav
+cav
+bVn
+cap
+ccn
+cap
+aXM
+aXo
aaa
-bjB
-bjB
-bjB
-bjB
-bjB
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-ciH
-ckr
-ciH
-ciH
-ciH
-cmQ
-chM
-com
-coW
-cpC
-cqs
+bhP
+bhP
+bhP
+bhP
+bhP
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceM
+cfm
+cfm
+cfm
+cgR
+cfm
+cfm
+cfm
+cjm
+ceu
+ckI
+clp
+clT
+cmG
+cnE
+coG
+cpm
+cql
crt
-csy
-ctf
-cug
-cvp
-cwl
-cxi
-cxI
-cyx
-cyV
-czB
-cAu
-cBn
-cCc
-cCW
-cDK
-cEr
-cCc
-cFn
-cFy
-cFM
-cGc
-cGx
-cGJ
-cFn
-cCc
-cHr
-cCC
-cjU
-chc
-cgN
+cso
+ctl
+ctJ
+cuy
+cuV
+cvB
+cwu
+cxn
+cyb
+cyU
+czH
+cAo
+cyb
+cBi
+cBs
+cBF
+cBV
+cCq
+cCB
+cBi
+cyb
+cDi
+cyA
+cgv
+cdU
+cdI
aaa
aaa
aaa
@@ -124410,51 +110748,51 @@ acH
acH
abW
abW
-afr
-dsk
-dsp
-dsp
-dsz
-afr
-amE
-anv
-ann
-alH
-aqh
-ann
-ann
-alH
-dsJ
-alH
-auc
-ann
-ann
-alH
-ayy
-ann
-ann
-afr
-aDB
-cNy
-aKS
-aKS
-aII
-aJN
-aIH
-aKS
-aKS
-aNR
-cOq
-cOw
-aRx
-aSt
-cOJ
-aez
-afq
-aoR
-apu
-aez
-adZ
+afd
+cWt
+cWy
+cWy
+cWD
+afd
+amj
+ana
+amS
+alm
+apH
+amS
+amS
+alm
+cWN
+alm
+atw
+amS
+amS
+alm
+axR
+amS
+amS
+afd
+aCS
+cHM
+aJY
+aJY
+aHS
+aIV
+aHR
+aJY
+aJY
+aMM
+cIy
+cIC
+aQe
+aRa
+cIM
+aep
+afc
+aos
+aoU
+aep
+adP
abW
abW
abW
@@ -124464,141 +110802,141 @@ aaa
aaa
aaa
abC
-aYA
+aXb
abC
aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYP
-aYP
-aZn
-aZA
-baB
-bbE
-bci
-bcN
-bcN
-beb
-beO
-bfJ
-bch
-bhx
-biI
-bjw
-bjw
-bjw
-bjw
-bjw
-bog
-bch
-bqU
-bax
-btQ
-bBL
-bwO
-byu
-bzH
-bzH
-bzH
-bCS
-byv
-bFk
-byv
-bBL
-bJr
-cMB
-bMs
-bNs
-bOK
-bQk
-bRk
-bSq
-bJm
-bJr
-bVy
-bJr
-bJr
-bJr
-bYm
-bYY
-bZD
-cab
-cab
-cab
-cab
-bZD
-bYX
-ccY
-cdx
-cdx
-cdx
-bYm
-cLi
-aZA
+aXo
+aXo
+aXo
+aXo
+aXo
+aXM
+aXZ
+aZa
bad
-aZo
-aYP
+baH
+bbl
+bbl
+bcw
+bdj
+bea
+baG
+bfO
+bgY
+bhK
+bhK
+bhK
+bhK
+bhK
+bmm
+baG
+boR
+aYW
+brM
+bzr
+bte
+bwe
+bxp
+ddS
+bte
+bAt
+bwe
+bwe
+bte
+bzr
+bGI
+cHo
+bJF
+bKD
+bLS
+bNq
+bOp
+bPu
+bGD
+bGI
+bSB
+bGI
+bGI
+bGI
+bVn
+bVZ
+bWD
+bXb
+bXb
+bXb
+bXb
+bWD
+bVY
+bZX
+cav
+cav
+cav
+bVn
+cGu
+aXZ
+aYC
+aXN
+aXo
aaa
aaa
aaa
aaa
aaa
aaa
-cgS
-cgS
-cgS
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-cmQ
-cnw
-con
-coX
-cpD
-chM
+cdN
+cdN
+cdN
+cdN
+cdN
+ceu
+ceM
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cjm
+cjS
+ckJ
+clq
+clU
+ceu
+cnF
+cgh
+cpm
+cql
cru
-cjG
-ctf
-cug
-cvq
-cwm
-cxj
-cxJ
-cyy
-cyW
-czy
-cAj
-cyU
-cCc
-cCX
-cDL
-cEs
-cEV
-cEs
-cEs
-cEs
-cGd
-cEt
-cGK
-cEt
-cCc
-cHr
-cxT
-cjU
-chc
-cgN
+csp
+ctm
+ctK
+cuz
+cuW
+cvy
+cwj
+cuU
+cyb
+cyV
+czI
+cAp
+cAR
+cAp
+cAp
+cAp
+cBW
+cAq
+cCC
+cAq
+cyb
+cDi
+ctU
+cgv
+cdU
+cdI
aaa
aaa
aaa
@@ -124667,61 +111005,61 @@ acH
acH
abW
abW
-afr
-dsl
-dsj
-dsj
-ahq
-afr
-amF
-anw
-aop
-alH
-aqi
-anw
-asb
-alH
-aiP
-alH
-aud
-anw
-awt
-alH
-ayz
-anw
-aBp
-afr
-aDC
-aER
-aGu
-aHH
-aIJ
-cNN
-cNS
-cOa
-cOe
-cOl
-cOp
-cOt
-aRt
-aSv
-cOF
-adZ
-apx
-anC
-aez
-aez
+afd
+cWu
+cWs
+cWs
+ahc
+afd
+amk
+anb
+anS
+alm
+apI
+anb
+arx
+alm
+aiy
+alm
+atx
+anb
+avN
+alm
+axS
+anb
+aAH
+afd
+aCT
+aEg
+aFI
+aGS
+aHT
+cHX
+cIb
+cIi
+cIm
+cIt
+cIx
+cIA
+aQa
+aRc
+cIL
+adP
+aoX
+anh
+aep
+aep
abW
abW
abW
-akG
+akm
aaa
aaa
aaa
aaa
aaa
abC
-aYA
+aXb
abC
aaa
aaa
@@ -124729,76 +111067,76 @@ aaa
aaa
aaa
aaa
-aZc
-aYT
-aYT
-aZo
-aZn
-baF
-bbh
-bch
-bch
-bch
-bch
-bch
-bch
-bch
-bhy
-biJ
+aXB
+aXs
+aXs
+aXN
+aXM
+aZe
+aZG
+baG
+baG
+baG
+baG
+baG
+baG
+baG
+bfP
+bgZ
+bhL
+biE
bjx
-bkr
-bll
+bkw
+blf
bmn
-bmY
-boh
-bch
-bqU
-bax
-btO
-bBL
-bwP
-cMs
-bzI
-byv
-byv
-bCT
-cMs
-bFk
-bGB
-bBL
-bJs
-bJr
-bMr
-bNs
-bKR
-bKR
-bKR
-bKR
-bTw
-bUA
-bVz
-bWo
-bVz
-bUA
-bYm
-bYX
-bZD
-cab
-bZD
-cbh
-cab
-bZD
-bYX
-ccZ
-bYX
-bYX
-bYX
-bYm
-cfq
-aZA
-aZo
-aZo
-aYP
+baG
+boR
+aYW
+brK
+bzr
+buC
+ddy
+bxq
+ddT
+def
+bAu
+deu
+bCF
+bDT
+bzr
+bGJ
+bGI
+bJE
+bKD
+bIh
+bIh
+bIh
+bIh
+bQA
+bRD
+bSC
+bTp
+bSC
+bRD
+bVn
+bVY
+bWD
+bXb
+bWD
+bYg
+bXb
+bWD
+bVY
+bZY
+bVY
+bVY
+bVY
+bVn
+cco
+aXZ
+aXN
+aXN
+aXo
aaa
aaa
aaa
@@ -124808,54 +111146,54 @@ aaa
aaa
aaa
aaa
-cgS
-cgS
-chM
-cig
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-ciH
-cmQ
+cdN
+cdN
+ceu
+ceM
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cfm
+cjm
+cjS
+ckJ
+clr
+clV
+ceu
cnw
-con
-coY
-cpE
-chM
-crl
-cjG
-ctf
-cuh
-cvr
-cwn
-cxk
-cxK
-cyz
-cyX
-cvl
-cAv
-cBo
-cCc
-cCY
-cDM
-cNu
-cEt
-cEt
-cFz
-cEt
-cEt
-cNu
-cGL
-cGX
-cCc
-dmK
-cxT
-cjV
-cgu
-cgN
+cgh
+cpm
+cqm
+crv
+csq
+ctn
+ctL
+cuA
+cuX
+crp
+cwv
+cxo
+cyb
+cyW
+czJ
+cHJ
+cAq
+cAq
+cBt
+cAq
+cAq
+cHJ
+cCD
+cCO
+cyb
+cTC
+ctU
+cgw
+cdq
+cdI
aaa
aaa
aaa
@@ -124924,138 +111262,138 @@ acH
acH
acH
abW
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-dsL
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-aDD
-aES
-aGv
-aES
-aES
-aES
-aES
-aGv
-aES
-aES
-aES
-cOx
-aRt
-aSl
-cOF
-adZ
-aUV
-anC
-aez
-aez
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+cWO
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+afd
+aCU
+aEh
+aFJ
+aEh
+aEh
+aEh
+aEh
+aFJ
+aEh
+aEh
+aEh
+cID
+aQa
+aQS
+cIL
+adP
+aTz
+anh
+aep
+aep
abW
abW
abW
abW
aaa
-aYe
-aYe
-aYe
-aYe
-aYe
-aYA
-aYe
-aYe
-aYe
-aYe
-aYe
+aWF
+aWF
+aWF
+aWF
+aWF
+aXb
+aWF
+aWF
+aWF
+aWF
+aWF
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aZn
-bbi
-bbF
-bcj
-bcj
-bdo
-bbh
-bad
-aZn
-bch
-bch
-bch
-bch
-bch
-bch
-bch
-bch
-boi
-bch
-bqU
-bax
-btR
-bBL
-bwQ
-byw
-bzJ
-byw
-bBJ
-byw
-bEh
-bFl
-bGC
-bBL
-bJt
-bKV
-bMt
-bNs
-bOL
-bQl
-bRl
-bSr
-bTx
-bJu
-bJu
-bJu
-bJu
-bJu
-bYn
-bYZ
-bZE
-bZD
-cay
-bZD
-bZD
-bZE
-bYX
-ccY
-cdx
-cdx
-cei
-bYm
-bCW
-aZA
-aZn
-aZn
-aYP
+aXo
+aXs
+aXs
+aXs
+aXM
+aZH
+bae
+baI
+baI
+bbL
+aZG
+aYC
+aXM
+baG
+baG
+baG
+baG
+baG
+baG
+baG
+baG
+bmo
+baG
+boR
+aYW
+brN
+bzr
+buD
+bwg
+bxr
+ddU
+bzp
+dek
+bBG
+bwg
+deG
+bzr
+bGK
+bIk
+bJG
+bKD
+bLT
+bNr
+bOq
+bPv
+bQB
+bGL
+bGL
+bGL
+bGL
+bGL
+bVo
+bWa
+bWE
+bWD
+bXx
+bWD
+bWD
+bWE
+bVY
+bZX
+cav
+cav
+cbg
+bVn
+bAw
+aXZ
+aXM
+aXM
+aXo
aaa
aaa
aaa
@@ -125067,52 +111405,52 @@ aaa
aaa
aaa
aaa
-chM
-cii
-ciI
-ciI
-ciI
-ciI
-ciI
-ciI
-ciI
-cmR
-chM
-coo
-coZ
-cpF
-chM
-crl
-cjG
-ctf
-cui
-cvs
-cwn
-cwn
-cxL
-cyA
-cuf
-czo
-cAw
-cBp
-cCc
-cCY
-cDM
-cEt
-cEt
-cEt
-cEt
-cEt
-cEt
-cEt
-cEt
-cEt
-cHj
-cHs
-cll
-cgu
-cgR
-cgN
+ceu
+ceN
+cfn
+cfn
+cfn
+cfn
+cfn
+cfn
+cfn
+cjn
+ceu
+ckK
+cls
+clW
+ceu
+cnw
+cgh
+cpm
+cqn
+crw
+csq
+csq
+ctM
+cuB
+cqk
+cvo
+cww
+cxp
+cyb
+cyW
+czJ
+cAq
+cAq
+cAq
+cAq
+cAq
+cAq
+cAq
+cAq
+cAq
+cDa
+cDj
+chK
+cdq
+cdM
+cdI
aaa
aaa
aaa
@@ -125187,131 +111525,131 @@ abW
abW
abW
abW
-agy
-agy
-agy
-agy
-agy
-agy
-agA
-agA
-aiP
-agy
-adZ
-adZ
-adZ
-adZ
-adZ
-azY
-aBq
-aCg
-aDE
-aET
-aGw
-aHI
-azY
-aJR
-cNT
-aJR
-aJR
-aJR
-aLm
-aPV
-aRt
-aSl
-cOF
-adZ
-aUW
-anC
-aez
-aez
+agk
+agk
+agk
+agk
+agk
+agk
+agm
+agm
+aiy
+agk
+adP
+adP
+adP
+adP
+adP
+azq
+aAI
+aBy
+aCV
+aEi
+aFK
+aGT
+azq
+aIZ
+cIc
+aIZ
+aIZ
+aIZ
+aKq
+aOG
+aQa
+aQS
+cIL
+adP
+aTA
+anh
+aep
+aep
abW
abW
aaa
aaa
aaa
-aYf
-aYf
-aYf
-aYf
-aYf
-aYB
-aYJ
-aYJ
-aYJ
-aYJ
-aYJ
+aWG
+aWG
+aWG
+aWG
+aWG
+aXc
+aXj
+aXj
+aXj
+aXj
+aXj
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aZn
-aYX
-bbG
-aZA
-aZA
-aZA
-baF
-bcj
-bcj
-bcj
-bhz
-biK
+aXo
+aXs
+aXs
+aXs
+aXM
+aXw
+baf
+aXZ
+aXZ
+aXZ
+aZe
+baI
+baI
+baI
+bfQ
+bha
+bhM
+biF
bjy
-bks
-blm
-bmo
-bmZ
-boj
-bpL
-bqW
-bsi
-btS
-bBL
-bwR
-bvm
-bvm
-bAK
-bBK
-bvs
-bvs
-bvs
-bvs
-bHG
-bJu
-bJu
-bJu
-bNt
-bJu
-bJu
-bJu
-bJu
-bTy
-aZn
-aZo
-aZo
-aZo
-aZn
-bYo
-bZa
-bZa
-bZa
-bZa
-bZa
-bZa
-bZa
-bZa
-cda
-bYm
-bYm
-bYm
-bYm
-bCW
-bGo
-aYX
-aYP
+bkx
+blg
+bmp
+bnM
+boT
+bqf
+brO
+bzr
+buE
+ddz
+ddG
+ddV
+deg
+del
+dev
+deC
+bCF
+bzr
+bQB
+bGL
+bGL
+bKE
+bGL
+bGL
+bGL
+bGL
+bQC
+aXM
+aXN
+aXN
+aXN
+aXM
+bVp
+bWb
+bWb
+bWb
+bWb
+bWb
+bWb
+bWb
+bWb
+bZZ
+bVn
+bVn
+bVn
+bVn
+bAw
+bDI
+aXw
+aXo
aaa
aaa
aaa
@@ -125324,52 +111662,52 @@ aaa
aaa
aaa
aaa
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-chM
-cNo
-cNp
-cNq
-cVz
-cvt
-cwo
-cxl
-cxM
-cyB
-cuf
-czC
-cAx
-cBq
-cCc
-cCY
-cDN
-cEu
-cEW
-cFo
-cEW
-cEW
-cEW
-cGy
-cGM
-cGY
-cCc
-cHt
-cll
-dny
-cgR
-cgN
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+ceu
+cHD
+cHE
+cHF
+cKF
+crx
+csr
+cto
+ctN
+cuC
+cqk
+cvC
+cwx
+cxq
+cyb
+cyW
+czK
+cAr
+cAS
+cBj
+cAS
+cAS
+cAS
+cCr
+cCE
+cCP
+cyb
+cDk
+chK
+cUa
+cdM
+cdI
aaa
aaa
aaa
@@ -125444,131 +111782,131 @@ acH
acH
acH
acH
-agy
-aig
-agy
-agz
-dsC
-agz
-aiO
-ajI
-dsM
-agy
-adZ
-adZ
-adZ
-adZ
-adZ
-azY
-aBr
-aCh
-aDF
-aEU
-aGx
-aHJ
-aIK
-aJO
-aJQ
-aJQ
-aJR
-aNS
-aLm
-aPW
-aRz
-cMl
-cOF
-aez
-anN
-ayB
-afS
-aez
-adZ
+agk
+ahP
+agk
+agl
+cWG
+agl
+aix
+ajp
+cWP
+agk
+adP
+adP
+adP
+adP
+adP
+azq
+aAJ
+aBz
+aCW
+aEj
+aFL
+aGU
+aHU
+aIW
+aIY
+aIY
+aIZ
+aMN
+aKq
+aOH
+aQg
+cHb
+cIL
+aep
+ans
+axU
+afE
+aep
+adP
abW
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-aYC
-aYg
-aYg
-aYg
-aYg
-aYg
+aWH
+aWH
+aWH
+aWH
+aWH
+aXd
+aWH
+aWH
+aWH
+aWH
+aWH
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aZo
-aZn
-aZn
-aZm
-aZA
-bec
-bbi
-aZA
-aZA
-bbE
-biL
+aXo
+aXs
+aXs
+aXs
+aXN
+aXM
+aXM
+aXL
+aXZ
+bcx
+aZH
+aXZ
+aXZ
+bad
+bhb
+bhN
+biG
bjz
-bkt
-bln
-bmp
-aZm
-bok
-aZm
-bqX
-bbz
-btT
-cTe
-bwS
-byx
-bzK
-cKQ
-cKR
-bCV
-aZo
-aZn
-bGD
-bkb
-bkb
-bKW
-bMu
-bNu
-bkb
-bQm
-bkb
-bSs
-aZB
-bbg
-aZo
-aZo
-aZo
-aZo
-bFm
-bkb
-bkb
-bkb
-caz
-bkb
-bkb
-ccn
-bkb
-bMu
-bkb
-bkb
-bkb
-ceA
-bCY
-bFn
-aZo
-aYP
+bky
+aXL
+bmq
+aXL
+boU
+aZY
+brP
+cJM
+buF
+btk
+bxs
+byr
+bzq
+btk
+btk
+btk
+btk
+bEX
+deI
+bTq
+aXZ
+bCG
+bip
+bNs
+bip
+bPw
+aYa
+aZF
+aXN
+aXN
+aXN
+aXN
+bCG
+bip
+bip
+bip
+bXy
+bip
+bip
+bZm
+bip
+bJH
+bip
+bip
+bip
+cby
+bAy
+bCH
+aXN
+aXo
aaa
aad
aaa
@@ -125582,51 +111920,51 @@ aad
aaa
aaa
abC
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cgN
-cgR
-cgR
-cjg
-crl
-cjG
-ctp
-cVz
-cuf
-cuf
-cuf
-cuf
-cuf
-cuf
-cue
-cAy
-cBr
-cue
-cCZ
-cDO
-cue
-cEX
-cFp
-cFB
-cEt
-cGe
-cGz
-cGN
-cGZ
-cCc
-dmK
-cll
-cjV
-cgR
-cgN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cdI
+cdM
+cdM
+cfI
+cnw
+cgh
+cpw
+cKF
+cqk
+cqk
+cqk
+cqk
+cqk
+cqk
+cqj
+cwy
+cxr
+cqj
+cyX
+czL
+cqj
+cAT
+cBk
+cBu
+cAq
+cBX
+cCs
+cCF
+cCQ
+cyb
+cTC
+chK
+cgw
+cdM
+cdI
aaa
aaa
aaa
@@ -125701,45 +112039,45 @@ acH
acH
acH
acH
-agy
-alL
-akD
-amG
-aiP
-agz
-dsF
-agy
-agy
-agy
-adZ
-adZ
-adZ
-adZ
-adZ
-azY
-aBs
-aCi
-aDG
-aEV
-aGy
-aHK
-aIL
-aJP
-aJP
-aJP
-aMQ
-aNT
-aLm
-aPQ
-aRt
-aSl
-cOF
-aez
-afq
-anC
-afq
-aez
-adZ
+agk
+alq
+akj
+aml
+aiy
+agl
+cWJ
+agk
+agk
+agk
+adP
+adP
+adP
+adP
+adP
+azq
+aAK
+aBA
+aCX
+aEk
+aFM
+aGV
+aHV
+aIX
+aIX
+aIX
+aLN
+aMO
+aKq
+aOC
+aQa
+aQS
+cIL
+aep
+afc
+anh
+afc
+aep
+adP
abW
aaa
aaa
@@ -125749,7 +112087,7 @@ abC
abC
abC
abC
-arw
+aqV
abC
abC
abC
@@ -125758,75 +112096,75 @@ abC
aaa
aaa
aaa
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aZo
-aZo
-aZn
-aZm
-aZn
-aZn
-aZn
-aZm
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXN
+aXN
+aXM
+aXL
+aXM
+aXM
+aXM
+aXL
+bhO
+biH
bjA
-bku
-blo
-bmq
-aZm
-bol
-aZm
-bqY
-bbz
-btU
-bvt
-bwT
-byy
-bBL
-bAL
-bBL
-bCW
-aZA
-bFm
-bCY
-aZA
-bbi
-aZA
-aZA
-aZA
-aZA
-bbi
-aZA
-bSt
-bkb
-bkb
-bkb
-bkb
-bkb
-bMu
-bCY
-aZA
-bbi
-aZz
-bad
-bbg
-aZo
-aYX
-aZo
-bqE
-aZA
-bWp
-bbi
-ceB
-aZn
-aZn
-aZo
-aYT
-aYP
+bkz
+aXL
+bmr
+aXL
+boV
+aZY
+brQ
+btl
+buG
+caE
+cak
+bys
+deh
+bAv
+aXN
+bCG
+deH
+bip
+deJ
+bip
+bip
+bAy
+aXZ
+aZH
+aXZ
+bPx
+bip
+bip
+bip
+bip
+bip
+bJH
+bAy
+aXZ
+aZH
+aXY
+aYC
+aZF
+aXN
+aXw
+aXN
+boB
+aXZ
+bTq
+aZH
+cbz
+aXM
+aXM
+aXN
+aXs
+aXo
aaa
aaa
aaa
@@ -125841,49 +112179,49 @@ aaa
abC
aaa
aaa
-cgN
-cgN
-cjl
-cjl
-cjl
-cjl
-cjl
-cgN
-cgN
-cgN
-cgR
-cLp
-crv
-cst
-cte
-cUr
-ckE
-cwp
-ckC
-cxN
-cyC
-cue
-czD
-cAz
-cBs
-cCd
-cDa
-cDP
-cue
-cue
-cCc
-cCc
-cFN
-cCc
-cCc
-cCc
-cHa
-cCc
-cHu
-cll
-cjV
-cgR
-cgN
+cdI
+cdI
+cfN
+cfN
+cfN
+cfN
+cfN
+cdI
+cdI
+cdI
+cdM
+cGA
+cnG
+coB
+cpl
+cKr
+che
+css
+chc
+ctO
+cuD
+cqj
+cvD
+cwz
+cxs
+cyc
+cyY
+czM
+cqj
+cqj
+cyb
+cyb
+cBG
+cyb
+cyb
+cyb
+cCR
+cyb
+cDl
+chK
+cgw
+cdM
+cdI
aaa
aaa
aaa
@@ -125945,7 +112283,7 @@ abC
abC
abC
abC
-ads
+adm
abW
abW
abW
@@ -125958,132 +112296,132 @@ acH
acH
acH
acH
-agy
-alM
-amG
-anx
-dsD
-ajI
-akC
-agz
-afS
-afS
-afS
-afV
-afV
-axD
-afS
-cJJ
-aBt
-aCj
-aDH
-aDI
-aGz
-aHL
-aIK
-aJQ
-aJQ
-cMf
-aMR
-aNU
-aLm
-aPX
-aRt
-aSx
-cOF
-aez
-aez
-anC
-afq
-aez
-adZ
+agk
+alr
+aml
+anc
+cWH
+ajp
+aki
+agl
+afE
+afE
+afE
+afH
+afH
+awW
+afE
+cFs
+aAL
+aBB
+aCY
+aCZ
+aFN
+aGW
+aHU
+aIY
+aIY
+cGY
+aLO
+aMP
+aKq
+aOI
+aQa
+aRe
+cIL
+aep
+aep
+anh
+afc
+aep
+adP
abW
aaa
aaa
aaa
-aYe
-aYe
-aYe
-aYe
-aYe
-arw
-aYe
-aYe
-aYe
-aYe
-aYe
+aWF
+aWF
+aWF
+aWF
+aWF
+aqV
+aWF
+aWF
+aWF
+aWF
+aWF
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYT
-aYT
-aYT
-aZo
-aZm
-aZm
-aZm
-aZm
-aZm
-aZm
-bom
-aZm
-bqZ
-bab
-baa
-bvm
-bwU
-bvm
-bzL
-bAM
-bBM
-bCX
-bkb
-bCY
-bbg
-aZn
-aZm
-bKX
-bKX
-bKX
-bKX
-aZm
-aZn
-bSu
-aZn
-bUB
-aZA
-bWp
-aZA
-aZA
-aZA
-aZo
-aZm
-cac
-aZm
-aZo
-aZo
-aZo
-cbO
-cbO
-cbO
-cbO
-cbO
-ceC
-cbO
-aYP
-aYT
-aYT
-aYP
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXs
+aXs
+aXs
+aXN
+aXL
+aXL
+aXL
+aXL
+aXL
+aXL
+bms
+aXL
+boW
+aYA
+aYz
+aXL
+buH
+bcX
+cak
+byt
+cak
+bAx
+bip
+bAy
+aZF
+aXM
+aXL
+bIl
+bIl
+bIl
+bIl
+aXL
+aXM
+bPy
+aXM
+bRE
+aXZ
+bTq
+aXZ
+aXZ
+aXZ
+aXN
+aXL
+bXc
+aXL
+aXN
+aXN
+aXN
+bYN
+bYN
+bYN
+bYN
+bYN
+cbA
+bYN
+aXo
+aXs
+aXs
+aXo
aaa
aaa
aaa
@@ -126099,48 +112437,48 @@ abC
aaa
aaa
aaa
-cgN
-cjl
-ckR
-clI
-cmi
-cjl
-cjl
-cjl
-cjl
-cjl
-cjl
-crl
-cjG
-cte
-cUn
-cvv
-cwq
-dlH
-cxO
-cyD
-cue
-czE
-cAA
-cwg
-cCe
-cDb
-cyU
-cue
-chc
-chc
-cCc
-cLM
-cGf
-cFI
-cFI
-cHb
-cGv
-cHv
-cCC
-cjU
-cgR
-cgN
+cdI
+cfN
+chq
+cig
+ciE
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cnw
+cgh
+cpl
+cKq
+cry
+cst
+cSR
+ctP
+cuE
+cqj
+cvE
+cwA
+csj
+cyd
+cyZ
+cuU
+cqj
+cdU
+cdU
+cyb
+cGP
+cBY
+cBB
+cBB
+cCS
+cCo
+cDm
+cyA
+cgv
+cdM
+cdI
aaa
aaa
aaa
@@ -126215,132 +112553,132 @@ acH
acH
acH
abW
-agy
-alN
-alN
-amG
-amG
-agA
-afR
-afR
-afV
-asX
-aue
-avg
-afS
-akp
-ayA
-azY
-aBu
-aCk
-aDI
-aEW
-aDI
-aDI
-aIM
-aJR
-aJR
-aJR
-aJR
-aJR
-aOT
-aPQ
-aRt
-aSm
-cOF
-aez
-afq
-anC
-afq
-aez
-adZ
+agk
+als
+als
+aml
+aml
+agm
+afD
+afD
+afH
+ass
+aty
+auA
+afE
+ajW
+axT
+azq
+aAM
+aBC
+aCZ
+aEl
+aCZ
+aCZ
+aHW
+aIZ
+aIZ
+aIZ
+aIZ
+aIZ
+aNL
+aOC
+aQa
+aQT
+cIL
+aep
+afc
+anh
+afc
+aep
+adP
abW
aaa
aaa
aaa
-aYf
-aYf
-aYf
-aYf
-aYf
-arw
-aYJ
-aYJ
-aYJ
-aYJ
-aYJ
+aWG
+aWG
+aWG
+aWG
+aWG
+aqV
+aXj
+aXj
+aXj
+aXj
+aXj
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYT
-aYT
-aYT
-aYT
-aYP
-aYP
-aYP
-aYP
-aYP
-aZm
-bon
-bpM
-cRM
-duE
-duE
-dvD
-bwV
-byz
-bzM
-beD
-beD
-bCY
-bbi
-bFn
-aZn
-aZn
-aZm
-bjB
-bjB
-bjB
-bjB
-aZm
-aZn
-aZn
-aZo
-aYX
-aZn
-aZn
-aZo
-aZo
-aZo
-aZo
-aZm
-djh
-aZm
-aYP
-cbO
-cbO
-cbO
-cdb
-cdy
-cdR
-cdc
-ceD
-cbO
-cbO
-aYT
-aYT
-aYP
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXs
+aXs
+aXs
+aXs
+aXo
+aXo
+aXo
+aXo
+aXo
+aXL
+bmt
+bnN
+cJw
+cXw
+cXw
+cXH
+buI
+aXL
+ddH
+ddW
+dei
+bAw
+aZH
+bCH
+aXM
+aXM
+aXL
+bhP
+bhP
+bhP
+bhP
+aXL
+aXM
+aXM
+aXN
+aXw
+aXM
+aXM
+aXN
+aXN
+aXN
+aXN
+aXL
+cRR
+aXL
+aXo
+bYN
+bYN
+bYN
+caa
+caw
+caP
+cab
+cbB
+bYN
+bYN
+aXs
+aXs
+aXo
aaa
aaa
aad
@@ -126353,51 +112691,51 @@ aaa
aaa
aaa
abC
-chN
-ciJ
-cjl
-cjl
-cks
-ckS
-clJ
-cmj
-cjl
-cny
-cop
-cpa
-cpG
-cjl
-crw
-csz
-ctq
-cuj
-cvw
-cwr
-cxn
-cxP
-clR
-cue
-czF
-cAB
-cBt
-cCf
-cyU
-cDQ
-cue
-chc
-chc
-cCc
-cFO
-cLN
-cxT
-dkQ
-cln
-cxT
-cxT
-dnv
-chc
-cgN
-cgN
+cev
+cfo
+cfN
+cfN
+cgS
+chr
+cih
+ciF
+cfN
+cjU
+ckL
+clt
+clX
+cfN
+cnH
+coH
+cpx
+cqo
+crz
+csu
+ctp
+ctQ
+cip
+cqj
+cvF
+cwB
+cxt
+cye
+cuU
+czN
+cqj
+cdU
+cdU
+cyb
+cBH
+cGQ
+ctU
+cSq
+chM
+ctU
+ctU
+cTY
+cdU
+cdI
+cdI
aaa
aaa
aaa
@@ -126472,132 +112810,132 @@ acH
acH
acH
acH
-afR
-afR
-afR
-afR
-aiR
-ajK
-afR
+afD
+afD
+afD
+afD
+aiz
+ajr
+afD
acH
-afV
-aym
-auf
-aym
-afS
-akp
-cYo
-cJK
-aBt
-aCl
-aDJ
-aDI
-aGA
-aHL
-aIK
-aJQ
-aJQ
-aJQ
-aMS
-aJR
-aOU
-aPY
-aRA
-aSy
-cOR
+afH
+axF
+atz
+axF
+afE
+ajW
+cLA
+cFt
+aAL
+aBD
+aDa
+aCZ
+aFO
+aGW
+aHU
+aIY
+aIY
+aIY
+aLP
+aIZ
+aNM
+aOJ
+aQh
+aRf
+cIN
+aSB
+ahd
aTX
-ahr
-aVt
-aVP
-aez
-adZ
-akG
+aUt
+aep
+adP
+akm
abC
abC
abC
-aYg
-aYg
-aYg
-aYg
-aYg
-arw
-aYg
-aYg
-aYg
-aYg
-aYg
+aWH
+aWH
+aWH
+aWH
+aWH
+aqV
+aWH
+aWH
+aWH
+aWH
+aWH
abC
abC
abC
abC
abD
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-aYP
-bjB
-bjB
-bjB
-bjB
-arw
-bpN
-cRM
-duE
-duE
-dvD
-bwW
-bvm
-aZn
-aZn
-aZn
-aZn
-aZm
-aZn
-aZn
-aZm
-aZm
-bjB
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+aXo
+bhP
+bhP
+bhP
+bhP
+aqV
+bnO
+cJw
+cXw
+cXw
+cXH
+buJ
+bwh
+bxt
+bcY
+bcY
+bAy
+aXL
+aXM
+aXM
+aXL
+aXL
+bhP
aaa
aaa
-bjB
-aZm
-aZm
-aYP
-aYT
-aYT
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aZm
-cac
-aZm
-aYP
-cbO
-cco
-ccG
-cdc
-cdf
-cdf
-cdc
-ceE
-ceZ
-cbO
-aYT
-aYT
-aYP
+bhP
+aXL
+aXL
+aXo
+aXs
+aXs
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXL
+bXc
+aXL
+aXo
+bYN
+bZn
+bZF
+cab
+cae
+cae
+cab
+cbC
+cbX
+bYN
+aXs
+aXs
+aXo
aaa
aaa
aaa
@@ -126609,52 +112947,52 @@ aaa
aaa
aaa
aaa
-chN
-cij
-ciK
-cjl
-cjI
-cjl
-ckT
-clJ
-cmk
-cmS
-cnz
-cnz
-cnz
-cnz
-cqt
-crx
-csx
-ctr
-cUn
-cjU
-cws
-cxo
-cxo
-cxo
-cxo
-czG
-cue
-cBu
-cCg
-cDc
-czG
-czG
-czG
-cxo
-cxo
-cxo
-cjU
-cnL
-dnk
-coD
-cgL
-chc
-cgu
-cgu
-cgR
-cgN
+cev
+ceO
+cfp
+cfN
+cgj
+cfN
+chs
+cih
+ciG
+cjo
+cjV
+cjV
+cjV
+cjV
+cmH
+cnI
+coF
+cpy
+cKq
+cgv
+csv
+ctq
+ctq
+ctq
+ctq
+cvG
+cqj
+cxu
+cyf
+cza
+cvG
+cvG
+cvG
+ctq
+ctq
+ctq
+cgv
+ckh
+cTR
+ckZ
+cdG
+cdU
+cdq
+cdq
+cdM
+cdI
aaa
aaa
aaa
@@ -126737,37 +113075,37 @@ acH
abW
abW
acH
-afV
-asY
-aym
-cYZ
-akH
-axE
-cZm
-cJK
-aBs
-aCm
-aDK
-aEX
-aGB
-aDK
-aIN
-aJS
-aJS
-aJS
-aMT
-aNV
-aOV
-aPZ
-aRB
-dbp
-cOS
-aTY
-afq
-afV
-aez
-aez
-adZ
+afH
+ast
+axF
+cLP
+akn
+awX
+cLU
+cFt
+aAK
+aBE
+aDb
+aEm
+aFP
+aDb
+aHX
+aJa
+aJa
+aJa
+aLQ
+aMQ
+aNN
+aOK
+aQi
+cMX
+cIO
+aSC
+afc
+afH
+aep
+aep
+adP
abW
aaa
aaa
@@ -126777,7 +113115,7 @@ abC
abC
abC
abC
-arw
+aqV
abC
abC
abC
@@ -126787,131 +113125,131 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
aaa
aaa
-aYP
-aYP
-aYT
-aYT
-aYT
-aYT
-aYT
-aYP
-bjB
-aZc
+aXo
+aXo
+aXs
+aXs
+aXs
+aXs
+aXs
+aXo
+bhP
+aXB
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-bvu
-bwX
-bjB
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-bjB
+aqV
+bnO
+cJw
+cXw
+cXw
+cXH
+buK
+aXL
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+bhP
aaa
aaa
aaa
aaa
-bjB
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-aYP
-cbO
-ccp
-cbO
-cdd
-cdy
-cdy
-cco
-cej
-cfa
-cbO
-aYT
-aYT
+bhP
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+aXo
+bYN
+bZo
+bYN
+cac
+caw
+caw
+bZn
+cbh
+cbY
+bYN
+aXs
+aXs
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-chO
-cik
-ciL
-cjm
-cjJ
-cjm
-ckU
-clK
-ckU
-ckU
-ckU
-ckU
-ckU
-ckU
-cqu
-cry
-cjG
-cte
-cUn
-cvx
-cwt
-cxo
-cxQ
-cyF
-cyY
-czH
-cAC
-cBv
-cCh
-cBz
-cDR
-cEw
-cxQ
-cyF
-cyY
-cxo
-chc
-clq
-cgL
-cgL
-ckF
-chc
-cgR
-cgR
-cgR
-cgN
+cew
+ceP
+cfq
+cfO
+cgk
+cfO
+cht
+cii
+cht
+cht
+cht
+cht
+cht
+cht
+cmI
+cnJ
+cgh
+cpl
+cKq
+crA
+csw
+ctq
+ctR
+cuF
+cuY
+cvH
+cwC
+cxv
+cyg
+cxz
+czO
+cAs
+ctR
+cuF
+cuY
+ctq
+cdU
+chP
+cdG
+cdG
+chf
+cdU
+cdM
+cdM
+cdM
+cdI
aaa
aaa
aaa
@@ -126979,100 +113317,100 @@ aaa
aaa
aaa
abW
-adZ
-adZ
-adZ
-afV
-adZ
-adZ
-adZ
-adZ
-adZ
-aez
-aez
-aez
-aez
-aez
-aez
-afV
-afV
-afV
-afV
-afV
-cZj
-cYo
-azY
-aBv
-aCn
-aDL
-aEY
-aGC
-aHM
-aIK
-cMf
-aJQ
-aJQ
-aMU
-aNW
-aLm
+adP
+adP
+adP
+afH
+adP
+adP
+adP
+adP
+adP
+aep
+aep
+aep
+aep
+aep
+aep
+afH
+afH
+afH
+afH
+afH
+cLT
+cLA
+azq
+aAN
+aBF
+aDc
+aEn
+aFQ
+aGX
+aHU
+cGY
+aIY
+aIY
+aLR
+aMR
+aKq
+aOL
aQa
-aRt
-dbp
-cOF
-anC
-aez
-aez
-aez
-aez
+cMX
+cIL
+anh
+aep
+aep
+aep
+aep
abW
abW
aaa
aaa
aaa
-aYe
-aYe
-aYe
-aYe
-aYe
-arw
-aYe
-aYe
-aYe
-aYe
-aYe
+aWF
+aWF
+aWF
+aWF
+aWF
+aqV
+aWF
+aWF
+aWF
+aWF
+aWF
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
aaa
aaa
aaa
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
-aYP
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
+aXo
aaa
abC
aaa
aaa
aaa
-arw
-dum
-duv
-duE
-duE
-bvv
-arw
+aqV
+cXq
+cXs
+cXw
+cXw
+ddm
+dds
aaa
-aYP
-aYP
+aXo
+aXo
aaa
aaa
aaa
@@ -127084,91 +113422,91 @@ aaa
aaa
aaa
aaa
-bjB
-bjB
-aYP
-aYP
-bjB
-bjB
-aYP
-aYP
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-aYT
-cbO
-cbO
-ccH
-cde
-cdz
-cdS
-cej
-cdf
-cfb
-cbO
-aYP
-aYP
+bhP
+bhP
+aXo
+aXo
+bhP
+bhP
+aXo
+aXo
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+aXs
+bYN
+bYN
+bZG
+cad
+cax
+caQ
+cbh
+cae
+cbZ
+bYN
+aXo
+aXo
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-chP
-cil
-ciM
-cjl
-cjK
-cjl
-ckV
-clJ
-clJ
-cmT
-clJ
-coq
-cpb
-cpb
-cqv
-crz
-cjG
-cts
-cUn
-cll
-cln
-cxo
-cxR
-cyG
-cyY
-czI
-cAD
-cBw
-cCi
-cBA
-cDS
-cEx
-cxQ
-cyF
-cFC
-cxo
-cjU
-cln
-cjU
-cjU
-cjU
-cjU
-cgR
-cgN
-cgN
-cgN
+cex
+ceQ
+cfr
+cfN
+cgl
+cfN
+chu
+cih
+cih
+cjp
+cih
+ckM
+clu
+clu
+cmJ
+cnK
+cgh
+cpz
+cKq
+chK
+chM
+ctq
+ctS
+cuG
+cuY
+cvI
+cwD
+cxw
+cyh
+cxA
+czP
+cAt
+ctR
+cuF
+cBv
+ctq
+cgv
+chM
+cgv
+cgv
+cgv
+cgv
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -127235,50 +113573,50 @@ abC
abC
abC
abC
-afw
-afS
-afw
-afq
-afq
-aUW
-adZ
-afS
-afV
-alO
-afS
-afV
-afV
-aez
-aez
-aez
-aez
-adZ
-aug
-aqG
-cYj
-akp
-cYo
-azY
-aBw
-aCo
-aDM
-aEZ
-aGD
-aHN
-azY
-azY
-azY
-cJK
-azY
-azY
-aLm
-aQb
-aRt
-dbp
-cOF
-aTZ
-aez
-aez
+afi
+afE
+afi
+afc
+afc
+aTA
+adP
+afE
+afH
+alt
+afE
+afH
+afH
+aep
+aep
+aep
+aep
+adP
+atA
+aqg
+cLv
+ajW
+cLA
+azq
+aAO
+aBG
+aDd
+aEo
+aFR
+aGY
+azq
+azq
+azq
+cFt
+azq
+azq
+aKq
+aOM
+aQa
+cMX
+cIL
+aSD
+aep
+aep
abW
abW
abW
@@ -127286,20 +113624,20 @@ abW
aaa
aaa
aaa
-aYf
-aYf
-aYf
-aYf
-aYf
-arw
-aYJ
-aYJ
-aYJ
-aYJ
-aYJ
+aWG
+aWG
+aWG
+aWG
+aWG
+aqV
+aXj
+aXj
+aXj
+aXj
+aXj
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -127307,12 +113645,12 @@ aaa
aaa
aaa
aaa
-aZc
-aYP
-aYP
-aYP
-aYP
-aYP
+aXB
+aXo
+aXo
+aXo
+aXo
+aXo
aaa
aaa
aaa
@@ -127320,13 +113658,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -127335,97 +113673,97 @@ aaa
aaa
abC
aaa
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-aYP
-aYP
-aYP
-aYP
-bjB
-bjB
-bjB
-aYT
-aYT
-aYT
-cbO
-cdf
-cdf
-cdf
-cdf
-cco
-cbO
-cbO
-aYP
-aYP
+bhP
+bhP
+bhP
+bhP
+bhP
+bhP
+aXo
+aXo
+aXo
+aXo
+bhP
+bhP
+bhP
+aXs
+aXs
+aXs
+bYN
+cae
+cae
+cae
+cae
+bZn
+bYN
+bYN
+aXo
+aXo
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-chP
-ciN
-cjl
-cjl
-cks
-ckW
-clJ
-cml
-cjl
-cnA
-cor
-cpc
-cpH
-cjl
-crA
-cjG
-cte
-cUn
-cll
-clj
-cxo
-cxS
-cyH
-cyZ
-czJ
-cAE
-cBx
-cCj
-cDd
-cDT
-cEy
-cEY
-cyH
-cFD
-cxo
-cjU
-dng
-coJ
-dmY
-dkN
-cjU
-cgR
-cgN
-cgN
+cex
+cfs
+cfN
+cfN
cgS
+chv
+cih
+ciH
+cfN
+cjW
+ckN
+clv
+clY
+cfN
+cnL
+cgh
+cpl
+cKq
+chK
+chI
+ctq
+ctT
+cuH
+cuZ
+cvJ
+cwE
+cxx
+cyi
+czb
+czQ
+cAu
+cAU
+cuH
+cBw
+ctq
+cgv
+cTP
+cle
+cTI
+cSo
+cgv
+cdM
+cdI
+cdI
+cdN
aaa
aaa
aaa
@@ -127492,49 +113830,49 @@ acI
acI
acI
acI
-afx
-afT
-agB
-ahr
-aih
-aiT
-ahr
-ahr
-cYf
-aCr
-amH
-cYm
-aoq
-afV
-aqG
-afV
-alR
-afq
-akq
-cYj
-akp
-akp
-cYo
-azY
-azY
-azY
-azY
-azY
-azY
-azY
-azY
-dam
-daG
-aOH
-aRj
-aNX
-aLm
-aQc
-aRt
-dbp
-cOV
-aTr
-cPs
+afj
+afF
+agn
+ahd
+ahQ
+aiB
+ahd
+ahd
+cLs
+aBJ
+amm
+cLy
+anT
+afH
+aqg
+afH
+alw
+afc
+ajX
+cLv
+ajW
+ajW
+cLA
+azq
+azq
+azq
+azq
+azq
+azq
+azq
+azq
+cMy
+cMO
+aNA
+aPQ
+aMS
+aKq
+aON
+aQa
+cMX
+cIP
+aRX
+cIT
abW
abW
abW
@@ -127543,20 +113881,20 @@ abW
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-arw
-aYg
-aYg
-aYg
-aYg
-aYg
+aWH
+aWH
+aWH
+aWH
+aWH
+aqV
+aWH
+aWH
+aWH
+aWH
+aWH
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -127566,10 +113904,10 @@ aaa
aaa
abC
aaa
-aYP
-aYP
-aYP
-aYP
+aXo
+aXo
+aXo
+aXo
aaa
aaa
aaa
@@ -127577,112 +113915,112 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
-aaa
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
+cGc
aaa
aaa
abC
aaa
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aZc
-bjB
-bjB
-bjB
-bjB
-bjB
-aYP
-aZc
+aXB
+bhP
+bhP
+bhP
+bhP
+bhP
+aXo
+aXB
aaa
aaa
abC
-bjB
-aYT
-aYT
-aYT
-aYT
-cbO
-cdg
-cdA
-cdf
-cek
-cbO
-cbO
-aYP
-aYP
-bjB
+bhP
+aXs
+aXs
+aXs
+aXs
+bYN
+caf
+cay
+cae
+cbi
+bYN
+bYN
+aXo
+aXo
+bhP
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgN
-cjl
-ckX
-clL
-cmm
-cjl
-cjl
-cjl
-cjl
-cjl
-cjl
-crB
-cjG
-cte
-cUn
-ckB
-dkU
-cxo
-cxo
-cxo
-cxo
-cxo
-cxo
-cBy
-cNt
-cDe
-cxo
-cxo
-cxo
-cxo
-cxo
-cxo
-chc
-cln
-cjU
-cll
-dnq
-cjU
-cgR
-cgN
-cgS
-cgS
+cdI
+cdI
+cfN
+chw
+cij
+ciI
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cnM
+cgh
+cpl
+cKq
+chb
+cSt
+ctq
+ctq
+ctq
+ctq
+ctq
+ctq
+cxy
+cHI
+czc
+ctq
+ctq
+ctq
+ctq
+ctq
+ctq
+cdU
+chM
+cgv
+chK
+cTT
+cgv
+cdM
+cdI
+cdN
+cdN
aaa
aaa
aaa
@@ -127749,49 +114087,49 @@ abC
abC
abC
abC
-afw
-afw
-afS
-afS
-afS
-adZ
-ajL
-akp
-akp
-akp
-aBC
-aCr
-aCr
-aCr
-aqj
-ahr
-asc
-asZ
-cYW
-cYW
-awv
-cYN
-ayC
-azZ
-aBx
-aCp
-aDN
-aFa
-aBx
-aBx
-aBx
-aJT
-aBx
-aBx
-aCp
-daX
-aOW
-aQd
-aRC
-dbt
-aTr
-aUa
-cPt
+afi
+afi
+afE
+afE
+afE
+adP
+ajs
+ajW
+ajW
+ajW
+aAU
+aBJ
+aBJ
+aBJ
+apJ
+ahd
+ary
+asu
+cLM
+cLM
+avP
+cLK
+axV
+azr
+aAP
+aBH
+aDe
+aEp
+aAP
+aAP
+aAP
+aJb
+aAP
+aAP
+aBH
+cMS
+aNO
+aOO
+aQj
+cMY
+aRX
+aSE
+cIU
abW
abW
abW
@@ -127805,7 +114143,7 @@ abC
abC
abC
abC
-arw
+aqV
abC
abC
abC
@@ -127834,13 +114172,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -127849,7 +114187,7 @@ aaa
aaa
abC
aaa
-aaa
+cGc
aaa
aaa
aaa
@@ -127867,79 +114205,79 @@ abC
aaa
aaa
abC
-bjB
-aYP
-aYP
-aYT
-aYT
-cbO
-cdh
-cdh
-cdh
-cdh
-cbO
-aYP
-aYP
-aYP
+bhP
+aXo
+aXo
+aXs
+aXs
+bYN
+cag
+cag
+cag
+cag
+bYN
+aXo
+aXo
+aXo
+aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
-aaa
-aaa
-aag
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgN
-cjl
-cjl
-cjl
-cjl
-cjl
-cgN
-cgN
-cgN
-cjg
-cqw
-crC
-cjG
-cte
-cUn
-cll
-cln
-cxo
-cxQ
-cyF
-cyY
-czK
-cAF
-cBz
-cCk
-cBz
-cDU
-cEz
-cxQ
-cyF
-cyY
-cxo
-chb
-cln
-cjU
-dnn
-dnr
-cjU
-cgN
-cgN
-cgN
-cgS
+cdI
+cdI
+cfN
+cfN
+cfN
+cfN
+cfN
+cdI
+cdI
+cdI
+cfI
+cmK
+cnN
+cgh
+cpl
+cKq
+chK
+chM
+ctq
+ctR
+cuF
+cuY
+cvK
+cwF
+cxz
+cyj
+cxz
+czR
+cAv
+ctR
+cuF
+cuY
+ctq
+cdT
+chM
+cgv
+cTS
+cTU
+cgv
+cdI
+cdI
+cdI
+cdN
aaa
aaa
aaa
@@ -128006,71 +114344,71 @@ aaa
aaa
aaa
aaa
-afy
-afU
-agC
-ahs
-afV
-adZ
-afV
-afV
-cYg
-cYj
-aez
-afV
-adZ
-akp
-aii
-aSe
-aot
-amJ
-cYX
-avj
-cYA
-afS
-ayD
-aAa
-akp
-akp
-cZC
-cYC
-cYm
-cYg
-cYl
-dav
-cYj
-akp
-akp
-auZ
-akH
-aQa
-aRD
-dbp
-aTq
-aUb
-cOV
-aTr
-aTr
-cPs
+afk
+afG
+ago
+ahe
+afH
+adP
+afH
+afH
+cLt
+cLv
+aep
+afH
+adP
+ajW
+ahR
+aQL
+anV
+amo
+cLN
+auD
+cLE
+afE
+axW
+azs
+ajW
+ajW
+cMb
+cLG
+cLy
+cLt
+cLx
+cMF
+cLv
+ajW
+ajW
+aut
+akn
+aOL
+aQk
+cMX
+aRW
+aSF
+cIP
+aRX
+aRX
+cIT
abW
abW
aaa
aaa
aaa
-aYe
-aYe
-aYe
-aYe
-aYe
-aYA
-aYe
-aYe
-aYe
-aYe
-aYe
+aWF
+aWF
+aWF
+aWF
+aWF
+aXb
+aWF
+aWF
+aWF
+aWF
+aWF
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -128091,13 +114429,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -128124,79 +114462,79 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
-aYP
-aYP
-aYP
-aYT
-bjB
-bjB
-bjB
-bjB
-aYP
-aYP
+aXo
+aXo
+aXo
+aXs
+bhP
+bhP
+bhP
+bhP
+aXo
+aXo
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgR
-cjg
-cqx
-crC
-cjG
-cte
-cVM
-cvy
-cln
-cxo
-cxR
-cyI
-cyY
-czL
-cAD
-cBA
-cCi
-cBA
-cDS
-cEA
-cxQ
-cyF
-cFC
-cxo
-cgL
-cln
-cjU
-cjU
-cjU
-cjU
-cgR
-cgN
-cgN
-cgS
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdM
+cfI
+cmL
+cnN
+cgh
+cpl
+cKG
+crB
+chM
+ctq
+ctS
+cuI
+cuY
+cvL
+cwD
+cxA
+cyh
+cxA
+czP
+cAw
+ctR
+cuF
+cBv
+ctq
+cdG
+chM
+cgv
+cgv
+cgv
+cgv
+cdM
+cdI
+cdI
+cdN
aaa
aaa
aaa
@@ -128263,71 +114601,71 @@ abC
abC
abC
abC
-afw
-afw
-agD
-aht
-afV
-adZ
-adZ
-aez
-aez
-afV
-aez
-aez
-aii
-aSe
-aiX
-cYt
-cYN
-cYK
-afV
-aht
-akp
-afS
-ayE
-aAb
-aBy
-aBy
-aBy
-aBy
-cMc
-cMc
-cMc
-cMc
-cMc
-aGE
-aGE
-aGE
-aGE
-aQe
-aRD
-dbp
-aTq
-aUc
-aUX
-aVu
-aVQ
-cPt
+afi
+afi
+agp
+ahf
+afH
+adP
+adP
+aep
+aep
+afH
+aep
+aep
+ahR
+aQL
+aiF
+cLC
+cLK
+cLJ
+afH
+ahf
+ajW
+afE
+axX
+azt
+aAQ
+aAQ
+aAQ
+aAQ
+cGX
+cGX
+cGX
+cGX
+cGX
+aFS
+aFS
+aFS
+aFS
+aOP
+aQk
+cMX
+aRW
+aSG
+aTB
+aTY
+aUu
+cIU
abW
abW
aaa
aaa
aaa
-aYf
-aYf
-aYf
-aYf
-aYf
-aYD
-aYJ
-aYJ
-aYJ
-aYJ
-aYJ
+aWG
+aWG
+aWG
+aWG
+aWG
+aXe
+aXj
+aXj
+aXj
+aXj
+aXj
abC
abC
-aXn
+aVO
aaa
aaa
aaa
@@ -128348,13 +114686,13 @@ abC
aaa
aaa
aaa
-arw
-dum
-duv
-duE
-dvl
-bvv
-arw
+aqV
+cXq
+cXs
+cXw
+cXx
+btm
+aqV
aaa
aaa
aaa
@@ -128381,12 +114719,12 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
-aYP
-aYP
-aYP
-bjB
+aXo
+aXo
+aXo
+bhP
aaa
aaa
aaa
@@ -128396,64 +114734,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgR
-cgN
-cjL
-cjL
-cjL
-cgN
-cgN
-cgN
-cgR
-cgR
-cjg
-cqy
+cdM
+cdM
+cdI
+cgm
+cgm
+cgm
+cdI
+cdI
+cdI
+cdM
+cdM
+cfI
+cmM
+cnN
+coE
+cpy
+cKq
crC
-csw
-ctr
-cUn
-cvz
-cln
-cxo
-cxS
-cyH
-cyZ
-czM
-cAE
-cBz
-cCl
-cBz
-cDT
-cEB
-cEY
-cyH
-cFD
-cxo
-cgL
-cln
-cmF
-cjU
-cgR
-cgR
-cgR
-cgN
-cgN
-cgR
+chM
+ctq
+ctT
+cuH
+cuZ
+cvM
+cwE
+cxz
+cyk
+cxz
+czQ
+cAx
+cAU
+cuH
+cBw
+ctq
+cdG
+chM
+cjb
+cgv
+cdM
+cdM
+cdM
+cdI
+cdI
+cdM
aaa
aaa
aaa
@@ -128521,70 +114859,70 @@ aaa
aaa
aaa
aaa
-afV
-afS
-aht
-afV
-adZ
-adZ
-adZ
-adZ
-aez
-aez
-adZ
-aht
-cYt
-cYE
-cYK
-afV
-afS
-adZ
-aht
-akp
-afS
-ayF
-aAc
-aBz
-aCq
-aDO
-aFb
-aGE
-aHO
-aIO
-aJU
-aGE
-aLH
-aGE
-aNY
-aGE
-aQa
-aRD
-dbp
-aTq
-aUd
-aUc
-aVv
-aVR
-cPt
+afH
+afE
+ahf
+afH
+adP
+adP
+adP
+adP
+aep
+aep
+adP
+ahf
+cLC
+cLI
+cLJ
+afH
+afE
+adP
+ahf
+ajW
+afE
+axY
+azu
+aAR
+aBI
+aDf
+aEq
+aFS
+aGZ
+aHY
+aJc
+aFS
+aKJ
+aFS
+aMT
+aFS
+aOL
+aQk
+cMX
+aRW
+aSH
+aSG
+aTZ
+aUv
+cIU
abW
abW
aaa
aaa
aaa
-aYg
-aYg
-aYg
-aYg
-aYg
-aYA
-aYg
-aYg
-aYg
-aYg
-aYg
+aWH
+aWH
+aWH
+aWH
+aWH
+aXb
+aWH
+aWH
+aWH
+aWH
+aWH
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -128605,13 +114943,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -128638,7 +114976,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -128653,64 +114991,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgR
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cgR
-cjg
-cjg
-crD
-cjG
-cte
-cUn
-dlB
-cln
-cxo
-cxo
-cxo
-cxo
-cxo
-cxo
-cBB
-cCm
-cDf
-cxo
-cxo
-cxo
-cxo
-cxo
-cxo
-clr
-cln
-cjX
-cjV
-cjU
-cjU
-cjV
-cjV
-cjU
-cgR
+cdM
+cdM
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cdM
+cfI
+cfI
+cnO
+cgh
+cpl
+cKq
+cSM
+chM
+ctq
+ctq
+ctq
+ctq
+ctq
+ctq
+cxB
+cyl
+czd
+ctq
+ctq
+ctq
+ctq
+ctq
+ctq
+chQ
+chM
+cgy
+cgw
+cgv
+cgv
+cgw
+cgw
+cgv
+cdM
aaa
aaa
aaa
@@ -128779,68 +115117,68 @@ aaa
aaa
aaa
aaa
-afV
-ahu
-afS
-adZ
-adZ
-adZ
-adZ
-aez
-aez
-afS
-aor
-cYu
-adZ
-adZ
-adZ
-adZ
-adZ
-aPE
-cZh
-afV
-ayG
-aAd
-cZu
-aym
-aym
-aFc
-aGE
-aGE
-aIP
-aGE
-aGE
-aLI
-aGE
-aNZ
-aGE
-aQa
-aRD
-dbp
-aTq
-aUe
-aUc
-aUc
-aVS
-cPt
+afH
+ahg
+afE
+adP
+adP
+adP
+adP
+aep
+aep
+afE
+anU
+cLD
+adP
+adP
+adP
+adP
+adP
+aOr
+cLS
+afH
+axZ
+azv
+cLW
+axF
+axF
+aEr
+aFS
+aFS
+aHZ
+aFS
+aFS
+aKK
+aFS
+aMU
+aFS
+aOL
+aQk
+cMX
+aRW
+aSI
+aSG
+aSG
+aUw
+cIU
abW
abW
-aXn
-aXn
+aVO
+aVO
aaa
aaa
abC
aaa
aaa
aaa
-aYE
+aXf
aaa
aaa
aaa
abC
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -128862,13 +115200,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -128895,7 +115233,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -128910,64 +115248,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgR
-cjL
-cjL
-ckY
-clM
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cqz
-crC
-cjG
-cte
-cUn
-dlC
-clo
-cxo
-cxQ
-cyF
-cyY
-czN
-cAG
-cBz
-cCn
-cBz
-cDV
-cEC
-cxQ
-cyF
-cyY
-cxo
-dlB
-cln
-cgL
-cjU
-cHk
-cll
-cHL
-cIa
-cjU
-cgR
+cdM
+cdM
+cgm
+cgm
+chx
+cik
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cmN
+cnN
+cgh
+cpl
+cKq
+cSN
+chN
+ctq
+ctR
+cuF
+cuY
+cvN
+cwG
+cxz
+cym
+cxz
+czS
+cAy
+ctR
+cuF
+cuY
+ctq
+cSM
+chM
+cdG
+cgv
+cDb
+chK
+cDC
+cDR
+cgv
+cdM
aaa
aaa
aaa
@@ -129035,56 +115373,56 @@ aaa
aaa
aaa
aaa
-afV
-afV
-ahv
-afS
-adZ
-adZ
-adZ
-adZ
-aez
-aez
-afS
-cYr
-cYu
-afV
-are
-are
-are
-are
-avk
-akH
-are
-afV
-afV
-aBB
-akp
-aym
-aFd
-aGE
-aHP
-aHP
-aHP
-aHP
-aLJ
-aHP
-aHP
-aGE
-aQa
-aRD
-dbp
-aTq
-aUf
-aUc
-cMm
-aVT
-cPt
+afH
+afH
+ahh
+afE
+adP
+adP
+adP
+adP
+aep
+aep
+afE
+cLB
+cLD
+afH
+aqD
+aqD
+aqD
+aqD
+auE
+akn
+aqD
+afH
+afH
+aAT
+ajW
+axF
+aEs
+aFS
+aHa
+aHa
+aHa
+aHa
+aKL
+aHa
+aHa
+aFS
+aOL
+aQk
+cMX
+aRW
+aSJ
+aSG
+cHc
+aUx
+cIU
abW
abE
aaa
aaa
-aXn
+aVO
aaa
abC
aaa
@@ -129096,7 +115434,7 @@ aaa
aaa
abC
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -129119,13 +115457,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -129152,7 +115490,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aag
@@ -129167,64 +115505,64 @@ aaa
aaa
aaa
aac
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgR
-cgR
-cjL
-cjL
-ckZ
-clN
-cmn
-cmU
-cnB
-cjL
-cjL
-cjL
-cjL
-crC
-cjG
-ctt
-cUn
-ckG
-cln
-cxo
-cxR
-cyF
-cyY
-czO
-cAD
-cBA
-cCi
-cBA
+cdM
+cdM
+cdM
+cgm
+cgm
+chy
+cil
+ciJ
+cjq
+cjX
+cgm
+cgm
+cgm
+cgm
+cnN
+cgh
+cpA
+cKq
+chg
+chM
+ctq
+ctS
+cuF
+cuY
+cvO
+cwD
+cxA
+cyh
+cxA
+czP
+cAz
+ctR
+cuI
+cBv
+ctq
+cBZ
+chM
+cmo
+cCT
+crB
+chK
+chK
cDS
-cED
-cxQ
-cyI
-cFC
-cxo
-cGg
-cln
-cpX
-cHc
-cvy
-cll
-cll
-cIb
-cjV
-cgR
+cgw
+cdM
aaa
aaa
aaa
@@ -129292,58 +115630,58 @@ aaa
aaa
aaa
aaa
-afV
-agE
-ahw
-afS
-adZ
-adZ
-adZ
-adZ
-adZ
-afV
-afV
-ahv
-cYu
-aez
-are
-asd
-ata
-auh
-avl
-aww
-axF
-ayH
-are
-cZv
-cZy
-cZy
-aFe
-aGE
-aHP
-aIQ
-aIQ
-aKW
-aLK
-aHP
-aOa
-aGE
-aQa
-aRE
-dbz
-aTq
-aUg
-aUc
-aUc
-aVT
-aWu
+afH
+agq
+ahi
+afE
+adP
+adP
+adP
+adP
+adP
+afH
+afH
+ahh
+cLD
+aep
+aqD
+arz
+asv
+atB
+auF
+avQ
+awY
+aya
+aqD
+cLX
+cLY
+cLY
+aEt
+aFS
+aHa
+aIa
+aIa
+aKa
+aKM
+aHa
+aMV
+aFS
+aOL
+aQl
+cMZ
+aRW
+aSK
+aSG
+aSG
+aUx
+aUY
abE
abE
aaa
aaa
aaa
-aXn
-aXn
+aVO
+aVO
aaa
aaa
aaa
@@ -129351,8 +115689,8 @@ abC
aaa
aaa
aaa
-aXn
-aXn
+aVO
+aVO
aaa
aaa
aaa
@@ -129376,13 +115714,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aac
@@ -129409,7 +115747,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -129424,64 +115762,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgR
-cgR
-cjL
-cjL
-cla
-clO
-cmo
-cmV
-cmV
-cos
-cpd
-cpI
-cpd
-crx
-csx
-ctu
-cUn
-chb
-cln
-cxo
-cxS
-cyH
-cyZ
-czP
-cAE
-cBz
-cCh
-cBz
+cdM
+cdM
+cdM
+cgm
+cgm
+chz
+cim
+ciK
+cjr
+cjr
+ckO
+clw
+clZ
+clw
+cnI
+coF
+cpB
+cKq
+cdT
+chM
+ctq
+ctT
+cuH
+cuZ
+cvP
+cwE
+cxz
+cyg
+cxz
+czQ
+cAA
+cAU
+cuH
+cBw
+ctq
+cdG
+chM
+cCn
+cgw
+cDc
+cDn
+cDD
cDT
-cEE
-cEY
-cyH
-cFD
-cxo
-cgL
-cln
-cGu
-cjV
-cHl
-cHw
-cHM
-cIc
-cjU
-cgS
+cgv
+cdN
aaa
aaa
aaa
@@ -129549,51 +115887,51 @@ aaa
aaa
aaa
aaa
-afV
-agF
-ahx
-afV
-afV
-afV
-adZ
-afV
-adZ
-afV
-aii
-aiX
-cYu
-adZ
-arf
-ase
-cLS
-atb
-atb
-atf
-axG
-atf
-are
-are
-are
-are
-arf
-are
-are
-aGE
-aGE
-aKX
-aLL
-aMW
-aGE
-aGE
-aQa
-aRD
-dbp
-aTq
-aUh
-aUc
-aUc
-aVU
-aWu
+afH
+agr
+ahj
+afH
+afH
+afH
+adP
+afH
+adP
+afH
+ahR
+aiF
+cLD
+adP
+aqE
+arA
+cGT
+asw
+asw
+asz
+awZ
+asz
+aqD
+aqD
+aqD
+aqD
+aqE
+aqD
+aqD
+aFS
+aFS
+aKb
+aKN
+aLS
+aFS
+aFS
+aOL
+aQk
+cMX
+aRW
+aSL
+aSG
+aSG
+aUy
+aUY
abE
abE
aaa
@@ -129602,11 +115940,11 @@ aaa
aaa
aaa
aaa
-aXn
-aXn
-aXn
-aXn
-aXn
+aVO
+aVO
+aVO
+aVO
+aVO
aaa
aaa
aaa
@@ -129633,13 +115971,13 @@ abC
aaa
aaa
aaa
-arw
-dum
-dux
-duE
-duE
-bvv
-arw
+aqV
+cXq
+cXt
+cXw
+cXw
+btm
+aqV
aaa
aaa
aaa
@@ -129666,7 +116004,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -129681,64 +116019,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aac
-aac
-aac
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgR
-cgR
-cgR
-cjL
-cjL
-clb
-clO
-cmp
-cmW
-clN
-cot
-cpe
-cpJ
-cpe
-crE
-cjG
-ctv
-cUn
-cgL
-cln
-cxo
-cxo
-cxo
-cxo
-cxo
-cxo
-cBC
-cCh
-cDg
-cxo
-cxo
-cxo
-cxo
-cxo
-cxo
-chb
-cln
-cgL
-cjU
-cjU
-cll
-cll
-cll
-cIv
-cgS
+cdI
+cdM
+cdM
+cdM
+cgm
+cgm
+chA
+cim
+ciL
+cjs
+cil
+ckP
+clx
+cma
+clx
+cnP
+cgh
+cpC
+cKq
+cdG
+chM
+ctq
+ctq
+ctq
+ctq
+ctq
+ctq
+cxC
+cyg
+cze
+ctq
+ctq
+ctq
+ctq
+ctq
+ctq
+cdT
+chM
+cdG
+cgv
+cgv
+chK
+chK
+chK
+cEm
+cdN
aaa
aaa
aaa
@@ -129806,51 +116144,51 @@ aaa
aaa
aaa
aaa
-afW
-agG
-ahy
-aii
-aiU
-ajM
-akE
-afo
-aSe
-aSe
-any
-ahs
-cYu
-aOF
-are
-cJE
-atc
-aui
-avm
-atf
-avl
-aww
-aAe
-aww
-aCs
-aDP
-aFf
-aGF
-are
-aIR
-aJV
-aKY
-aLM
-aJX
-aOb
-are
-aQf
-aRF
-dbB
-aTs
-aUi
+afI
+ags
+ahk
+ahR
+aiC
+ajt
+akk
+afa
+aQL
+aQL
+and
+ahe
+cLD
+aNy
+aqD
+cFp
+asx
+atC
+auG
+asz
+auF
+avQ
+azw
+avQ
+aBK
+aDg
+aEu
+aFT
+aqD
+aIb
+aJd
+aKc
+aKO
+aJe
+aMW
+aqD
+aOQ
+aQm
+cNa
+aRY
+aSM
+aTC
+aSG
+aUz
aUY
-aUc
-aVV
-aWu
abE
abE
aaa
@@ -129890,13 +116228,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -129923,7 +116261,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -129938,64 +116276,64 @@ aaa
aaa
aaa
aaa
-aad
-aac
-aac
-aac
-aac
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgN
-cgN
-cgN
-cjL
-cjL
-clc
-clO
-cmq
-cmX
-cmX
-cou
-cpf
-cpK
-cpf
-crF
-cjG
-ctv
-cUn
-cgL
-cnM
-cxo
-cxQ
-cyF
-cyY
-czQ
-cAH
-cBz
-cCh
-cBz
-cDW
-cEF
-cxQ
-cyF
-cyY
-cxo
-cgL
-cln
-ckH
-cgu
-cjU
-cHx
-cHN
-cId
-cIv
-cgS
+cdI
+cdI
+cdI
+cdI
+cgm
+cgm
+chB
+cim
+ciM
+cjt
+cjt
+ckQ
+cly
+cmb
+cly
+cnQ
+cgh
+cpC
+cKq
+cdG
+cki
+ctq
+ctR
+cuF
+cuY
+cvQ
+cwH
+cxz
+cyg
+cxz
+czT
+cAB
+ctR
+cuF
+cuY
+ctq
+cdG
+chM
+chh
+cdq
+cgv
+cDo
+cDE
+cDU
+cEm
+cdN
aaa
aaa
aaa
@@ -130063,51 +116401,51 @@ aaa
aaa
aaa
aaa
-afW
-agH
-ahz
-ahB
-aiV
-ajM
-akE
-afo
-ale
-afo
-afo
-aov
-apt
-aql
-are
-ase
-atd
-auj
-avn
-awx
-atf
-atf
-atf
-atb
-axG
-aDQ
-aFf
-aGG
-are
-aIR
-aJX
-aKZ
-aLN
+afI
+agt
+ahl
+ahn
+aiD
+ajt
+akk
+afa
+akK
+afa
+afa
+anW
+aoT
+apL
+aqD
+arA
+asy
+atD
+auH
+avR
+asz
+asz
+asz
+asw
+awZ
+aDh
+aEu
+aFU
+aqD
+aIb
+aJe
+aKd
+aKP
+aLT
aMX
-aOc
-are
-aQg
-aRG
-aSA
-aTt
-aUj
-aUZ
-aVw
-aVW
-cPt
+aqD
+aOR
+aQn
+aRh
+aRZ
+aSN
+aTD
+aUa
+aUA
+cIU
abE
aaa
aaa
@@ -130147,13 +116485,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -130180,7 +116518,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -130195,64 +116533,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aad
-aad
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgR
-cgN
-cgN
-cjL
-cjL
-ckZ
-clN
-cmr
-cmU
-cnC
-cjL
-cjL
-cjL
-cjL
-crG
-cjG
-ctv
-cUn
-chb
-cln
-cxo
-cxR
-cyJ
-cyY
-czR
-cAD
-cBA
-cCp
-cBA
-cDS
-cEG
-cxQ
-cyF
-cFC
-cxo
-cgL
-cln
-cnX
-cjU
-cjV
-cjV
-cjV
-cjU
-cjU
-cgR
+cdI
+cdM
+cdI
+cdI
+cgm
+cgm
+chy
+cil
+ciN
+cjq
+cjY
+cgm
+cgm
+cgm
+cgm
+cnR
+cgh
+cpC
+cKq
+cdT
+chM
+ctq
+ctS
+cuJ
+cuY
+cvR
+cwD
+cxA
+cyn
+cxA
+czP
+cAC
+ctR
+cuF
+cBv
+ctq
+cdG
+chM
+ckt
+cgv
+cgw
+cgw
+cgw
+cgv
+cgv
+cdM
aaa
aaa
aaa
@@ -130320,51 +116658,51 @@ aaa
aaa
aaa
aaa
-afW
-agI
-ahA
-ahw
-aiW
-afV
-afV
-afV
-adZ
-afS
-alR
-aeV
-cYo
-cYg
-are
-asf
-atb
-atb
-atb
-atf
-axH
-cLS
-aAf
-atd
-axG
-aDR
-aFf
-aGF
-are
-aIR
-aJX
-aKZ
-aLM
-aJX
-aOc
-are
-aQh
-aRD
-dbC
-cOW
-aTr
-aTr
-aTr
-aTr
-cPB
+afI
+agu
+ahm
+ahi
+aiE
+afH
+afH
+afH
+adP
+afE
+alw
+aeJ
+cLA
+cLt
+aqD
+arB
+asw
+asw
+asw
+asz
+axa
+cGT
+azx
+asy
+awZ
+aDi
+aEu
+aFT
+aqD
+aIb
+aJe
+aKd
+aKO
+aJe
+aMX
+aqD
+aOS
+aQk
+cNb
+cIQ
+aRX
+aRX
+aRX
+aRX
+cIV
abW
aaa
aaa
@@ -130404,13 +116742,13 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-duE
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXw
+cXI
+aqV
aaa
aaa
aaa
@@ -130422,14 +116760,14 @@ aaa
aaa
aaa
aaa
-aZt
-aZt
-aZt
-aZf
-aZI
-aZf
-aZf
-aZf
+aXS
+aXS
+aXS
+aXE
+aYh
+aXE
+aXE
+aXE
aaa
aaa
aaa
@@ -130437,7 +116775,7 @@ abC
aaa
aaa
abC
-arw
+aqV
abC
aaa
aaa
@@ -130452,64 +116790,64 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgN
-cgR
-cgR
-cjL
-cjL
-cld
-clP
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cqz
-crH
-cjG
-ctv
-cUn
-ckG
-cln
-cxo
-cxS
-cyH
-cyZ
-czS
-cAE
-cBD
-cCq
-cBz
-cDT
-cEH
-cEY
-cyH
-cFD
-cxo
-ckF
-cln
-cmF
-cjU
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
+cdI
+cdI
+cdM
+cdM
+cgm
+cgm
+chC
+cin
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cmN
+cnS
+cgh
+cpC
+cKq
+chg
+chM
+ctq
+ctT
+cuH
+cuZ
+cvS
+cwE
+cxD
+cyo
+cxz
+czQ
+cAD
+cAU
+cuH
+cBw
+ctq
+chf
+chM
+cjb
+cgv
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -130577,46 +116915,46 @@ aaa
aaa
aaa
aaa
-afW
-agJ
-ahB
-aij
-aiX
-afS
-adZ
-adZ
-afV
-afq
-amJ
-aow
-cYA
-adZ
-are
-asg
-ata
-ata
-ata
-ata
-ata
-ayI
-aAg
-aBD
-aCt
-aDR
-aFf
-cZT
-are
-aIR
-aJX
-aKZ
-aLM
-aJX
-aOd
-are
-aQh
-aRD
-dbp
-cOF
+afI
+agv
+ahn
+ahS
+aiF
+afE
+adP
+adP
+afH
+afc
+amo
+anX
+cLE
+adP
+aqD
+arC
+asv
+asv
+asv
+asv
+asv
+ayb
+azy
+aAV
+aBL
+aDi
+aEu
+cMm
+aqD
+aIb
+aJe
+aKd
+aKO
+aJe
+aMY
+aqD
+aOS
+aQk
+cMX
+cIL
acH
acH
acH
@@ -130661,13 +116999,13 @@ abC
aaa
aaa
aaa
-arw
-dum
-dux
-duE
-dvm
-bvv
-arw
+aqV
+cXq
+cXt
+cXw
+cXy
+btm
+aqV
aaa
aaa
aaa
@@ -130677,24 +117015,24 @@ aaa
abD
aaa
aaa
-aZf
-aZf
-aZt
-aZt
-aZt
-aZt
-aZt
-aZf
-aZf
-aZf
-aZf
-aZf
-aZf
-aZI
-aZt
-aZt
-aZf
-aZf
+aXE
+aXE
+aXS
+aXS
+aXS
+aXS
+aXS
+aXE
+aXE
+aXE
+aXE
+aXE
+aXE
+aYh
+aXS
+aXS
+aXE
+aXE
abC
aaa
aaa
@@ -130709,63 +117047,63 @@ aaa
aaa
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgN
-cgR
-cgR
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cjL
-cgN
-cgN
-cjg
-crC
-cjG
-ctv
-cUn
-cgL
-cln
-cxo
-cxo
-cxo
-cxo
-cxo
-cAI
-cBE
-cBE
-cBE
-cAI
-cxo
-cxo
-cxo
-cxo
-cxo
-chc
-cln
-cgL
-cgu
-cgR
-cgR
-cgN
-cgN
-cgN
+cdI
+cdI
+cdM
+cdM
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cgm
+cdI
+cdI
+cfI
+cnN
+cgh
+cpC
+cKq
+cdG
+chM
+ctq
+ctq
+ctq
+ctq
+ctq
+cwI
+cxE
+cxE
+cxE
+cwI
+ctq
+ctq
+ctq
+ctq
+ctq
+cdU
+chM
+cdG
+cdq
+cdM
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -130834,46 +117172,46 @@ aaa
aaa
aaa
aaa
-afW
-agK
-ahC
-aik
-afS
-afS
-adZ
-adZ
-afV
-afq
-amK
-afS
-adZ
-adZ
-are
-ash
-atf
-auk
-avo
-awy
-awy
-ayJ
-aAh
-atf
-axG
-aDS
-are
-are
-are
-are
-are
-aKZ
-aLM
-are
-are
-are
-aQi
-aRD
-dbp
-cOF
+afI
+agw
+aho
+ahT
+afE
+afE
+adP
+adP
+afH
+afc
+amp
+afE
+adP
+adP
+aqD
+arD
+asz
+atE
+auI
+avS
+avS
+ayc
+azz
+asz
+awZ
+aDj
+aqD
+aqD
+aqD
+aqD
+aqD
+aKd
+aKO
+aqD
+aqD
+aqD
+aOT
+aQk
+cMX
+cIL
acH
acH
acH
@@ -130911,50 +117249,50 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
aaa
aaa
aaa
aaa
aaa
aaa
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZf
-aZf
-aZf
-aZt
-aZt
-aZt
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXE
+aXE
+aXE
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -130966,63 +117304,63 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgN
-cgN
-cgN
-cgN
-cgN
-cjL
-cjL
-cjL
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-ckN
-crI
-cst
-ctv
-cVX
-cgL
-cjt
-clg
-cxT
-cmA
-chc
-czT
-cAJ
-cAK
-cAK
-cAK
-cDX
-cEI
-cEZ
-cFq
-czT
-cFP
-cGh
-coD
-cgL
-chc
-cgR
-cgR
-cgN
-cgN
-cgN
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cdM
+cdI
+cdI
+cdI
+cdI
+cdI
+cgm
+cgm
+cgm
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+chm
+cnT
+coB
+cpC
+cKH
+cdG
+cfV
+chF
+ctU
+ciW
+cdU
+cvT
+cwJ
+cwK
+cwK
+cwK
+czU
+cAE
+cAV
+cBl
+cvT
+cBI
+cCa
+ckZ
+cdG
+cdU
+cdM
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -131091,193 +117429,193 @@ aaa
aaa
aaa
aaa
-afV
-agL
-ahw
-ail
-afS
-adZ
-adZ
-adZ
-adZ
-afq
-amM
-adZ
-apv
-apv
-apv
-asi
-atg
-aul
-apv
-apv
-cJI
-ayK
-aAi
-aBE
-aCu
-aDT
-aFg
-aFg
-aHQ
-aIS
-aJY
-aDT
-aLO
-aFg
-aFg
-aOX
-aQj
-aRH
-dbp
-cOF
-acH
-acH
-acH
-acH
-aUk
-aUk
-aUk
-aUk
-aUk
-aUk
-aUk
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aab
-aab
-aaa
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
-aaa
-aaa
-aaa
-aZf
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZf
-aZf
-aZf
-aZf
-aZt
-aZt
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-cgN
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgN
-cmY
-cmY
-cmY
-cmY
-cmY
-cjg
-crJ
-csu
-ctw
-cUn
-cjX
-dlE
-cln
-cll
-cxT
-cpX
-czU
-cAK
-cBF
-cAK
-cBF
-cAK
-cEJ
-cEZ
+afH
+agx
+ahi
+ahU
+afE
+adP
+adP
+adP
+adP
+afc
+amr
+adP
+aoV
+aoV
+aoV
+arE
+asA
+atF
+aoV
+aoV
cFr
-cFE
-cFQ
-cGi
-cgL
-cGu
-cjU
-cgN
-cgN
-cgN
+ayd
+azA
+aAW
+aBM
+aDk
+aEv
+aEv
+aHb
+aIc
+aJf
+aDk
+aKQ
+aEv
+aEv
+aNP
+aOU
+aQo
+cMX
+cIL
+acH
+acH
+acH
+acH
+aSO
+aSO
+aSO
+aSO
+aSO
+aSO
+aSO
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aab
+aab
+aaa
+aab
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
+aaa
+aaa
+aaa
+aXE
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXE
+aXE
+aXE
+aXE
+aXS
+aXS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aaa
+cdI
+cdI
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdI
+cju
+cju
+cju
+cju
+cju
+cfI
+cnU
+coC
+cpD
+cKq
+cgy
+cSO
+chM
+chK
+ctU
+cmo
+cvU
+cwK
+cxF
+cwK
+cxF
+cwK
+cAF
+cAV
+cBm
+cBx
+cBJ
+cCb
+cdG
+cCn
+cgv
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -131348,57 +117686,57 @@ aaa
aaa
aaa
aaa
-afV
-agM
-ahD
-ahw
-afV
-adZ
-adZ
-adZ
-afS
-afq
-amK
-afV
-apv
-aqn
-arg
-asj
-ath
-aum
-arg
-awz
-apv
-ayL
-aAj
-aBF
-awy
-aDU
-awy
-awy
-aHR
-aIT
-awy
-aDU
-awy
-awy
-awy
-aOY
-aQk
-aRI
-dbz
-aTu
-aUk
-aUk
-aUk
-aUk
-aUk
-aWK
-aWL
-aXo
-aXG
-aXU
-aUk
+afH
+agy
+ahp
+ahi
+afH
+adP
+adP
+adP
+afE
+afc
+amp
+afH
+aoV
+apN
+aqF
+arF
+asB
+atG
+aqF
+avT
+aoV
+aye
+azB
+aAX
+avS
+aDl
+avS
+avS
+aHc
+aId
+avS
+aDl
+avS
+avS
+avS
+aNQ
+aOV
+aQp
+cMZ
+aSa
+aSO
+aSO
+aSO
+aSO
+aSO
+aVn
+aVo
+aVP
+aWh
+aWv
+aSO
abC
aaa
aaa
@@ -131432,45 +117770,45 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
aaa
aaa
aaa
-aZt
-aZt
-bAd
-bAd
-bBN
-bBN
-bBN
-bBN
-bBN
-bBN
-bAd
-bAd
-byS
-cMH
-byS
-bBN
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-byS
-cae
-byS
-aZt
-aZt
-aZt
-aZt
+aXS
+aXS
+bxK
+bxK
+bzs
+bzs
+bzs
+bzs
+bzs
+bzs
+bxK
+bxK
+bwA
+cHu
+bwA
+bzs
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+bwA
+bXe
+bwA
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -131480,6 +117818,62 @@ aaa
aad
aaa
aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aaa
+cdM
+cdI
+cft
+cft
+cft
+cft
+cft
+cdI
+cdI
+cju
+cjZ
+ckR
+clz
+cmc
+cmO
+cnV
+cgh
+cpC
+cKq
+cdU
+ctU
+cfV
+cSs
+cuK
+cdU
+cvT
+cwL
+cxG
+cyp
+cxG
+czV
+cAE
+cAV
+cBn
+cvT
+ckh
+ckZ
+cdG
+cdG
+cgv
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -131490,77 +117884,21 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-cgR
-cgN
-ciO
-ciO
-ciO
-ciO
-ciO
-cgN
-cgN
-cmY
-cnD
-cov
-cpg
-cpL
-cqA
-crK
-cjG
-ctv
-cUn
-chc
-cxT
-cjt
-dkS
-cyK
-chc
-czT
-cAL
-cBG
-cCr
-cBG
-cDY
-cEI
-cEZ
-cFs
-czT
-cnL
-coD
-cgL
-cgL
-cjU
-cgR
-cgR
-cgN
-cgN
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -131605,57 +117943,57 @@ aaa
aaa
aaa
aaa
-afV
-afV
-ahv
-afV
-afV
-adZ
-adZ
-adZ
-alP
-akq
-amK
-afV
-apv
-aqo
-arh
-ask
-ath
-aun
-avp
-awA
-axI
-axI
-axI
-aBG
-aCv
-aDV
-axI
-axI
-axI
-axG
-atf
-aLa
-atf
-atf
-atf
-aOZ
-aQl
-aRF
-dbB
-aTv
-aUl
-aVa
-aVx
-aVX
-aWv
-cKg
-aWv
-aWv
-aWv
-aXV
-aUk
+afH
+afH
+ahh
+afH
+afH
+adP
+adP
+adP
+alu
+ajX
+amp
+afH
+aoV
+apO
+aqG
+arG
+asB
+atH
+auJ
+avU
+axb
+axb
+axb
+aAY
+aBN
+aDm
+axb
+axb
+axb
+awZ
+asz
+aKe
+asz
+asz
+asz
+aNR
+aOW
+aQm
+cNa
+aSb
+aSP
+aTE
+aUb
+aUB
+aUZ
+cFK
+aUZ
+aUZ
+aUZ
+aWw
+aSO
abC
aaa
aaa
@@ -131689,45 +118027,110 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
aaa
aaa
aaa
-aZt
-bAd
-byS
-byS
-bDa
-cMH
-byS
-bBN
-byS
-byS
-cMH
-byS
-bxu
-dge
-bAe
-bAd
-cMH
-byS
-bAd
-bBN
-aZH
-aZt
-cMH
-bYK
-byS
-aZt
-aZt
-aZt
-aZt
+aXS
+bxK
+bwA
+bwA
+bAA
+cHu
+bwA
+bzs
+bwA
+bwA
+cHu
+bwA
+bvh
+cQj
+bxL
+bxK
+cHu
+bwA
+bxK
+bzs
+aYg
+aXS
+cHu
+bVL
+bwA
+aXS
+aXS
+aXS
+aXS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aaa
+cdM
+cdI
+cft
+cfP
+cgn
+cgT
+cft
+cdM
+cdI
+cju
+cka
+ckS
+clA
+cmd
+cmP
+cnW
+coH
+cYb
+cKq
+cgv
+chb
+cSq
+cSS
+cdU
+cgv
+cvT
+cvT
+cvT
+cvT
+cvT
+cvT
+cvT
+cvT
+cvT
+cvT
+chM
+cdG
+cdG
+ciW
+cgv
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -131738,86 +118141,21 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cgR
-cgN
-ciO
-cjn
-cjM
-ckt
-ciO
-cgR
-cgN
-cmY
-cnE
-cow
-cph
-cpM
-cqB
-crL
-csz
-dyJ
-cUn
-cjU
-ckB
-dkQ
-dlL
-chc
-cjU
-czT
-czT
-czT
-czT
-czT
-czT
-czT
-czT
-czT
-czT
-cln
-cgL
-cgL
-cmA
-cjU
-cgR
-cgR
-cgN
-cgN
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -131863,56 +118201,56 @@ aaa
aaa
aaa
aaa
-afV
-ahu
-afV
-adZ
-adZ
-adZ
-adZ
-alQ
-amJ
-anz
-adZ
-apv
-apv
-apv
-ask
-ath
-auo
-apv
-apv
-axI
-ayM
-aAk
-aBH
-aCw
-aDW
-aAk
-aGH
-axI
-aIU
-aJZ
-aLb
-aJZ
-aMY
-cJZ
-are
-aQm
-aRJ
-dbI
-aTw
-aUm
-aVb
-aVy
-aVY
-aWw
-aWL
-aWw
-aXp
-aXH
-aXW
-aUk
+afH
+ahg
+afH
+adP
+adP
+adP
+adP
+alv
+amo
+ane
+adP
+aoV
+aoV
+aoV
+arG
+asB
+atI
+aoV
+aoV
+axb
+ayf
+azC
+aAZ
+aBO
+aDn
+azC
+aFV
+axb
+aIe
+aJg
+aKf
+aJg
+aLU
+cFD
+aqD
+aOX
+aQq
+cNc
+aSc
+aSQ
+aTF
+aUc
+aUC
+aVa
+aVo
+aVa
+aVQ
+aWi
+aWx
+aSO
abC
aaa
aaa
@@ -131946,48 +118284,110 @@ abC
aaa
aaa
aaa
-arw
-dum
-duv
-duE
-dvq
-bvv
-arw
+aqV
+cXq
+cXs
+cXw
+cXA
+btm
+aqV
aaa
aaa
-aZf
-aZt
-bAd
-byS
-bFo
-byQ
-dhc
-byS
-cMH
-cMH
-cbr
-dfU
-dgQ
-dhZ
-cbr
-cbr
-cbr
-diU
-diX
-bWU
-byS
-bAd
-byS
-byS
-dji
-cMH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXE
+aXS
+bxK
+bwA
+bCI
+bwy
+cQI
+bwA
+cHu
+cHu
+bYq
+cQe
+cQC
+cRq
+bYq
+bYq
+bYq
+cRJ
+cRL
+bTV
+bwA
+bxK
+bwA
+bwA
+cRS
+cHu
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aaa
+aaa
+cdI
+cft
+cfQ
+cgn
+cgU
+cft
+cdM
+cdI
+cju
+ckb
+ckT
+clB
+cme
+cmO
+cnX
+cgh
+cpE
+cKq
+cgv
+chK
+cSq
+cST
+cSs
+cgv
+cgv
+cdU
+cdU
+cyq
+cdU
+cdU
+cgv
+cdU
+cgv
+ckh
+ckZ
+cdT
+cgv
+cgv
+cgv
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -131998,83 +118398,21 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-cgN
-ciO
-cjo
-cjM
-cku
-ciO
-cgR
-cgN
-cmY
-cnF
-cox
-cpi
-cpN
-cqA
-crM
-cjG
-ctx
-cUn
-cjU
-cll
-dkQ
-dlM
-dkS
-cjU
-cjU
-chc
-chc
-cCs
-chc
-chc
-cjU
-chc
-cjU
-cnL
-coD
-chb
-cjU
-cjU
-cjU
-cgR
-cgR
-cgN
-cgN
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -132119,57 +118457,57 @@ aaa
aaa
aaa
aaa
-afV
-afS
-aht
-afS
-adZ
-adZ
-adZ
-adZ
-cYk
-amK
-aez
-aez
-apv
-aqn
-ari
-ask
-ath
-auo
-arg
-awz
-axI
-ayN
-aAl
-aBI
-aCw
-aDX
-aFh
-aGI
-axI
-aIV
-aIW
-aLc
-aIW
-aMZ
-are
-aPa
-aQh
-aRD
-aSB
-aTx
-aUn
-aVc
-aVz
-aVZ
-aWx
-cKh
-aWw
-aWw
-aWw
-aWL
-aUk
+afH
+afE
+ahf
+afE
+adP
+adP
+adP
+adP
+cLw
+amp
+aep
+aep
+aoV
+apN
+aqH
+arG
+asB
+atI
+aqF
+avT
+axb
+ayg
+azD
+aBa
+aBO
+aDo
+aEw
+aFW
+axb
+aIf
+aIg
+aKg
+aIg
+aLV
+aqD
+aNS
+aOS
+aQk
+aRi
+aSd
+aSR
+aTG
+aUd
+aUD
+aVb
+cFL
+aVa
+aVa
+aVa
+aVo
+aSO
abC
aaa
aaa
@@ -132203,48 +118541,48 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
aaa
aaa
-aZt
-bAd
-bAd
-byQ
-bEj
-dpl
-dpl
-dpn
-dpo
-dpp
-dpq
-dpr
-dpr
-dpr
-dpu
-dpr
-dpr
-dpu
-dpr
-dpr
-dpr
-dpr
-dpu
-dpu
-caf
-bBN
-bBN
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXS
+bxK
+bxK
+bwy
+bBI
+cUT
+cUT
+cUU
+cUV
+cUW
+cUX
+cUY
+cUY
+cUY
+cUZ
+cUY
+cUY
+cUZ
+cUY
+cUY
+cUY
+cUY
+cUZ
+cUZ
+bXf
+bzs
+bzs
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -132264,49 +118602,49 @@ aaa
aaa
aaa
aaa
-cgN
-ciO
-cjp
-cjN
-ckv
-ciO
-cgR
-cgN
-cmY
-cnG
-cnG
-cmY
-cpO
-cmY
-cjF
-cjG
-dyK
-cUn
-cjU
-dlF
-chc
-chb
-cjt
-cjT
-cjT
-cjT
-cBH
-cCt
-cjT
-dmv
-cEK
-dlf
-cjT
-coD
-cgL
+cdI
+cft
+cfR
+cgo
+cgV
+cft
+cdM
+cdI
+cju
+ckc
+ckc
+cju
+cmf
+cju
+cgg
+cgh
+cYc
+cKq
+cgv
+cSP
+cdU
+cdT
+cfV
cgu
cgu
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
+cgu
+cxH
+cyr
+cgu
+cTq
+cAG
+cSz
+cgu
+ckZ
+cdG
+cdq
+cdq
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -132317,21 +118655,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -132376,57 +118714,57 @@ aaa
aaa
aaa
aaa
-afV
-agN
-aht
-afS
-adZ
-adZ
-adZ
-afS
-alR
-amL
-afS
-aez
-apv
-aqp
-arj
-asl
-ath
-aup
-avq
-awB
-axI
-axI
-axI
-aBI
-aCw
-aDY
-axI
-axI
-axI
-cJQ
-aIW
-aIW
-aIW
-aIW
-are
-aPb
-aQh
-aRD
-aSm
-aTu
-aUk
-aUk
-aUk
-aUk
-aUk
-aWN
-aWL
-aXq
-aWL
-aXU
-aYh
+afH
+agz
+ahf
+afE
+adP
+adP
+adP
+afE
+alw
+amq
+afE
+aep
+aoV
+apP
+aqI
+arH
+asB
+atJ
+auK
+avV
+axb
+axb
+axb
+aBa
+aBO
+aDp
+axb
+axb
+axb
+cFx
+aIg
+aIg
+aIg
+aIg
+aqD
+aNT
+aOS
+aQk
+aQT
+aSa
+aSO
+aSO
+aSO
+aSO
+aSO
+aVp
+aVo
+aVR
+aVo
+aWv
+aWI
abC
aaa
aaa
@@ -132460,48 +118798,48 @@ abC
aaa
aaa
aaa
-arw
-bpN
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
+aaa
+aaa
+aXS
+bzs
+cHu
+bAB
+bBJ
+bDV
+bDV
+bDV
+bDV
+bDV
+bDV
+bDV
+bxK
+cHu
+bwA
+bxK
+cRH
+cRK
cRM
-duE
-dvn
-dvF
-arw
-aaa
-aaa
-aZt
-bBN
-cMH
-bDb
-bEk
-bGE
-bGE
-bGE
-bGE
-bGE
-bGE
-bGE
-bAd
-cMH
-byS
-bAd
-diS
-diW
-diY
-cbr
-cbr
-djb
-diU
-cbr
-dpJ
-dpL
-bAd
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+bYq
+bYq
+cRP
+cRJ
+bYq
+cVb
+cVd
+bxK
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -132521,48 +118859,48 @@ aaa
aaa
aaa
aaa
-cgN
-ciO
-ciO
-cjO
-ckw
-ciO
-ciO
-cgN
-cgN
+cdI
+cft
+cft
+cgp
+cgW
+cft
+cft
+cdI
+cdI
abC
abC
-cmY
-cpP
-cmY
-cjF
-cjG
-dyK
-cUn
-cgN
-dlG
-cjU
-ckz
-cgL
-cgL
-cgL
-ckH
-cgL
-ckz
-cgL
-cjt
-cng
-coD
-cgL
-cgL
-ckz
-cjU
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
+cju
+cmg
+cju
+cgg
+cgh
+cYc
+cKq
+cdI
+cSQ
+cgv
+cgZ
+cdG
+cdG
+cdG
+chh
+cdG
+cgZ
+cdG
+cfV
+cjC
+ckZ
+cdG
+cdG
+cgZ
+cgv
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -132574,21 +118912,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -132633,57 +118971,57 @@ aaa
aaa
aaa
aaa
-afV
-agO
-ahE
-afS
-adZ
-adZ
-adZ
-aez
-alS
-amM
-afV
-aez
-apv
-apv
-apv
-asm
-ath
-aup
-apv
-apv
-axI
-ayM
-aAk
-aBI
-aCw
-aDY
-aAk
-aGJ
-axI
-aIX
-aKa
-aLd
-aLP
-aNa
-are
-aPc
-aQh
-aRD
-aSl
-cOF
+afH
+agA
+ahq
+afE
+adP
+adP
+adP
+aep
+alx
+amr
+afH
+aep
+aoV
+aoV
+aoV
+arI
+asB
+atJ
+aoV
+aoV
+axb
+ayf
+azC
+aBa
+aBO
+aDp
+azC
+aFX
+axb
+aIh
+aJh
+aKh
+aKR
+aLW
+aqD
+aNU
+aOS
+aQk
+aQS
+cIL
acH
acH
acH
acH
-aUk
-aUk
-aUk
-aUk
-aUk
-aUk
-aUk
+aSO
+aSO
+aSO
+aSO
+aSO
+aSO
+aSO
abC
aaa
aaa
@@ -132717,48 +119055,48 @@ abC
aaa
aaa
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
aaa
-aZt
-aZt
-bBN
-byS
-byQ
-bEk
-bGE
-bHH
-bHH
-bKY
-bMv
-bHH
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-bOM
-dgQ
-dpM
-byS
-bAd
-bBN
-cMH
-byS
-bAd
-aZt
+aXS
+aXS
+bzs
+bwA
+bwy
+bBJ
+bDV
+bEY
+bEY
+bIm
+bJI
+bEY
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+bLU
+cQC
+cVe
+bwA
+bxK
+bzs
+cHu
+bwA
+bxK
+aXS
aaa
aaa
aaa
@@ -132779,47 +119117,47 @@ aaa
aaa
aaa
aaa
-cgR
-ciO
-cjP
-ckx
-cle
-ciO
-cgR
-cgN
+cdM
+cft
+cgq
+cgX
+chD
+cft
+cdM
+cdI
aaa
aaa
-cmY
-cpQ
-cmY
-crN
-cjG
-cty
-cWe
-cgN
-cgN
-cjU
-cjV
-cjU
-cjX
-cgL
-ckH
-cgL
-cjU
-cgL
-cxT
-cxT
-cgL
-cjX
-cjU
-cjU
-cjU
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
+cju
+cmh
+cju
+cnY
+cgh
+cpF
+cKI
+cdI
+cdI
+cgv
+cgw
+cgv
+cgy
+cdG
+chh
+cdG
+cgv
+cdG
+ctU
+ctU
+cdG
+cgy
+cgv
+cgv
+cgv
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -132831,21 +119169,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -132890,46 +119228,46 @@ aaa
aaa
aaa
aaa
-afV
-agP
-afS
-afS
-adZ
-adZ
-adZ
-afV
-alT
-amN
-anA
-adZ
-apv
-aqq
-arg
-asl
-ath
-aup
-arg
-awz
-axI
-ayO
-aAm
-aBJ
-aCw
-aDZ
-aFi
-aGK
-axI
-are
-are
-arf
-are
-are
-are
-are
-aQn
-cMk
-aSC
-cOF
+afH
+agB
+afE
+afE
+adP
+adP
+adP
+afH
+aly
+ams
+anf
+adP
+aoV
+apQ
+aqF
+arH
+asB
+atJ
+aqF
+avT
+axb
+ayh
+azE
+aBb
+aBO
+aDq
+aEx
+aFY
+axb
+aqD
+aqD
+aqE
+aqD
+aqD
+aqD
+aqD
+aOY
+cHa
+aRj
+cIL
acH
acH
abE
@@ -132964,59 +119302,59 @@ aaa
abC
abC
abC
-aZd
-aZd
-aZd
-aZd
-aZe
-aZf
-aZI
-aZf
+aXC
+aXC
+aXC
+aXC
+aXD
+aXE
+aYh
+aXE
aaa
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
-aZt
-aZt
-aZt
-bAd
-bAd
-byQ
-dpk
-bGE
-bHI
-bJv
-bKZ
-bMw
-bMw
-bOM
-bQn
-bRm
-bQn
-bOM
-bUC
-bVB
-bUC
-bOM
-bXG
-bYp
-bXG
-bOM
-cbr
-dpJ
-dpL
-cMH
-byS
-cbr
-cdi
-byS
-byS
-byS
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
+aXS
+aXS
+aXS
+bxK
+bxK
+bwy
+cUS
+bDV
+bEZ
+bGM
+bIn
+bJJ
+bJJ
+bLU
+bNt
+bOr
+bNt
+bLU
+bRF
+bSE
+bRF
+bLU
+bUH
+bVq
+bUH
+bLU
+bYq
+cVb
+cVd
+cHu
+bwA
+bYq
+cah
+bwA
+bwA
+bwA
abC
abC
abC
@@ -133036,47 +119374,47 @@ abC
abC
abC
abC
-ciO
-ciO
-ciO
-cky
-clf
-ciO
-cgR
-cgN
+cft
+cft
+cft
+cgY
+chE
+cft
+cdM
+cdI
aaa
aaa
aaa
-arw
-cjg
-cjh
-cji
-ctz
-cjg
-cgN
-cgN
-chc
-cgR
-cjU
-cgu
-cgu
-cjU
-cjU
-cjU
-chc
-dmw
-cjU
-cjU
-cjU
-cjU
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
+aqV
+cfI
+cfJ
+cfK
+cpG
+cfI
+cdI
+cdI
+cdU
+cdM
+cgv
+cdq
+cdq
+cgv
+cgv
+cgv
+cdU
+cTr
+cgv
+cgv
+cgv
+cgv
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -133088,21 +119426,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -133147,51 +119485,51 @@ aaa
aaa
aaa
aaa
-afV
-agQ
-afV
+afH
+agC
+afH
abW
abW
-adZ
-adZ
-afV
-aez
-afq
-amK
-adZ
-apv
-aqr
-ark
-asn
-ati
-aup
-avr
-awC
-axI
-axI
-axI
-aBK
-aCw
-aDZ
-axI
-axI
-axI
+adP
+adP
+afH
+aep
+afc
+amp
+adP
+aoV
+apR
+aqJ
+arJ
+asC
+atJ
+auL
+avW
+axb
+axb
+axb
+aBc
+aBO
+aDq
+axb
+axb
+axb
abW
abW
abW
abW
abW
abW
-aLm
-aQh
-aRD
-aSl
-cOF
+aKq
+aOS
+aQk
+aQS
+cIL
acH
abE
abE
abE
-aWy
+aVc
aaa
aaa
aaa
@@ -133218,66 +119556,66 @@ aaa
abC
abC
abC
-aZd
-aZd
-aZd
-baJ
-aZr
-aZC
-bhA
-cKj
-aZt
-aZt
-aZf
-aZf
+aXC
+aXC
+aXC
+aZi
+aXQ
+aYb
+bfR
+cFM
+aXS
+aXS
+aXE
+aXE
aaa
-arw
-dum
-duv
-duE
-dvn
-bvv
-arw
-aZt
-aZt
-aZH
-bAd
-bAd
-bEi
-bEk
-bGE
-bHJ
-bHJ
-bKZ
-bMx
-bMx
-bOM
-bQn
-bRn
-bQn
-bOM
-bUC
-bVC
-bUC
-bOM
-bXG
+aqV
+cXq
+cXs
+cXw
+cXz
+btm
+aqV
+aXS
+aXS
+aYg
+bxK
+bxK
+bBH
+bBJ
+bDV
+bFa
+bFa
+bIn
+bJK
+bJK
+bLU
+bNt
+bOs
+bNt
+bLU
+bRF
+bSF
+bRF
+bLU
+bUH
+bVr
+bUH
+bLU
+bwA
+cQe
+cVb
+cVd
+bwA
bYq
-bXG
-bOM
-byS
-dfU
-dpJ
-dpL
-byS
-cbr
-dgD
-cdB
-bLA
-cdB
-aZf
-arw
-arw
-arw
+cQv
+caz
+bIO
+caz
+aXE
+aqV
+aqV
+aqV
abC
abC
abC
@@ -133289,51 +119627,51 @@ aaa
aaa
abC
abC
-arw
-arw
-arw
-arw
-ciP
-cjq
-cjQ
-ckw
-ciO
-ciO
-cgR
-cgN
+aqV
+aqV
+aqV
+aqV
+cfu
+cfS
+cgr
+cgW
+cft
+cft
+cdM
+cdI
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
-cgN
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
+cdI
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -133345,21 +119683,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -133410,40 +119748,40 @@ abW
abW
abW
abW
-adZ
-aez
-afV
-afq
-amK
-afV
-apv
-apv
-apv
-apv
-atj
-apv
-apv
-apv
-axI
-ayM
-aAk
-aBJ
-aCw
-aDZ
-aAk
-aGH
-aHS
-aHS
-aHS
-aHS
-aHS
-aHS
+adP
+aep
+afH
+afc
+amp
+afH
+aoV
+aoV
+aoV
+aoV
+asD
+aoV
+aoV
+aoV
+axb
+ayf
+azC
+aBb
+aBO
+aDq
+azC
+aFV
+aHd
+aHd
+aHd
+aHd
+aHd
+aHd
abW
-aLm
-aQh
-aRD
-aSx
-cOF
+aKq
+aOS
+aQk
+aRe
+cIL
abE
abE
abE
@@ -133472,66 +119810,66 @@ aaa
aaa
abC
abC
-aZd
-aZd
-aZd
-bcO
-bbk
-bed
-beP
-bck
-bgB
-bhB
-aZe
-aZt
-aZt
-aZf
-aZf
+aXC
+aXC
+aXC
+bbm
+aZJ
+bcy
+bdk
+baJ
+beS
+bfS
+aXD
+aXS
+aXS
+aXE
+aXE
aaa
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
-aZf
-aZt
-aZH
-bAd
-cMH
-byQ
-bEk
-bGE
-bHK
-bHK
-bKZ
-bMy
-bMy
-bOM
-bQo
-bRo
-bSv
-bOM
-bUD
-bVD
-bWq
-bOM
-bXH
-bYr
-bZb
-bOM
-bAd
-diS
-djs
-dpT
-dpp
-dpq
-dpL
-cMH
-cMH
-byS
-aZI
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
+aXE
+aXS
+aYg
+bxK
+cHu
+bwy
+bBJ
+bDV
+bFb
+bFb
+bIn
+bJL
+bJL
+bLU
+bNu
+bOt
+bPz
+bLU
+bRG
+bSG
+bTr
+bLU
+bUI
+bVs
+bWc
+bLU
+bxK
+cRH
+cRW
+cVf
+cUW
+cUX
+cVd
+cHu
+cHu
+bwA
+aYh
abC
abC
abC
@@ -133549,48 +119887,48 @@ aaa
abC
abC
abC
-cim
-ciO
-ciO
-ciO
-ciO
-ciO
-cgR
-cgR
-cgN
+ceR
+cft
+cft
+cft
+cft
+cft
+cdM
+cdM
+cdI
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
-cgN
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
+cdI
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -133602,21 +119940,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -133668,39 +120006,39 @@ abW
abW
acH
acH
-aez
-afS
-awZ
-amK
-afS
-adZ
-cYg
-arl
-cYj
-aiS
-auq
-aoq
-awD
-axI
-ayP
-aAn
-aBL
-aCx
-aDZ
-aFj
-aGL
-aHS
-aIY
-aKb
-aLe
-aLQ
-aHS
+aep
+afE
+awt
+amp
+afE
+adP
+cLt
+aqK
+cLv
+aiA
+atK
+anT
+avX
+axb
+ayi
+azF
+aBd
+aBP
+aDq
+aEy
+aFZ
+aHd
+aIi
+aJi
+aKi
+aKS
+aHd
abW
-aLm
-aQo
-aRD
-aSl
-aTy
+aKq
+aOZ
+aQk
+aQS
+aSe
abE
abE
abE
@@ -133727,68 +120065,68 @@ aaa
aaa
aaa
abC
-aZd
-aZd
-aZr
-aZC
-aZQ
-bbj
-bbj
-aZC
-beQ
-bfK
-cMo
-bhC
-aZe
-aZt
-aZt
-aZf
-aZf
-aZf
-arw
-bpN
-cRM
-duE
-dvn
-dvF
-arw
-aZf
-aZt
-aZH
-bBN
-bCZ
-bEj
-bEl
-bGE
-bGE
-bGE
-bLa
-bGE
-bGE
-bOM
-bQp
-bRp
-bSw
-bOM
-bQp
-bRp
-bWr
-bOM
-bXI
-bRp
-bZc
-bOM
-bGE
-cMH
-cMH
-byS
-cMH
-dfU
-dqb
-byS
-byS
-aZt
-aZt
+aXC
+aXC
+aXQ
+aYb
+aYp
+aZI
+aZI
+aYb
+bdl
+beb
+cHe
+bfT
+aXD
+aXS
+aXS
+aXE
+aXE
+aXE
+aqV
+bnO
+cJw
+cXw
+cXz
+cXI
+aqV
+aXE
+aXS
+aYg
+bzs
+bAz
+bBI
+bBK
+bDV
+bDV
+bDV
+bIo
+bDV
+bDV
+bLU
+bNv
+bOu
+bPA
+bLU
+bNv
+bOu
+bTs
+bLU
+bUJ
+bOu
+bWd
+bLU
+bDV
+cHu
+cHu
+bwA
+cHu
+cQe
+cVj
+bwA
+bwA
+aXS
+aXS
aaa
aaa
aaa
@@ -133807,43 +120145,43 @@ aaa
aaa
aaa
aaa
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
-cgN
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
+cdI
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -133859,21 +120197,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -133926,38 +120264,38 @@ abW
acH
acH
acH
-afV
-afS
-anB
-aox
-apw
-aox
-aox
-aox
-atk
-aur
-cYN
-awE
-afV
-axI
-axI
-axI
-aCy
-aEa
-aEa
-aEa
-aHS
-aIZ
-aKc
-aLf
-aLR
-aHS
+afH
+afE
+ang
+anY
+aoW
+anY
+anY
+anY
+asE
+atL
+cLK
+avY
+afH
+axb
+axb
+axb
+aBQ
+aDr
+aDr
+aDr
+aHd
+aIj
+aJj
+aKj
+aKT
+aHd
abW
-aLm
-aQp
-aRD
-aSl
-aTy
+aKq
+aPa
+aQk
+aQS
+aSe
abE
abE
abE
@@ -133983,69 +120321,69 @@ aaa
aaa
aaa
abC
-aZN
-baf
-baG
-baj
-aZQ
-bck
-aZQ
-aZQ
-aZQ
-beR
-bfL
-bfL
-bhD
-aZe
-aZH
-aZt
-aZt
-aZt
+aYm
+aYE
aZf
-boo
-bpO
-cRM
-duE
-dvn
-bvw
-bwY
-aZf
-aZt
-bAd
-byS
-bAf
-bEk
-bAd
-bGE
-bHL
-bJw
-bJx
-bJx
-bGE
-bON
-bQq
-bOO
-bSx
-bTA
-bQq
-bOO
-bSx
-bWV
-bXJ
-bOO
-bZd
-bZF
-bGE
-cbr
-cMV
-cbr
-byS
-cbr
-dqb
-djm
-bAd
-aZt
-aZt
+aYI
+aYp
+baJ
+aYp
+aYp
+aYp
+bdm
+bec
+bec
+bfU
+aXD
+aYg
+aXS
+aXS
+aXS
+aXE
+bmu
+bnP
+cJw
+cXw
+cXz
+btn
+buL
+aXE
+aXS
+bxK
+bwA
+bxM
+bBJ
+bxK
+bDV
+bFc
+bGN
+bGO
+bGO
+bDV
+bLV
+bNw
+bLW
+bPB
+bQE
+bNw
+bLW
+bPB
+bTW
+bUK
+bLW
+bWe
+bWF
+bDV
+bYq
+cHy
+bYq
+bwA
+bYq
+cVj
+cRV
+bxK
+aXS
+aXS
aaa
aaa
aaa
@@ -134067,38 +120405,38 @@ aaa
aaa
aaa
aaa
-cgN
-cgN
-cgN
-cgN
-cgN
+cdI
+cdI
+cdI
+cdI
+cdI
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
aaa
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -134116,21 +120454,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -134183,38 +120521,38 @@ acH
acH
acH
acH
-afV
-afV
-anC
-afq
-afq
-afq
-alS
-afq
-aqG
-aus
-akp
-awF
-aSe
-aSe
-aSe
-aSe
-aSe
-aEb
-aFk
-aGM
-aHT
-aJa
-aKd
-aLg
-aLS
-aHS
+afH
+afH
+anh
+afc
+afc
+afc
+alx
+afc
+aqg
+atM
+ajW
+avZ
+aQL
+aQL
+aQL
+aQL
+aQL
+aDs
+aEz
+aGa
+aHe
+aIk
+aJk
+aKk
+aKU
+aHd
abW
-aLm
-cOy
-aRD
-aSl
-aTy
+aKq
+cIE
+aQk
+aQS
+aSe
abE
abE
abE
@@ -134240,71 +120578,71 @@ aaa
aaa
aaa
abC
-aZN
-aZC
-baH
-baH
-aZQ
-aZQ
-bah
-aZQ
-aZQ
-beR
-bfL
-bfL
-bhE
-cKk
-aZH
-aZH
-aZH
-aZH
-bal
-bop
-bal
-cSr
-bao
-btX
-bal
-bwZ
-bal
-aZt
-bAd
-cMH
-byQ
-dgP
-bFp
-bGF
-bHM
-bJx
-bJx
-bJx
-bNv
-bOO
-bQq
-bOO
-bSy
-bSy
-bQq
-bOO
-bSy
-bSy
-bXJ
-bOO
-bZe
-bXJ
-bGE
-cMP
-cbr
-dgD
-cNc
-dht
-dqb
-djO
-byS
-aZH
-aZt
-aZt
-aZt
+aYm
+aYb
+aZg
+aZg
+aYp
+aYp
+aYG
+aYp
+aYp
+bdm
+bec
+bec
+bfV
+cFN
+aYg
+aYg
+aYg
+aYg
+aYK
+bmv
+aYK
+cJx
+aYN
+brR
+aYK
+buM
+aYK
+aXS
+bxK
+cHu
+bwy
+cQB
+bCJ
+bDW
+bFd
+bGO
+bGO
+bGO
+bKF
+bLW
+bNw
+bLW
+bPC
+bPC
+bNw
+bLW
+bPC
+bPC
+bUK
+bLW
+bWf
+bUK
+bDV
+cHw
+bYq
+cQv
+cHA
+cQT
+cVj
+cSc
+bwA
+aYg
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -134332,30 +120670,30 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxb
-dwX
-dyM
-dwO
+aqV
+cXX
+cXZ
+cXY
+cYd
+cXX
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
aaa
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
-cgN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
+cdI
aaa
aaa
aaa
@@ -134373,21 +120711,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -134440,38 +120778,38 @@ acH
acH
acH
abW
-adZ
-adZ
-anD
-aoy
-apx
-aqs
-akq
-aso
-aso
-aso
-aso
-aso
-aso
-ayQ
-ayQ
-ayQ
-ayQ
-ayQ
-aFl
-aGN
-aHT
-aJb
-aKe
-aHT
-aHT
-aHS
-aHT
-aHT
-aQq
-aRE
-aSt
-aTy
+adP
+adP
+ani
+anZ
+aoX
+apS
+ajX
+arK
+arK
+arK
+arK
+arK
+arK
+ayj
+ayj
+ayj
+ayj
+ayj
+aEA
+aGb
+aHe
+aIl
+aJl
+aHe
+aHe
+aHd
+aHe
+aHe
+aPb
+aQl
+aRa
+aSe
abE
abE
abE
@@ -134497,71 +120835,71 @@ aaa
aaa
aaa
abC
-aZd
-bag
-baH
-baH
-aZQ
-aZr
-bag
-aZC
-aZQ
-cMn
-bfM
-bfM
-cKs
-aZe
-aZH
-aZH
-aZH
-aZH
-bal
-boq
-cQD
-cSs
-baO
-dvr
-bal
-cKO
-bal
-aZt
-bAd
-bAd
-dgC
-dpi
-bFq
-bGG
-bHN
-bJy
-bJy
-bJy
-bNw
-bOP
-bQr
-bRq
-bSz
-bTB
-bUE
-bVE
-bWs
-bWW
-bXK
-bYs
-bZf
-bXJ
-bGE
-cMQ
-cMW
-cbr
-cMH
-bAd
-dqb
-djP
-djl
-aZH
-aZt
-aZt
-aZt
+aXC
+aYF
+aZg
+aZg
+aYp
+aXQ
+aYF
+aYb
+aYp
+cHd
+bed
+bed
+cFU
+aXD
+aYg
+aYg
+aYg
+aYg
+aYK
+bmw
+cJf
+cJy
+aZn
+cXB
+aYK
+cGf
+aYK
+aXS
+bxK
+bxK
+cQu
+cUQ
+bCK
+bDX
+bFe
+bGP
+bGP
+bGP
+bKG
+bLX
+bNx
+bOv
+bPD
+bQF
+bRH
+bSH
+bTt
+bTX
+bUL
+bVt
+bWg
+bUK
+bDV
+cHx
+cHz
+bYq
+cHu
+bxK
+cVj
+cSd
+cRU
+aYg
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -134589,29 +120927,29 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
aaa
-cgN
-cgN
-cgR
-cgR
-cgR
-cgR
-cgR
-cgN
-cgN
+cdI
+cdI
+cdM
+cdM
+cdM
+cdM
+cdM
+cdI
+cdI
aaa
aaa
aaa
@@ -134630,21 +120968,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -134696,44 +121034,44 @@ abW
acH
acH
acH
-akF
-akF
-akF
-akF
-akF
-akF
-akF
-aqG
-aso
-atl
-aut
-avs
-awG
-atp
-ayR
-aAo
-aBM
-aCz
-ayV
-aFm
-aGO
-aHT
-aJc
-aKf
-cWH
-aLT
-aHS
-aOe
-aPd
-aQr
-aRD
-aSl
-aTy
+akl
+akl
+akl
+akl
+akl
+akl
+akl
+aqg
+arK
+asF
+atN
+auM
+awa
+asJ
+ayk
+azG
+aBe
+aBR
+ayo
+aEB
+aGc
+aHe
+aIm
+aJm
+cLd
+aKV
+aHd
+aMZ
+aNV
+aPc
+aQk
+aQS
+aSe
abE
abE
abE
abE
-akG
+akm
abC
abC
abC
@@ -134753,73 +121091,73 @@ abC
abC
abC
abC
-aZd
-aZC
-bag
-baI
-baJ
-aZQ
-bah
-baf
-aZC
-aZQ
-beS
-aZQ
-aZr
-bag
-aZe
-aZH
-bal
-bal
-bal
-bal
-bor
-cQW
-baN
-baO
-dvr
-bal
-bwZ
-bal
-bal
-bal
-bal
-bDb
-dpj
-bFr
-bGH
-bHO
-bJz
-bJz
-bMz
-bNx
-bOQ
-bQs
-bRr
-bSA
-bTC
-bQs
-bQs
-bWt
-bWX
-bXL
-bYt
-bZg
-bXJ
-bOM
-bOM
-bOM
-bOM
-bOM
-byS
-dqb
-bAe
-cMH
-aZH
-aZt
-aZt
-aZt
-aZt
+aXC
+aYb
+aYF
+aZh
+aZi
+aYp
+aYG
+aYE
+aYb
+aYp
+bdn
+aYp
+aXQ
+aYF
+aXD
+aYg
+aYK
+aYK
+aYK
+aYK
+bmx
+cJm
+aZm
+aZn
+cXB
+aYK
+buM
+aYK
+aYK
+aYK
+aYK
+bAB
+cUR
+bCL
+bDY
+bFf
+bGQ
+bGQ
+bJM
+bKH
+bLY
+bNy
+bOw
+bPE
+bQG
+bNy
+bNy
+bTu
+bTY
+bUM
+bVu
+bWh
+bUK
+bLU
+bLU
+bLU
+bLU
+bLU
+bwA
+cVj
+bxL
+cHu
+aYg
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -134846,15 +121184,15 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -134953,39 +121291,39 @@ abW
acH
acH
acH
-akF
-alU
-amO
-anE
-amR
-apy
-akF
-akp
-aso
-atm
-auu
-avt
-awH
-atp
-ayS
-aAp
-aBN
-aCA
-ayV
-aFn
-aGP
-aHT
-aJd
-aKg
-aLi
-aLU
-aHS
-daY
-aPe
-aQr
-aRD
-aSl
-aTy
+akl
+alz
+amt
+anj
+amw
+aoY
+akl
+ajW
+arK
+asG
+atO
+auN
+awb
+asJ
+ayl
+azH
+aBf
+aBS
+ayo
+aEC
+aGd
+aHe
+aIn
+aJn
+aKm
+aKW
+aHd
+cMT
+aNW
+aPc
+aQk
+aQS
+aSe
abE
abE
abE
@@ -135010,73 +121348,73 @@ aaa
aaa
aaa
abC
-aZd
-aZO
-aZF
-baJ
-baI
-aZr
-aZQ
-aZC
-aZC
-aZQ
+aXC
+aYn
+aYe
+aZi
+aZh
+aXQ
+aYp
+aYb
+aYb
+aYp
+bdo
+aYF
beT
-bag
-bgC
-cKt
-aZe
-aZH
-bal
-bbQ
-bbQ
-bna
-bos
-cQW
-baN
+cFV
+aXD
+aYg
+aYK
+bap
+bap
+blh
+bmy
+cJm
+aZm
+aZn
+brS
+aYK
+buO
+bwi
baO
-btY
-bal
-bxb
-byA
-bcp
-bAO
-bal
-bDc
-bEk
-bAd
-bGI
-bHP
-bJA
-bLb
-bMA
-bNy
-bJz
-bQt
-bRs
-bSB
-bTD
-bTD
-bTD
-bWu
-bTD
-bXM
-bYu
-bZh
-bZG
-cag
-caA
-cbi
-cbi
-bOM
-dge
-dqb
-dqr
-dqr
-dqs
-dqs
-dqr
-dqr
-aZt
+byu
+aYK
+bAC
+bBJ
+bxK
+bDZ
+bFg
+bGR
+bIp
+bJN
+bKI
+bGQ
+bNz
+bOx
+bPF
+bQH
+bQH
+bQH
+bTv
+bQH
+bUN
+bVv
+bWi
+bWG
+bXg
+bXz
+bYh
+bYh
+bLU
+cQj
+cVj
+cVo
+cVo
+cVp
+cVp
+cVo
+cVo
+aXS
aaa
aaa
aaa
@@ -135103,15 +121441,15 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -135128,12 +121466,12 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -135210,39 +121548,39 @@ acH
acH
acH
abW
-akF
-alV
-amP
-anF
-aoz
-apz
-aqt
-akp
-aso
-atn
-auv
-avt
-awI
-atp
-ayT
-aAq
-aBN
-aCB
-ayV
-aFo
-aGQ
-aHT
-aJe
-aKh
-aLh
-aLV
-cJV
-aOf
-aPe
-aQr
-aRD
-aSl
-aTy
+akl
+alA
+amu
+ank
+aoa
+aoZ
+apT
+ajW
+arK
+asH
+atP
+auN
+awc
+asJ
+aym
+azI
+aBf
+aBT
+ayo
+aED
+aGe
+aHe
+aIo
+aJo
+aKl
+aKX
+cFA
+aNa
+aNW
+aPc
+aQk
+aQS
+aSe
abE
abE
abE
@@ -135267,72 +121605,72 @@ aaa
aaa
aaa
abC
-aZd
-aZP
-bah
-aZQ
-aZQ
-aZr
-aZr
-aZr
-aZQ
-aZQ
-beU
-aZe
-aZe
-aZe
-aZe
-aZH
-bal
-bcp
-bcp
-bnb
-bcp
-cQX
-bra
+aXC
+aYo
+aYG
+aYp
+aYp
+aXQ
+aXQ
+aXQ
+aYp
+aYp
+bdp
+aXD
+aXD
+aXD
+aXD
+aYg
+aYK
baO
-btZ
-bal
-bxb
-bcp
-bcp
-bAP
-bBO
-bDd
-bEk
-byS
-bGI
-bHQ
-bJx
-bLc
-bJx
-bNz
-bJx
-bQu
-bRt
-bSC
-bTE
-bTE
-bTE
-bSC
-bJx
-bXN
-bYv
-bZi
-bZH
-bRp
-caB
-cbj
-cbP
-bOM
-dfU
-dqb
-dqs
-dqK
-dqS
-dra
-dri
-dqr
+baO
+bli
+baO
+cJn
+boX
+aZn
+brT
+aYK
+buO
+baO
+baO
+byv
+bzt
+bAD
+bBJ
+bwA
+bDZ
+bFh
+bGO
+bIq
+bGO
+bKJ
+bGO
+bNA
+bOy
+bPG
+bQI
+bQI
+bQI
+bPG
+bGO
+bUO
+bVw
+bWj
+bWH
+bOu
+bXA
+bYi
+bYO
+bLU
+cQe
+cVj
+cVp
+cVu
+cVA
+cVF
+cVL
+cVo
aaa
aaa
aaa
@@ -135360,15 +121698,15 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -135385,12 +121723,12 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -135467,39 +121805,39 @@ acH
acH
acH
abW
-akF
-alW
-amQ
-amQ
-aoA
-apA
-aqu
-akp
-aso
-ato
-auw
-avt
-awJ
-atp
-ayU
-aAr
-aBN
-aCC
-ayV
-aEc
-aGR
-aHT
-aJf
-aKi
-aLh
-cWI
-aNb
-aOf
-aPe
-aQr
-aRL
-aSl
-aTy
+akl
+alB
+amv
+amv
+aob
+apa
+apU
+ajW
+arK
+asI
+atQ
+auN
+awd
+asJ
+ayn
+azJ
+aBf
+aBU
+ayo
+aDt
+aGf
+aHe
+aIp
+aJp
+aKl
+cLe
+aLX
+aNa
+aNW
+aPc
+aQs
+aQS
+aSe
abE
abE
abE
@@ -135523,79 +121861,79 @@ aaa
aaa
aaa
abC
-aZd
-aZC
-aZr
-aZQ
-baK
-aZQ
-aZQ
-aZC
-bag
-bck
-bck
-beV
-bfN
-bgD
-bhF
-aZe
-aZt
-bal
-bcp
-bcp
-bnb
-bcY
-cQW
-baN
+aXC
+aYb
+aXQ
+aYp
+aZj
+aYp
+aYp
+aYb
+aYF
+baJ
+baJ
+bdq
+bee
+beU
+bfW
+aXD
+aXS
+aYK
baO
-dvr
-bal
-bxa
-bcp
-bcp
-bAP
-bBO
-bDe
-bEl
-cMH
-bGI
-bHR
-bJx
-bLd
-bJA
-bNA
-bOR
-bQv
-bRu
-bSD
-bTF
-bTF
-bTF
-bTK
-bJx
-bXO
-bYw
-bZj
-bZI
-cah
-caC
-cbi
-cbi
-bOM
-cbr
-dqb
-dqr
-dqL
-dqL
-drb
-drj
-drr
-drx
-drD
-drD
-drD
-drD
-drZ
+baO
+bli
+bbw
+cJm
+aZm
+aZn
+cXB
+aYK
+buN
+baO
+baO
+byv
+bzt
+bAE
+bBK
+cHu
+bDZ
+bFi
+bGO
+bIr
+bGR
+bKK
+bLZ
+bNB
+bOz
+bPH
+bQJ
+bQJ
+bQJ
+bQO
+bGO
+bUP
+bVx
+bWk
+bWI
+bXh
+bXB
+bYh
+bYh
+bLU
+bYq
+cVj
+cVo
+cVv
+cVv
+cVG
+cVM
+cVR
+cVW
+cWa
+cWa
+cWa
+cWa
+cWj
aaa
aaa
aaa
@@ -135617,15 +121955,15 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxg
-dwX
-ctA
-dwO
+aqV
+cXX
+cYa
+cXY
+cpH
+cXX
abC
abC
-aXR
+aWs
aaa
aaa
aaa
@@ -135639,16 +121977,16 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -135724,39 +122062,39 @@ acH
acH
acH
abW
-akF
-alX
-amR
-anG
-aoB
-amR
-aqu
-arm
-aso
-atp
-atp
-avu
-awK
-atp
-ayV
-aAs
-ayV
-aCD
-ayV
-aFp
-aGS
-aHU
-aJg
-aKj
-aLj
-aLW
-aNb
-aOf
-aPe
-aQr
-aRD
-aSl
-aTy
+akl
+alC
+amw
+anl
+aoc
+amw
+apU
+aqL
+arK
+asJ
+asJ
+auO
+awe
+asJ
+ayo
+azK
+ayo
+aBV
+ayo
+aEE
+aGg
+aHf
+aIq
+aJq
+aKn
+aKY
+aLX
+aNa
+aNW
+aPc
+aQk
+aQS
+aSe
abE
abE
abE
@@ -135780,79 +122118,79 @@ aaa
aaa
aaa
abC
-aZd
-aZD
-aZQ
-aZQ
-aZC
-bbj
-aZF
-aZQ
-aZC
-bdp
-bdq
-bdq
-bdp
-bdr
-bhG
-aZe
-aZt
-bal
-bcp
-bcp
-bnb
-bco
-cQW
-baN
+aXC
+aYc
+aYp
+aYp
+aYb
+aZI
+aYe
+aYp
+aYb
+bbM
+bbN
+bbN
+bbM
+bbO
+bfX
+aXD
+aXS
+aYK
baO
-bua
-bvx
-bxc
-bcp
-dfu
-bco
-bal
-bDf
-byB
-byB
-bGI
-bHS
-bJB
-bLe
-bGE
-bGE
-bGE
-bGE
-bRv
-bSE
-bTG
-bTG
-bTG
-bWv
-bJx
-bXP
-bYx
-bOO
-bZJ
-bOM
-bOM
-bOM
-bOM
-bOM
-djb
-dqj
-dqu
-dqM
-dqU
-drc
-drk
-drs
-drs
-drs
-drK
-drO
-arw
-arw
+baO
+bli
+baN
+cJm
+aZm
+aZn
+brU
+bto
+buP
+baO
+cPN
+baN
+aYK
+bAF
+bwj
+bwj
+bDZ
+bFj
+bGS
+bIs
+bDV
+bDV
+bDV
+bDV
+bOA
+bPI
+bQK
+bQK
+bQK
+bTw
+bGO
+bUQ
+bVy
+bLW
+bWJ
+bLU
+bLU
+bLU
+bLU
+bLU
+cRP
+cVk
+cVq
+cVw
+cVB
+cVH
+cVN
+cVS
+cVS
+cVS
+cWc
+cWg
+aqV
+aqV
aaa
aaa
aaa
@@ -135874,38 +122212,38 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -135980,40 +122318,40 @@ abW
acH
acH
acH
-akF
-akF
-alY
-amS
-alY
-aoC
-apB
-aqv
-aqt
-akF
-atq
-cJF
-avv
-awL
-awL
-ayW
-aAt
-ayX
-aCE
-aEc
-aFq
-aGT
-aCO
-aJh
-aEc
-aLk
-aLX
-cJW
-aOf
-aPe
-aQr
-aRD
-aSl
-cOF
+akl
+akl
+alD
+amx
+alD
+aod
+apb
+apV
+apT
+akl
+asK
+cFq
+auP
+awf
+awf
+ayp
+azL
+ayq
+aBW
+aDt
+aEF
+aGh
+aCg
+aIr
+aDt
+aKo
+aKZ
+cFB
+aNa
+aNW
+aPc
+aQk
+aQS
+cIL
abE
abE
abE
@@ -136037,79 +122375,79 @@ aaa
aaa
aaa
abC
-aZd
-aZE
-aZQ
-aZQ
-baL
-bbk
-bbj
-aZQ
-aZQ
-bdq
-bee
-beW
+aXC
+aYd
+aYp
+aYp
+aZk
+aZJ
+aZI
+aYp
+aYp
+bbN
+bcz
bdr
-beg
-bhH
-aZe
-aZt
-bal
-ben
-bmr
-bnc
-dfu
-cQW
-brb
-bsq
-bub
-bal
-bal
-byB
-byB
-byB
-bBP
-bDg
-bEm
-bFs
-bGJ
-bHT
-bJC
-bLf
-bMB
-bNB
-bOS
-bGE
-bRw
-bJx
-bTH
-bUF
-bVF
-bJx
-bJx
-bXP
-bYy
-bZk
-bZG
-cag
-caD
-cbk
-cbk
-bOM
-cbr
-dqk
-dqr
-dqN
-dqV
-drd
-drl
-drt
-drz
-drt
-drL
-drO
-drO
-dsa
+bbO
+bcB
+bfY
+aXD
+aXS
+aYK
+bcI
+bkA
+blj
+cPN
+cJm
+boY
+bqn
+brV
+aYK
+aYK
+bwj
+bwj
+bwj
+bzu
+bAG
+bBL
+bCM
+bEa
+bFk
+bGT
+bIt
+bJO
+bKL
+bMa
+bDV
+bOB
+bGO
+bQL
+bRI
+bSI
+bGO
+bGO
+bUQ
+bVz
+bWl
+bWG
+bXg
+bXC
+bYj
+bYj
+bLU
+bYq
+cVl
+cVo
+cVx
+cVC
+cVI
+cVO
+cVT
+cVX
+cVT
+cWd
+cWg
+cWg
+cWk
aaa
aaa
aaa
@@ -136131,38 +122469,38 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -136237,40 +122575,40 @@ abW
acH
acH
acH
-akF
-alp
-alZ
-amT
-alY
-aoD
-amR
-aqw
-arn
-asp
-apI
-alY
-avw
-awM
-awM
-ayX
-aze
-ayX
-aCF
-aEc
-aFr
-aGT
-awM
-aJi
-aEc
-aLh
+akl
+akU
+alE
+amy
+alD
+aoe
+amw
+apW
+aqM
+arL
+api
+alD
+auQ
+awg
+awg
+ayq
+ayx
+ayq
+aBX
+aDt
+aEG
+aGh
+awg
+aIs
+aDt
+aKl
+aLa
aLY
-aNc
-aOg
-aPf
-aQr
-aRD
-aSl
-cOF
+aNb
+aNX
+aPc
+aQk
+aQS
+cIL
abW
abE
abE
@@ -136293,80 +122631,80 @@ aaa
aaa
aaa
abC
-aZd
-aZp
-aZr
-aZR
-bai
-bai
-bbl
-bbH
-bcl
-bcP
-bdq
+aXC
+aXO
+aXQ
+aYq
+aYH
+aYH
+aZK
+bag
+baK
+bbn
+bbN
+bcA
+cJk
bef
-cQU
-bfO
-bgE
-bhI
-cRr
-cQG
-cQG
-cQG
-cQG
-bnd
-cQG
-cRc
-brc
-bsr
-buc
-bal
-bal
-byB
-bzN
-bAQ
-bBQ
-bDh
-bAQ
-bAQ
-bGK
-bHU
-bJD
-bLg
-bMC
-bNC
-bOT
-bGE
-bRx
-bSF
-bTI
-bUG
-bVG
-bJx
-cMF
-bXP
-bYz
-bOO
-bZH
-bRp
-caE
-cbl
-cbQ
-bOM
-cbr
-dqk
-dqs
-dqO
-dqW
-dre
-drm
-dru
-drA
-drG
-drM
-drS
-drX
-dsb
+beV
+bfZ
+cJt
+cJi
+cJi
+cJi
+cJi
+blk
+cJi
+cJo
+boZ
+bqo
+brW
+aYK
+aYK
+bwj
+bxu
+byw
+bzv
+bAH
+byw
+byw
+bEb
+bFl
+bGU
+bIu
+bJP
+bKM
+bMb
+bDV
+bOC
+bPJ
+bQM
+bRJ
+bSJ
+bGO
+cHs
+bUQ
+bVA
+bLW
+bWH
+bOu
+bXD
+bYk
+bYP
+bLU
+bYq
+cVl
+cVp
+cVy
+cVD
+cVJ
+cVP
+cVU
+cVY
+cWb
+cWe
+cWh
+cWi
+cWl
aaa
aaa
aaa
@@ -136388,38 +122726,38 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -136494,40 +122832,40 @@ abW
acH
acH
acH
-akF
-alq
-ama
-amU
-alY
-aoE
-amR
-aqx
-aro
-apI
-apI
-alY
-avx
-awM
-awM
-ayY
-aAu
-aBO
-aCG
-aEd
-aFs
-aGT
-awM
-aJj
-aEc
-asu
-asu
-asu
-asu
-asu
-aQh
-aRD
-aSm
-cOF
+akl
+akV
+alF
+amz
+alD
+aof
+amw
+apX
+aqN
+api
+api
+alD
+auR
+awg
+awg
+ayr
+azM
+aBg
+aBY
+aDu
+aEH
+aGh
+awg
+aIt
+aDt
+arQ
+arQ
+arQ
+arQ
+arQ
+aOS
+aQk
+aQT
+cIL
abW
abW
abW
@@ -136550,80 +122888,80 @@ aaa
aaa
aaa
abC
-aZd
-aZq
-aZq
-aZq
-baj
-aZq
-aZq
-aZq
-aZe
-bcQ
-bdp
-bdr
-beX
-bfP
-bgF
-bgb
-biM
-biM
-biM
-blp
-biM
-bne
-bot
-biM
-brd
-bss
-bud
-biM
-bxd
-byC
-bzO
-bAR
-bBR
-bDi
-bEn
-bFt
-bGL
-bHV
-bJE
-bLh
-bMD
-bND
-bOU
-bQw
-bRy
-bSG
-bJx
-bJx
-bRt
-bJx
-bJx
-bXO
-bYA
-bZj
-bZI
-cah
-caF
-cbk
-cbk
-bOM
-cbr
-dqm
-dqs
-dqP
-dqX
-drf
-drn
-drv
-drB
-drv
-drN
-drO
-drO
-dsa
+aXC
+aXP
+aXP
+aXP
+aYI
+aXP
+aXP
+aXP
+aXD
+bbo
+bbM
+bbO
+bds
+beg
+beW
+bes
+bhc
+bhc
+bhc
+bjB
+bhc
+bll
+bmz
+bhc
+bpa
+bqp
+brX
+bhc
+buQ
+bwk
+bxv
+byx
+bzw
+bAI
+bBM
+bCN
+bEc
+bFm
+bGV
+bIv
+bJQ
+bKN
+bMc
+bNC
+bOD
+bPK
+bGO
+bGO
+bOy
+bGO
+bGO
+bUP
+bVB
+bWk
+bWI
+bXh
+bXE
+bYj
+bYj
+bLU
+bYq
+cVm
+cVp
+cVz
+cVE
+cVK
+cVQ
+cVV
+cVZ
+cVV
+cWf
+cWg
+cWg
+cWk
aaa
aaa
aaa
@@ -136645,38 +122983,38 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
abC
abC
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -136751,40 +123089,40 @@ abW
abW
abW
acH
-akF
-akF
-akF
-amV
-alY
-aoF
-apC
-aqy
-aro
-apI
-apI
-alY
-avy
-awN
-awN
-awN
-aze
-ayX
-aCH
-cJN
-aFt
-aGT
-awM
-aze
-aCO
-aEd
+akl
+akl
+akl
+amA
+alD
+aog
+apc
+apY
+aqN
+api
+api
+alD
+auS
+awh
+awh
+awh
+ayx
+ayq
+aBZ
+cFv
+aEI
+aGh
+awg
+ayx
+aCg
+aDu
+aLb
aLZ
-aNd
-aOh
-asu
-aQs
-aRD
-aSl
-cOF
+aNc
+arQ
+aPd
+aQk
+aQS
+cIL
abW
abW
abW
@@ -136807,80 +123145,80 @@ aaa
aaa
aaa
abC
-aZd
-aZr
-aZF
-aZQ
-bag
-aZQ
-aZQ
-bbI
-aZe
-bcR
-bdr
-beg
-beY
-bfQ
-cKq
-cKu
-baO
-baO
-baO
-baO
-baO
-bnf
-bjG
-bjG
-bjG
-bst
-bue
-bvy
-bxe
-byD
-bzP
-bAS
-bBS
-bAS
-bAS
-bFu
-bGM
-bHW
-bJF
-bLi
-bGI
-bNC
-bOT
-bGE
-bRz
-bSH
-bTJ
-bJx
-bVI
-bVG
-bJx
-bXP
-bYx
-bOO
-bZK
-bOM
-bOM
-bOM
-bOM
-bOM
-cbr
-dqk
-dqr
-dqr
-dqr
-dqs
-dqr
-drs
-drs
-drs
-drO
-drO
-arw
-arw
+aXC
+aXQ
+aYe
+aYp
+aYF
+aYp
+aYp
+bah
+aXD
+bbp
+bbO
+bcB
+bdt
+beh
+cFT
+cFW
+aZn
+aZn
+aZn
+aZn
+aZn
+blm
+bhU
+bhU
+bhU
+bqq
+brY
+btp
+buR
+bwl
+bxw
+byy
+bzx
+byy
+byy
+bCO
+bEd
+bFn
+bGW
+bIw
+bDZ
+bKM
+bMb
+bDV
+bOE
+bPL
+bQN
+bGO
+bSK
+bSJ
+bGO
+bUQ
+bVy
+bLW
+bWK
+bLU
+bLU
+bLU
+bLU
+bLU
+bYq
+cVl
+cVo
+cVo
+cVo
+cVp
+cVo
+cVS
+cVS
+cVS
+cWg
+cWg
+aqV
+aqV
aaa
aaa
aaa
@@ -136902,38 +123240,38 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxb
-dwX
-cUy
-dwO
+aqV
+cXX
+cXZ
+cXY
+cKv
+cXX
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -137010,38 +123348,38 @@ abW
acH
acH
abW
-akF
-amW
-alY
-aoG
-apD
-aqz
-aro
-asq
-atr
-alY
-avz
-awO
-axJ
-ayZ
-aAv
-ayX
-aCI
-aEe
-aFu
-aGU
-aHV
-aze
-aCO
-aEe
+akl
+amB
+alD
+aoh
+apd
+apZ
+aqN
+arM
+asL
+alD
+auT
+awi
+axc
+ays
+azN
+ayq
+aCa
+aDv
+aEJ
+aGi
+aHg
+ayx
+aCg
+aDv
+aLc
aMa
-aNe
-awM
-aEe
-aQt
-aRJ
-aSl
-cOF
+awg
+aDv
+aPe
+aQq
+aQS
+cIL
acH
acH
abW
@@ -137064,133 +123402,133 @@ aaa
aaa
aaa
abC
-aZd
-aZs
-aZG
-aZS
-bak
-aZq
-cKl
-cKm
-aZe
-bcS
-bds
-beh
-beZ
-bfR
-bgG
-bhJ
-biN
-biN
-biN
-biN
-biN
-bng
-bou
-bpP
-biN
-bsu
-buf
-baP
-bxf
-byE
-bzQ
-bAT
-bBT
-bDj
-bEo
-bFv
-bGN
-bHX
-bJG
-bLj
-bGI
-bNE
-bOV
-bGE
-bRA
-bSI
-bTK
-bUH
-bRt
-bWw
-bWY
-bXP
-bYB
-bZk
-bZG
-cag
-caG
-cbm
-cbm
-bOM
-djs
-dqk
-dgE
-byS
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
-aaa
-aaa
+aXC
aXR
+aYf
+aYr
+aYJ
+aXP
+cFO
+cFP
+aXD
+bbq
+bbP
+bcC
+bdu
+bei
+beX
+bga
+bhd
+bhd
+bhd
+bhd
+bhd
+bln
+bmA
+bnQ
+bhd
+bqr
+brZ
+aZo
+buS
+bwm
+bxx
+byz
+bzy
+bAJ
+bBN
+bCP
+bEe
+bFo
+bGX
+bIx
+bDZ
+bKO
+bMd
+bDV
+bOF
+bPM
+bQO
+bRK
+bOy
+bTx
+bTZ
+bUQ
+bVC
+bWl
+bWG
+bXg
+bXF
+bYl
+bYl
+bLU
+cRW
+cVl
+cQw
+bwA
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
+aaa
+aaa
+aWs
+aaa
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -137267,43 +123605,43 @@ abW
acH
acH
abW
-akF
-akF
-akF
-aoH
-apE
-aqA
-arp
-asr
-ats
-aux
-avA
-awP
-awP
-aza
-aAw
-aBP
-aCJ
-cZE
-aFv
-aGV
-aCJ
-aJk
-aKk
-aEf
+akl
+akl
+akl
+aoi
+ape
+aqa
+aqO
+arN
+asM
+atR
+auU
+awj
+awj
+ayt
+azO
+aBh
+aCb
+cMc
+aEK
+aGj
+aCb
+aIu
+aJr
+aDw
+aLd
aMb
-aNf
-aKk
-aEf
-aQu
-aRD
-aSl
-cOF
+aJr
+aDw
+aPf
+aQk
+aQS
+cIL
acH
acH
abW
abE
-akG
+akm
abC
abC
abC
@@ -137321,77 +123659,77 @@ abC
abC
abC
abC
-aZe
-cKj
-aZe
-aZe
-aZe
-cKk
-aZe
-aZe
-aZe
-aZe
-aZe
-aZe
-cQV
-baN
-baO
-bhK
-biO
-biO
-biO
-biO
-cKx
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-bBU
-bDk
-bEp
-bFw
-biO
-bHY
-bJH
-bpS
-bGJ
-bNF
-dhD
-dhD
-dhD
-dhD
-bTL
-bUI
-bVJ
-bVJ
-bJx
-bXP
-bYC
-bOO
-bZH
-bRp
-caH
-cbn
-cbR
-bOM
-djF
-dqp
-djR
-cMH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXD
+cFM
+aXD
+aXD
+aXD
+cFN
+aXD
+aXD
+aXD
+aXD
+aXD
+aXD
+cJl
+aZm
+aZn
+bgb
+bhe
+bhe
+bhe
+bhe
+cFX
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bzz
+bAK
+bBO
+bCQ
+bhe
+bFp
+bGY
+bnT
+bEa
+bKP
+cRb
+cRb
+cRb
+cRb
+bQP
+bRL
+bSL
+bSL
+bGO
+bUQ
+bVD
+bLW
+bWH
+bOu
+bXG
+bYm
+bYQ
+bLU
+cSa
+cVn
+cSe
+cHu
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -137416,38 +123754,38 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -137526,36 +123864,36 @@ abW
abW
acH
acH
-akF
-aoI
-apF
-aqB
-arq
-arq
-apF
-auy
-avB
-awQ
-axK
-azb
-aAx
-aBQ
-aCK
-aEg
-aFw
-aGW
-aHW
-aJl
-aKl
-aLl
+akl
+aoj
+apf
+aqb
+aqP
+aqP
+apf
+atS
+auV
+awk
+axd
+ayu
+azP
+aBi
+aCc
+aDx
+aEL
+aGk
+aHh
+aIv
+aJs
+aKp
+aLe
aMc
-aNg
-aOi
-aLl
-aQv
-aRM
-aSt
-cOJ
+aNd
+aKp
+aPg
+aQt
+aRa
+cIM
acH
acH
abW
@@ -137578,75 +123916,75 @@ aaa
aaa
aaa
aaa
-aZf
-aZt
-aZt
-aZt
-aZt
-aZt
-bbm
-bbJ
-bcm
-bcT
-bdt
-bbm
-cQW
-bfS
-baO
-bhL
-biO
-bjC
-bkv
-bkv
-bkv
-bkv
-bkv
-bkv
-bkv
-bkv
-bpQ
-bvz
-bxg
-byF
-cWJ
+aXE
+aXS
+aXS
+aXS
+aXS
+aXS
+aZL
+bai
+baL
+bbr
+bbQ
+aZL
+cJm
+bej
+aZn
+bgc
+bhe
+bhQ
+biI
+biI
+biI
+biI
+biI
+biI
+biI
+biI
+bnR
+btq
+buT
+bwn
+cLf
abC
abC
abC
abC
-bFx
-dhb
-dhd
-bJI
-bLk
-bME
-bOW
-dhE
-bQx
-bnk
-bSJ
-bTM
-bUJ
-bVK
-bWx
-bWZ
-bXQ
-bYD
-bZj
-bZL
-cah
-caI
-cbm
-cbm
-bOM
-bAd
-dgQ
-dqz
-bBN
-aZH
-aZt
-aZt
-aZt
-aZt
+bCR
+cQH
+cQJ
+bGZ
+bIy
+bJR
+bMe
+cRc
+bND
+blr
+bPN
+bQQ
+bRM
+bSM
+bTy
+bUa
+bUR
+bVE
+bWk
+bWL
+bXh
+bXH
+bYl
+bYl
+bLU
+bxK
+cQC
+cVr
+bzs
+aYg
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -137673,29 +124011,29 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -137783,36 +124121,36 @@ abW
abW
acH
acH
-anH
-aoJ
-apG
-aqC
-arr
-ass
-att
-auz
-avC
-awR
-awR
-azc
-aAy
-aBR
-awL
-cZF
-aFx
-aGX
-aHX
-azf
-aKm
-aEh
+anm
+aok
+apg
+aqc
+aqQ
+arO
+asN
+atT
+auW
+awl
+awl
+ayv
+azQ
+aBj
+awf
+cMd
+aEM
+aGl
+aHi
+ayy
+aJt
+aDy
+aLf
aMd
-aNh
-aKm
-aEh
-aQw
-aRD
-aSl
-cOF
+aJt
+aDy
+aPh
+aQk
+aQS
+cIL
acH
acH
abW
@@ -137835,75 +124173,75 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZt
-aZt
-aZt
-bbm
-bbm
-bcn
-bcU
-bdu
-bbm
-cQX
-baN
-baO
-bhM
-biO
-bjD
-bkw
-blq
-bkw
-blq
+aXE
+aXE
+aXS
+aXS
+aXS
+aXS
+aZL
+aZL
+baM
+bbs
+bbR
+aZL
+cJn
+aZm
+aZn
+bgd
+bhe
+bhR
+biJ
+bjC
+biJ
+bjC
abC
-cWJ
-cWJ
-cWJ
-cKE
-bvA
-bxh
-bms
-cWJ
-cWJ
-cWJ
-cWJ
-cWJ
-cXQ
-bGP
-dhe
-bJJ
-dhn
-dhn
-dhu
-bOX
-bQy
-dib
-bSK
-bTM
-bUK
-bVL
-bWy
-bXa
-bWy
-bYE
-bWy
-bZM
-bOM
-bOM
-bOM
-bOM
-bOM
-cbr
-diU
-dqA
-byS
-aZH
-aZt
-aZt
-aZt
-aZt
+cLf
+cLf
+cLf
+cGb
+btr
+buU
+bkB
+cLf
+cLf
+cLf
+cLf
+cLf
+cLj
+bEg
+cQK
+bHa
+cQP
+cQP
+cQU
+bMf
+bNE
+cRr
+bPO
+bQQ
+bRN
+bSN
+bTz
+bUb
+bTz
+bVF
+bTz
+bWM
+bLU
+bLU
+bLU
+bLU
+bLU
+bYq
+cRJ
+cVs
+bwA
+aYg
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -137930,29 +124268,29 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxg
-dwX
-dyN
-dwO
+aqV
+cXX
+cYa
+cXY
+cYe
+cXX
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -138040,42 +124378,42 @@ abW
abW
abW
abW
-akF
-aoK
-apH
-aqD
-ars
-ast
-apI
-alY
-avD
-awS
-axL
-ayZ
-aAv
-ayX
-aCL
-aEe
-aFy
-aGY
-aHY
-awM
-aCO
-aEe
-aMe
-aHY
-awM
-aEe
-aQx
-aRD
-aSl
-cOF
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
+akl
+aol
+aph
+aqd
+aqR
+arP
+api
+alD
+auX
+awm
+axe
+ays
+azN
+ayq
+aCd
+aDv
+aEN
+aGm
+aHj
+awg
+aCg
+aDv
+aLg
+aHj
+awg
+aDv
+aPi
+aQk
+aQS
+cIL
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
aaa
aaa
aaa
@@ -138093,73 +124431,73 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZt
-aZt
-bal
-bal
-bal
-bal
-bdv
-bal
-cQW
-baN
-bgH
-bhM
-biO
-bjD
-bkx
-bky
-bls
-bky
-bkv
-bpQ
-bre
-bsv
-bug
-bvB
-bxi
-byG
-byG
-byG
-byG
-bDl
-bEq
-bFy
-bGQ
-bIb
-bJK
-bLm
-bMF
-bPa
-bOY
-dhQ
-dic
-bSL
-bTM
-bUL
-bTC
-bWz
-bXb
-bXR
-bYF
-bZl
-bZN
-cag
-caJ
-cbo
-cbo
-bOM
-djG
-bAd
-dqk
-bBN
-aZH
-aZt
-aZt
-aZt
+aXE
+aXE
+aXS
+aXS
+aXS
+aYK
+aYK
+aYK
+aYK
+bbS
+aYK
+cJm
+aZm
+beY
+bgd
+bhe
+bhR
+biK
+biL
+bjE
+biL
+biI
+bnR
+bpb
+bqs
+bsa
+bts
+buV
+bwo
+bwo
+bwo
+bwo
+bAL
+bBP
+bCS
+bEh
+bFs
+bHb
+bIA
+bJS
+bMi
+bMg
+cRk
+cRs
+bPP
+bQQ
+bRO
+bQG
+bTA
+bUc
+bUS
+bVG
+bWm
+bWN
+bXg
+bXI
+bYn
+bYn
+bLU
+cSb
+bxK
+cVl
+bzs
+aYg
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -138187,29 +124525,29 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cqC
+aqV
+cmQ
+cXY
+cXY
+cKv
+cmQ
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -138293,46 +124631,46 @@ abE
abE
abE
abW
-akG
+akm
abW
abW
abW
-akF
-aoL
-cJw
-aqE
-aqE
-aqE
-apI
-alY
-avE
-awT
-awT
-awT
-aze
-ayX
-aCH
-cJN
-aFz
-aze
-awM
-awM
-aCO
-aEc
-aMf
-aNi
-awN
-asu
-aQy
-aRD
-aSl
-cOF
-aUo
+akl
+aom
+cFh
+aqe
+aqe
+aqe
+api
+alD
+auY
+awn
+awn
+awn
+ayx
+ayq
+aBZ
+cFv
+aEO
+ayx
+awg
+awg
+aCg
+aDt
+aLh
+aMe
+awh
+arQ
+aPj
+aQk
+aQS
+cIL
+aSS
+aTH
+aUe
+aUE
aVd
-aVA
-aWa
-aWz
-aLm
+aKq
aaa
aaa
aaa
@@ -138350,91 +124688,91 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZf
-aZf
-aZt
-bal
-bbK
-bco
-bcp
-bdw
-bcp
-cQW
+aXE
+aXE
+aXE
+aXE
+aXS
+aYK
+baj
baN
baO
-bhM
-biO
-bjD
-bkx
-cWJ
-cWJ
-cWJ
-cWJ
-cWJ
-brf
-bsw
-buh
-bvC
-bxj
-bxj
-bzR
-bAU
-bAU
-bDm
-bEr
-bFz
-bGR
-bIc
-bJL
-bLn
-bMG
-bNG
-bOZ
-dhQ
-did
-div
-dsN
-bUM
-bVM
-bRs
-bXc
-bXS
-bYG
-bJx
-bZO
-bRp
-caK
-cbo
-cbS
-bOM
-bAd
-byS
-dqk
-byS
-aZH
-aZH
-aZH
-aZt
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+bbT
+baO
+cJm
+aZm
+aZn
+bgd
+bhe
+bhR
+biK
+cLf
+cLf
+cLf
+cLf
+cLf
+bpc
+bqt
+bsb
+btt
+buW
+buW
+bxy
+byA
+byA
+bAM
+bBQ
+bCT
+bEi
+bFt
+bHc
+bIB
+bJT
+bKQ
+bMh
+cRk
+cRt
+cRA
+cWQ
+bRP
+bSO
+bOx
+bUd
+bUT
+bVH
+bGO
+bWO
+bOu
+bXJ
+bYn
+bYR
+bLU
+bxK
+bwA
+cVl
+bwA
+aYg
+aYg
+aYg
+aXS
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -138444,29 +124782,29 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -138486,7 +124824,7 @@ aaa
aaa
aaa
aaa
-cJh
+cEY
aaa
aaa
aaa
@@ -138554,44 +124892,44 @@ abC
aaa
aaa
abE
-akF
-akF
-akF
-akF
-akF
-akF
-akF
-anH
-avF
-awM
-awM
-azd
-aze
-aBO
-aCM
-aEd
-aFA
-aze
-awM
-aJm
-asu
-asu
-asu
-asu
-asu
-asu
-aQz
-aRD
-aSq
-aTz
-aUp
+akl
+akl
+akl
+akl
+akl
+akl
+akl
+anm
+auZ
+awg
+awg
+ayw
+ayx
+aBg
+aCe
+aDu
+aEP
+ayx
+awg
+aIw
+arQ
+arQ
+arQ
+arQ
+arQ
+arQ
+aPk
+aQk
+aQX
+aSf
+aST
+aTI
+aTI
+aUF
aVe
-aVe
-aWb
-aWA
-aLm
-aLm
-aLm
+aKq
+aKq
+aKq
aaa
aaa
aaa
@@ -138608,87 +124946,87 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-bal
-bal
-bal
-bbL
-bcp
-bcp
-bdx
-bcp
-cQW
-bfT
+aXE
+aXE
+aYK
+aYK
+aYK
+bak
baO
-bhM
-biO
-bjD
-bkx
-cWJ
-bms
-bnh
-bov
-bpR
-brg
-bsx
-cWJ
-bvD
-bvD
-bvD
-cWJ
-bAV
-bBV
-bDn
-bEs
-bFA
-cXQ
-bId
-cMz
-bLo
-bMH
-bPa
-dhF
-bQz
-die
-diw
-dsO
-bUN
-bJx
-bTH
-bXd
-bSF
-bYH
-bSF
-bZP
-cah
-caL
-cbo
-cbo
-bOM
-bAd
-cMH
-dqk
-byS
-aZH
-aZH
-aZH
+baO
+bbU
+baO
+cJm
+bek
+aZn
+bgd
+bhe
+bhR
+biK
+cLf
+bkB
+blo
+bmB
+bnS
+bpd
+bqu
+cLf
+btu
+btu
+btu
+cLf
+byB
+bzA
+bAN
+bBR
+bCU
+cLj
+bFu
+cHm
+bIC
+bJU
+bMi
+cRd
+bNF
+cRu
+cRB
+cWR
+bRQ
+bGO
+bQL
+bUe
+bPJ
+bVI
+bPJ
+bWP
+bXh
+bXK
+bYn
+bYn
+bLU
+bxK
+cHu
+cVl
+bwA
+aYg
+aYg
+aYg
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-dCU
-dDh
-dDu
-dDH
-dEe
-dEE
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cZo
+cZu
+cZJ
+cZQ
+cZQ
+cZJ
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -138701,29 +125039,29 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-cUy
-cuk
+aqV
+cmQ
+cXY
+cXY
+cKv
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -138812,141 +125150,141 @@ aaa
aaa
aaa
aaa
-aoM
-aoM
-aoM
-art
-asu
-atu
-asu
-avG
-awM
-awM
-aze
-aze
-ayX
-aCN
-aEc
-aFB
-aze
-awM
-aJn
-asu
+aon
+aon
+aon
+aqS
+arQ
+asO
+arQ
+ava
+awg
+awg
+ayx
+ayx
+ayq
+aCf
+aDt
+aEQ
+ayx
+awg
+aIx
+arQ
abW
abW
abW
abW
-aLm
-aQA
-aRD
-aSl
-cOF
-aUq
+aKq
+aPl
+aQk
+aQS
+cIL
+aSU
+aTJ
+aTJ
+aUG
aVf
-aVf
-aWc
-aWB
-aWO
-aWY
-aXr
-aUC
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-aOv
-bam
-baM
-bam
-bbM
-bbM
-bcV
-bdy
-bcp
-cQW
-bfU
+aVq
+aVA
+aVS
+aTg
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aNo
+aYL
+aZl
+aYL
+bal
+bal
+bbt
+bbV
baO
-bhM
-biO
-bjD
-bkx
-cWJ
-bms
-bni
-cWJ
-cKD
-brh
-bsy
-cWJ
-bvE
-bvE
-byH
-cWJ
-bAV
-bBW
-bDo
-bEt
-bFB
-cXQ
-bIe
-bJK
-bLo
-dhp
-bNH
-bPb
-dhS
-dif
-bSM
-dsP
-bUO
-bVN
-bWA
-bXe
-bJx
-bYI
-bTD
-bZQ
-bOM
-bOM
-bOM
-bOM
-bOM
-bAd
-bAd
-dqk
-bBN
-aZH
-aZH
-aZH
+cJm
+bel
+aZn
+bgd
+bhe
+bhR
+biK
+cLf
+bkB
+blp
+cLf
+cGa
+bpe
+bqv
+cLf
+btv
+btv
+bwp
+cLf
+byB
+bzB
+bAO
+bBS
+bCV
+cLj
+bFv
+bHb
+bIC
+cQQ
+bKR
+bMj
+cRl
+cRv
+bPQ
+cWS
+bRR
+bSP
+bTB
+bUf
+bGO
+bVJ
+bQH
+bWQ
+bLU
+bLU
+bLU
+bLU
+bLU
+bxK
+bxK
+cVl
+bzs
+aYg
+aYg
+aYg
aaa
-cKF
-cKF
-dCn
-dCy
-dCJ
-dCV
-dDi
-dDv
-dDI
-dEf
-dEF
-dFd
-dFA
-dFQ
-cKF
-cKF
+cGc
+cGc
+cZo
+cZu
+cZm
+cZm
+cZm
+cZJ
+cZs
+cZs
+cZJ
+cZm
+cZm
+cZm
+cGc
+cGc
aaa
aaa
aaa
@@ -138958,29 +125296,29 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxb
-dwX
-ctB
-dwO
+aqV
+cXX
+cXZ
+cXY
+cpI
+cXX
abC
abC
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -139068,188 +125406,188 @@ abC
aaa
aaa
aaa
-anI
-aoN
-apJ
-aqF
-aru
-asv
-atv
-asv
-avH
-awL
-awL
-azf
-aAz
-ayX
-aCO
-aEc
-aFC
-aze
-aCO
-asu
-asu
+ann
+aoo
+apj
+aqf
+aqT
+arR
+asP
+arR
+avb
+awf
+awf
+ayy
+azR
+ayq
+aCg
+aDt
+aER
+ayx
+aCg
+arQ
+arQ
abW
abW
abW
abW
-aLm
-aQB
-aRD
-aSl
-cOF
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aXI
-aXX
-aXX
-dta
-aXX
-aXX
-aXX
-dta
-aXX
-aXX
-dta
-aXX
-aXX
-aXX
-dta
-aXX
-aXX
-aZT
-bal
-bal
-cQD
-cQG
-cQG
-cQG
-bdz
-cQG
-cRc
-baN
-baO
-bhM
-biO
-bjD
-bkx
-cWJ
-bmt
-bnj
-bow
-cWJ
-bri
-bsz
-cWJ
-bvF
-bxk
-bxk
-bsG
-cWJ
-cWJ
-bDp
-bEt
-bFC
-cKV
-bIf
-bJK
-bMI
-bNI
-dhv
-bPc
-dhT
-dig
-bSN
-bTN
-bUP
-bVO
-bWB
-bXf
-bXT
-bYJ
-bZm
-bZR
-bGE
-bAd
-bAd
-byS
-bAd
-byS
-cbr
-dqk
-bBN
-aZH
-aZH
-aZH
+aKq
+aPm
+aQk
+aQS
+cIL
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aWj
+aWy
+aWy
+cWY
+aWy
+aWy
+aWy
+cWY
+aWy
+aWy
+cWY
+aWy
+aWy
+aWy
+cWY
+aWy
+aWy
+aYs
+aYK
+aYK
+cJf
+cJi
+cJi
+cJi
+bbW
+cJi
+cJo
+aZm
+aZn
+bgd
+bhe
+bhR
+biK
+cLf
+bkC
+blq
+bmC
+cLf
+bpf
+bqw
+cLf
+btw
+buX
+buX
+bqD
+cLf
+cLf
+bAP
+bBS
+bCW
+cGj
+bFw
+bHb
+bJV
+bKS
+cQV
+bMk
+cRm
+cRw
+bPR
+bQR
+bRS
+bSQ
+bTC
+bUg
+bUU
+bVK
+bWn
+bWR
+bDV
+bxK
+bxK
+bwA
+bxK
+bwA
+bYq
+cVl
+bzs
+aYg
+aYg
+aYg
aaa
-cKF
-dCe
-dCo
-dCz
-dCK
-dCW
-dDj
-dDw
-dDJ
-dEg
-dEG
-dFe
-dFB
-dFR
-dGd
-dGu
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cZm
+cZm
+cZm
+cZm
+cZm
+cZm
+cZK
+cZR
+cZR
+dap
+daA
+cZm
+cZm
+cZm
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dBG
-dyO
-cuk
+aqV
+cmQ
+cXY
+cYX
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -139315,9 +125653,9 @@ aaa
aaa
aaa
aaa
-afV
-agR
-afV
+afH
+agD
+afH
aaa
aaa
aaa
@@ -139326,158 +125664,158 @@ aaa
aaa
aaa
aaa
-aoM
-aoM
-aoM
-art
-asw
-asw
-asw
-avI
-awU
-axM
-azg
-aAA
-azg
-aCP
-azg
-aFD
-aGZ
-aHZ
-aFI
+aon
+aon
+aon
+aqS
+arS
+arS
+arS
+avc
+awo
+axf
+ayz
+azS
+ayz
+aCh
+ayz
+aES
+aGn
+aHk
+aEX
abW
abW
abW
abW
abW
-aLm
-aQB
-aRD
-aSD
-cPq
-aUr
-aSU
-aVB
-aWd
-aSU
-aSU
-aSU
-aSR
-dsW
-dsW
-dsW
-dBh
-dsW
-dsW
-dsW
-dBi
-dsW
-dsW
-dBi
-dsW
-dsW
-dsW
-dBh
-dsW
-dsW
-dsW
-ban
-baN
-cQE
-bbN
-baN
-baN
-bdA
-bei
-bfb
-bfV
-baO
-bhM
-biO
-bjD
-bkx
-cWJ
-bmu
-bms
-bms
-cXi
-brj
-bsA
-cWJ
-bvG
-bvG
-bvG
-bzS
-bAW
-bBX
-bDq
-bEt
-bFD
-bGS
-bHZ
-bJK
-bLo
-bNJ
-bPd
-dhE
-dhE
-dhE
-dhE
-bTO
-bUQ
-bVP
-bWC
-bGF
-bGE
-bGE
-bGE
-bGE
-bGE
-byS
-bAd
-djv
-byS
-bPt
-byP
-dqk
-djk
-aZH
-aZt
+aKq
+aPm
+aQk
+aRk
+cIR
+aSV
+aRA
+aUf
+aUH
+aRA
+aRA
+aRA
+aRx
+cWU
+cWU
+cWU
+cYJ
+cWU
+cWU
+cWU
+cYK
+cWU
+cWU
+cYK
+cWU
+cWU
+cWU
+cYJ
+cWU
+cWU
+cWU
+aYM
+aZm
+cJg
+bam
+aZm
+aZm
+bbX
+bcD
+bdw
+bem
+aZn
+bgd
+bhe
+bhR
+biK
+cLf
+bkD
+bkB
+bkB
+cLh
+bpg
+bqx
+cLf
+btx
+btx
+btx
+bxz
+byC
+bzC
+bAQ
+bBS
+bCX
+bEj
+bFq
+bHb
+bIC
+bKT
+bMl
+cRc
+cRc
+cRc
+cRc
+bQS
+bRT
+bSR
+bTD
+bDW
+bDV
+bDV
+bDV
+bDV
+bDV
+bwA
+bxK
+cRX
+bwA
+bMB
+bwx
+cVl
+cRT
+aYg
+aXS
aaa
aaa
-cKF
-dCf
-dCp
-dCA
-dCL
-dCX
-dDk
-dDx
-dDK
-dEh
-dEH
-dFf
-dFC
-dFS
-dGe
-dGv
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cZm
+cZp
+cZv
+cZz
+cZm
+cZD
+cZL
+cZx
+cZs
+cZL
+cZm
+cZm
+cZm
+daU
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
aaa
@@ -139494,19 +125832,19 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -139572,172 +125910,172 @@ aaa
aaa
aaa
aaa
-afV
-agP
-afV
-afV
-afV
-afV
-afV
+afH
+agB
+afH
+afH
+afH
+afH
+afH
abW
aaa
-amX
+amC
abE
abW
aaa
abE
abW
-asw
-atw
-auA
-avJ
-awV
-axM
-azh
-aAB
-aBS
-aCQ
-azg
-aFE
-aHa
-aIa
-aFI
+arS
+asQ
+atU
+avd
+awp
+axf
+ayA
+azT
+aBk
+aCi
+ayz
+aET
+aGo
+aHl
+aEX
abW
-afV
-afV
-afV
-afV
-aLm
-aQC
-aRE
-aSE
-cPr
-aUs
-aRG
-aRG
-aRG
-aRG
-aRG
-aRG
-cPC
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cPD
-cQx
-cQz
-cQF
-baO
-baO
-baO
-bdB
-bej
-bfc
-bfW
-bgI
-bhN
-cKx
-bjD
-bkx
-cWJ
-bmv
-bms
-box
-cXi
-brk
-brk
-bui
-bvH
-bxl
-bvH
-bzT
-bAX
-bBY
-bDr
-bEu
-bFE
-bGT
-bIa
-bJN
-bLp
-bMJ
-dhw
-bPe
-bQA
-bRB
-bSO
-bTP
-bUR
-bVQ
-bWD
-dpA
-dpA
-dpA
-dpA
-dpA
-dpK
-dpA
-dpA
-dpU
-djw
-byP
-byP
-dBW
-cMH
-aZH
+afH
+afH
+afH
+afH
+aKq
+aPn
+aQl
+aRl
+cIS
+aSW
+aQn
+aQn
+aQn
+aQn
+aQn
+aQn
+cIW
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cIX
+cJa
+cJb
+cJh
+aZn
+aZn
+aZn
+bbY
+bcE
+bdx
+ben
+beZ
+bge
+cFX
+bhR
+biK
+cLf
+bkE
+bkB
+bmD
+cLh
+bph
+bph
+bsc
+bty
+buY
+bty
+bxA
+byD
+bzD
+bAR
+bBT
+bCY
+bEk
+bFr
+bHd
+bID
+bJW
+cQW
+bMm
+bNG
+bOG
+bPS
+bQT
+bRU
+bSS
+bTE
+cVa
+cVa
+cVa
+cVa
+cVa
+cVc
+cVa
+cVa
+cVg
+cRY
+bwx
+bwx
+cZj
+cHu
+aYg
aaa
aaa
-cKF
-cKF
-dCg
-dCq
-dCB
-dCM
-dCY
-dDl
-dDy
-dDL
-dEi
-dEI
-dFg
-dFD
-dFT
-dGf
-dGw
-dGO
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cZm
+cZq
+cZr
+cZr
+cZm
+cZE
+cZL
+cZx
+cZR
+daq
+cZm
+daJ
+daS
+daM
+cZm
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cqC
+aqV
+cmQ
+cXY
+cXY
+cYf
+cmQ
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -139751,19 +126089,19 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -139829,198 +126167,198 @@ aaa
aaa
aaa
aaa
-afV
-agS
-ahF
-aim
-aiY
-ajN
-afS
-afS
-adZ
-akG
+afH
+agE
+ahr
+ahV
+aiG
+aju
+afE
+afE
+adP
+akm
abW
abW
acH
acH
acH
-asw
-atx
-auB
-avJ
-awW
-axM
-azi
-aAC
-aBS
-aCR
-azg
-aFF
-aHb
-aIb
-aFI
+arS
+asR
+atV
+avd
+awq
+axf
+ayB
+azU
+aBk
+aCj
+ayz
+aEU
+aGp
+aHm
+aEX
abW
-afV
-aMg
-aNj
-cYn
-aPg
-aQD
-aRD
-aSF
-aSN
-aUt
-aSN
-aSN
-aWe
-aSN
-aSN
-aSN
-aSP
-dsW
-dsW
-dsW
-dsW
-dsW
-dsW
-dsW
-dtl
-dsW
-dsW
-dBl
-dBm
-dBm
-dBm
-dBm
-dBm
-dBm
-dBm
-dBv
-cQA
-dBw
-dBw
-bcq
-dBw
-dBz
-bek
+afH
+aLi
+aMf
+cLz
+aNY
+aPo
+aQk
+aRm
+aRu
+aSX
+aRu
+aRu
+aUI
+aRu
+aRu
+aRu
+aRw
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cWU
+cXd
+cWU
+cWU
+cYM
+cYN
+cYN
+cYN
+cYN
+cYN
+cYN
+cYN
+cYP
+cJc
+cYQ
+cYQ
baP
-bfX
-bgJ
-bhO
-biO
-bjD
-bkx
-cWJ
-bmu
-bms
-bms
-cXi
-brl
-bsB
-cWJ
-bvI
-bvI
-bvI
-bzU
-bAY
-bBX
-bDs
-bEv
-bFF
-bGU
-bIg
-bJK
-bLo
-bLo
-dhx
-dhH
-bQB
-bRC
-bSP
-bTQ
-bUS
-bQH
-bQH
-bQH
-bQH
-bQH
-byS
-bAe
-djk
-cbr
-byP
-dpV
-dpX
-dpX
-dpX
-dqI
-byS
-byS
-dBY
-dCa
-dCc
-byS
-dCh
-dCr
-dCC
-dCN
-dCZ
-dDm
-dDz
-dDM
-dEj
-dEJ
-dFh
-dFE
-dFU
-dGg
-dGx
-dGP
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cYQ
+cYR
+bcF
+aZo
+beo
+bfa
+bgf
+bhe
+bhR
+biK
+cLf
+bkD
+bkB
+bkB
+cLh
+bpi
+bqy
+cLf
+btz
+btz
+btz
+bxB
+byE
+bzC
+bAS
+bBU
+bCZ
+bEl
+bFx
+bHb
+bIC
+bIC
+cQX
+cRe
+bNH
+bOH
+bPT
+bQU
+bRV
+bNN
+bNN
+bNN
+bNN
+bNN
+bwA
+bxL
+cRT
+bYq
+bwx
+cVh
+cVi
+cVi
+cVi
+cVt
+bwA
+bwA
+cZl
+cZl
+cZl
+bwA
+cZm
+cZr
+cZw
+cZw
+cZB
+cZF
+cZM
+cZx
+cZR
+dar
+daB
+daK
+daL
+daK
+dbc
+cZC
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-dwO
-dxg
-dwX
-dyO
-dwO
+aqV
+cXX
+cYa
+cXY
+cYf
+cXX
abC
abC
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -140086,198 +126424,198 @@ aaa
aaa
aaa
aaa
-afV
-agT
-ahG
-ain
-aiZ
-ajO
-akH
-cYh
-afV
-afS
-adZ
-aez
-aez
-aez
-aez
-asw
-aty
-auC
-avJ
-awX
-axM
-azj
-aAD
-aBS
-aCS
-azg
-aFG
-aHc
-aIc
-aFI
-adZ
-afV
-aMh
-aNk
-aOk
-aPh
-aQE
-aRD
-aSl
-aLm
-aLm
-aLm
-aLm
-aPl
-aLm
-aLm
-aLm
-aLm
-aXJ
-aXY
-aXY
-dtb
-aXY
-aXY
-aXY
-dtb
-aXY
-aXY
-dtb
-aXY
-aXY
-aXY
-dtb
-aXY
-aXY
-aZU
-bal
-cQB
-cQG
-cQG
-cQG
-cQG
-cQG
-cQG
-cRd
-bfY
-bgK
-bhP
-biO
-bjD
-bkx
-cWJ
-bmw
-cWX
-boy
-cWJ
-cXq
-bsC
-cWJ
-bvJ
-bxm
-bxm
-bzV
-cWJ
-cWJ
-bDt
-bEt
-bFC
-cXQ
-bIh
-bJO
-bLq
-cMC
-bLo
-bPa
-bQC
-bRD
-bSQ
-bTS
-bUT
-bQH
-bWE
-bXg
-bXU
-bQH
-bAd
-bAd
-byS
-cMH
-byS
-bDb
-byQ
-byQ
-byO
-dBX
-cdB
-dgn
-cbr
-cbr
-cbr
-cdB
-dCi
-dCs
-dCD
-dCO
-dDa
-dDn
-dDA
-dDN
-dEk
-dEK
-dFi
-dFF
-dFV
-dGh
-dGy
-dGQ
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+afH
+agF
+ahs
+ahW
+aiH
+ajv
+akn
+cLu
+afH
+afE
+adP
+aep
+aep
+aep
+aep
+arS
+asS
+atW
+avd
+awr
+axf
+ayC
+azV
+aBk
+aCk
+ayz
+aEV
+aGq
+aHn
+aEX
+adP
+afH
+aLj
+aMg
+aNe
+aNZ
+aPp
+aQk
+aQS
+aKq
+aKq
+aKq
+aKq
+aOc
+aKq
+aKq
+aKq
+aKq
+aWk
+aWz
+aWz
+cWZ
+aWz
+aWz
+aWz
+cWZ
+aWz
+aWz
+cWZ
+aWz
+aWz
+aWz
+cWZ
+aWz
+aWz
+aYt
+aYK
+cJd
+cJi
+cJi
+cJi
+cJi
+cJi
+cJi
+cJp
+bep
+bfb
+bgg
+bhe
+bhR
+biK
+cLf
+bkF
+cLg
+bmE
+cLf
+cLi
+bqz
+cLf
+btA
+buZ
+buZ
+bxC
+cLf
+cLf
+bAT
+bBS
+bCW
+cLj
+bFy
+bHe
+bIE
+cHp
+bIC
+bMi
+bNI
+bOI
+bPU
+bQV
+bRW
+bNN
+bTF
+bUh
+bUV
+bNN
+bxK
+bxK
+bwA
+cHu
+bwA
+bAB
+bwy
+bwy
+bww
+cZk
+caz
+cQo
+bYq
+bYq
+bYq
+caz
+cZn
+cZs
+cZx
+cZx
+cZC
+cZs
+cZs
+cZx
+cZR
+cZR
+cZC
+daL
+daK
+daV
+dbd
+cZC
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -140343,198 +126681,198 @@ aaa
aaa
aaa
aaa
-afV
-agT
-ahH
-aio
-aio
-ajP
-akH
-cYh
-amb
-cYl
-akp
-afV
-afS
-cYj
-arv
-asw
-atz
-auD
-avK
-awY
-axM
-azk
-aAE
-aBT
-aCT
-azg
-aFH
-aHd
-aId
-aFI
-adZ
-afV
-aOG
-aNl
-cYo
-aLm
-aQF
-aRD
-aSl
-aLm
-aUu
+afH
+agF
+aht
+ahX
+ahX
+ajw
+akn
+cLu
+alG
+cLx
+ajW
+afH
+afE
+cLv
+aqU
+arS
+asT
+atX
+ave
+aws
+axf
+ayD
+azW
+aBl
+aCl
+ayz
+aEW
+aGr
+aHo
+aEX
+adP
+afH
+aNz
+aMh
+cLA
+aKq
+aPq
+aQk
+aQS
+aKq
+aSY
+aTK
+aUg
+aUJ
aVg
-aVC
-aWf
-aWC
-aWP
-aWZ
-aXs
-aXK
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-aZV
-baq
-baQ
-bbn
-bbO
-bcp
-bcW
-bco
-bco
-cQW
-bfY
-bgK
-bhP
-biO
-bjD
-bkx
-cWJ
-bms
-bnl
-cWJ
-cKE
-brh
-bsy
-cWJ
-bvK
-bxn
-bvK
-cWJ
-bAZ
-bBZ
-bDs
-bEt
-bFB
-cXQ
-bIi
-bJK
-bLo
-bLo
-bLo
-bPf
-bQD
-bRE
-bSQ
-bTS
-bUU
-bVR
-bWF
-bXg
-bXV
-bQH
-bAd
-bAd
-bAd
-bAd
-bAd
-byQ
-byP
-byP
-byP
-bYK
-cMH
-cMH
-dBZ
-dCb
-dCd
-byS
-dCj
-dCt
-dCE
-dCP
-dDb
-dDo
-dDB
-dDO
-dEl
-dEL
-dFj
-dFG
-dFW
-dGi
-dGz
-dGR
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+aVr
+aVB
+aVT
+aWl
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aYu
+aYP
+aZp
+aZM
+ban
+baO
+bbu
+baN
+baN
+cJm
+bep
+bfb
+bgg
+bhe
+bhR
+biK
+cLf
+bkB
+bls
+cLf
+cGb
+bpe
+bqv
+cLf
+btB
+bva
+btB
+cLf
+byF
+bzE
+bAS
+bBS
+bCV
+cLj
+bFz
+bHb
+bIC
+bIC
+bIC
+bMn
+bNJ
+bOJ
+bPU
+bQV
+bRX
+bST
+bTG
+bUh
+bUW
+bNN
+bxK
+bxK
+bxK
+bxK
+bxK
+bwy
+bwx
+bwx
+bwx
+bVL
+cHu
+cHu
+cZl
+cZl
+cZl
+bwA
+cZm
+cZr
+cZr
+cZr
+cZB
+cZG
+cZF
+cZR
+cZR
+cZR
+daB
+daM
+daM
+daL
+dbe
+cZC
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -140600,54 +126938,54 @@ aaa
aaa
aaa
aaa
-afV
-agU
-ahI
-ahI
-aja
-ajQ
-afS
-afS
-aiS
-akp
-alS
-akq
-amb
-akp
-akp
-asw
-asw
-asw
-asw
-asw
-asw
-azl
-azl
-azl
-azl
-azl
-aFI
-aFI
-aFI
-aFI
-adZ
-afV
-aym
-aNl
-aME
-aLm
-aQG
-aRN
-aSG
-aTA
-aUv
+afH
+agG
+ahu
+ahu
+aiI
+ajx
+afE
+afE
+aiA
+ajW
+alx
+ajX
+alG
+ajW
+ajW
+arS
+arS
+arS
+arS
+arS
+arS
+ayE
+ayE
+ayE
+ayE
+ayE
+aEX
+aEX
+aEX
+aEX
+adP
+afH
+axF
+aMh
+aLE
+aKq
+aPr
+aQu
+aRn
+aSg
+aSZ
+aTL
+aTL
+aTL
aVh
-aVh
-aVh
-aWD
-aLm
-aLm
-aLm
+aKq
+aKq
+aKq
aaa
aaa
aaa
@@ -140666,132 +127004,132 @@ aaa
aaa
aaa
aaa
-bal
-bal
-bal
-bbP
-bcr
-bcX
-bcX
-bel
-bfd
-bfZ
-bgL
-bhP
-biO
-bjD
-bkx
-cWJ
-bms
-cWX
-cWX
-bpT
-bri
-bsD
-cWJ
-bvL
-bvL
-bvL
-cWJ
-bAZ
-bBZ
-bDs
-bEw
-bFG
-cXQ
-bIj
-bJP
-bLr
-bML
-bLr
-bPg
-bQE
-bRF
-bSR
-bTT
-bUU
-bVR
-bWF
-bXg
-bXW
-bQH
-bAd
-bAd
-bAd
-byS
-cbp
-byQ
-byP
-byS
-bAd
-bAd
-bAd
-aZt
+aYK
+aYK
+aYK
+bao
+baQ
+bbv
+bbv
+bcG
+bdy
+beq
+bfc
+bgg
+bhe
+bhR
+biK
+cLf
+bkB
+cLg
+cLg
+bnU
+bpf
+bqA
+cLf
+btC
+btC
+btC
+cLf
+byF
+bzE
+bAS
+bBV
+bDa
+cLj
+bFA
+bHf
+bIF
+bJX
+bIF
+bMo
+bNK
+bOK
+bPV
+bQW
+bRX
+bST
+bTG
+bUh
+bUX
+bNN
+bxK
+bxK
+bxK
+bwA
+bYo
+bwy
+bwx
+bwA
+bxK
+bxK
+bxK
+aXS
aaa
aaa
-cKF
-cKF
-dCk
-dCu
-dCF
-dCQ
-dDc
-dDp
-dDC
-dDP
-dEm
-dEM
-dFk
-dFH
-dFX
-dGj
-dGA
-dGS
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cZm
+cZq
+cZr
+cZr
+cZm
+cZH
+cZN
+cZx
+cZx
+das
+cZm
+daN
+daS
+daL
+cZm
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -140857,198 +127195,198 @@ aaa
aaa
aaa
aaa
-afV
-afW
-afW
-afS
-ajb
-afS
-afS
-adZ
-adZ
-afV
-afq
-akq
-akq
-akq
-akp
-cYC
-atA
-auE
-ahr
-aqj
-aCr
-aCr
-aAF
-aBU
-aCr
+afH
+afI
+afI
+afE
+aiJ
+afE
+afE
+adP
+adP
+afH
+afc
+ajX
+ajX
+ajX
+ajW
+cLG
+asU
+atY
+ahd
+apJ
+aBJ
+aBJ
+azX
+aBm
+aBJ
+cMe
+aBJ
+aGs
+aAS
+adP
+adP
+afH
+aLk
+aMi
+aNf
+aNY
+aPs
+aQk
+aRo
+aKq
+aMl
+aMl
+aMl
+aMl
+aMl
+aKq
+abW
+abW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cGc
+cGc
+aaa
+aaa
+aXE
+aXS
+aYK
+bap
+baR
+baO
+baO
+bcH
+cJm
+bep
+bfd
+bgg
+bhe
+bhR
+biK
+cLf
+cLf
+cLf
+cLf
+cLf
+bpe
+bqB
+bsd
+btD
+bvb
+bwq
+bxD
+byG
+byG
+bAU
+bBW
+bDb
+bDc
+bFt
+bHg
+bIC
+bJY
+bIC
+bMp
+bNJ
+bOL
+bPW
+bQX
+bRY
+bNN
+bTH
+bUh
+bUY
+bNN
+bxK
+bxK
+bxK
+bwA
+bwy
+bwx
+cRZ
+cHu
+aXS
+aXS
+aXS
+aXS
+aaa
+aaa
+aaa
+aaa
+cZm
+cZt
+cZy
+cZA
+cZm
+cZI
+cZO
+cZx
+cZx
cZG
-aCr
-aHe
-aBA
-adZ
-adZ
-afV
-aMk
-aNm
-aOm
-aPg
-aQH
-aRD
-aSH
-aLm
-aNp
-aNp
-aNp
-aNp
-aNp
-aLm
-abW
-abW
+cZm
+cZm
+cZm
+daW
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aaa
+aaa
+aaa
+aqV
+cXX
+cXZ
+cXY
+cYg
+cXX
+aaa
+aaa
+aWs
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cKF
-cKF
-aaa
-aaa
-aZf
-aZt
-bal
-bbQ
-bcs
-bcp
-bcp
-bem
-cQW
-bfY
-bgM
-bhP
-biO
-bjD
-bkx
-cWJ
-cWJ
-cWJ
-cWJ
-cWJ
-brh
-bsE
-buj
-bvM
-bxo
-byI
-bzW
-bBa
-bBa
-bDu
-bEx
-bFH
-bFI
-bIc
-bJQ
-bLo
-bMM
-bLo
-bPh
-bQD
-bRG
-bSS
-bTU
-bUV
-bQH
-bWG
-bXg
-bXX
-bQH
-bAd
-bAd
-bAd
-byS
-byQ
-byP
-djx
-cMH
-aZt
-aZt
-aZt
-aZt
-aaa
-aaa
-aaa
-aaa
-dCl
-dCv
-dCG
-dCR
-dDd
-dDq
-dDD
-dDQ
-dEn
-dEN
-dFl
-dFI
-dFY
-dGk
-dGB
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-aaa
-aaa
-aaa
-arw
-dwO
-dxb
-dwX
-dyV
-dwO
-aaa
-aaa
-aXR
-aaa
-aaa
-aaa
-aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -141117,49 +127455,49 @@ aaa
abC
abC
abC
-afW
-ajc
-ahI
-afV
+afI
+aiK
+ahu
+afH
abC
-akG
-adZ
-afV
-aUV
-cYB
-aqH
-akq
-akq
-akq
-alQ
-akq
-akq
-akq
-akp
-akq
-akq
-akq
-akq
-akq
-akq
-anC
-dam
-afS
-afS
+akm
+adP
+afH
+aTz
+cLF
+aqh
+ajX
+ajX
+ajX
+alv
+ajX
+ajX
+ajX
+ajW
+ajX
+ajX
+ajX
+ajX
+ajX
+ajX
+anh
+cMy
+afE
+afE
+aLl
+aMj
+aNg
+aKq
+aPt
+aQk
+aRp
+aKq
+aTa
+aTa
aMl
-aNn
-aOn
-aLm
-aQI
-aRD
-aSI
-aLm
-aUw
-aUw
-aNp
-aWg
-aMo
-aLm
+aUK
+aLo
+aKq
abW
abW
aaa
@@ -141178,134 +127516,134 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
-aZf
-aZt
-bal
-bbQ
-bct
-bcY
-bcp
-ben
-cQW
-bfY
-bgM
-bhP
-biO
-bjD
-bkx
-bkw
-blq
-bkw
-blq
-cWJ
-brj
-bsF
-buk
-bvN
-buk
-byJ
-bzX
-buk
-buk
-bDv
-bEy
-bFI
-bGV
-bIk
-bJR
-bLs
-bMN
-bNK
-bPi
-bQF
-bRH
-bST
-bTV
-bUW
-bVS
-bWH
-bXh
-bXY
-bQH
-bAd
-bAd
-bAd
-byQ
-byP
-byP
-bAd
-bAd
-aZH
-aZH
-aZt
-aZt
+aXE
+aXS
+aYK
+bap
+baS
+bbw
+baO
+bcI
+cJm
+bep
+bfd
+bgg
+bhe
+bhR
+biK
+biJ
+bjC
+biJ
+bjC
+cLf
+bpg
+bqC
+bse
+btE
+bse
+bwr
+bxE
+bse
+bse
+bAV
+bBX
+bDc
+bEm
+bFB
+bHh
+bIG
+bJZ
+bKU
+bMq
+bNL
+bOM
+bPX
+bQY
+bRZ
+bSU
+bTI
+bUi
+bUZ
+bNN
+bxK
+bxK
+bxK
+bwy
+bwx
+bwx
+bxK
+bxK
+aYg
+aYg
+aXS
+aXS
aaa
aaa
aaa
aaa
-dCm
-dCw
-dCH
-dCS
-dDe
-dDr
-dDE
-dDR
-dEo
-dEO
-dFm
-dFJ
-dFZ
-dGl
-dGC
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cZm
+cZm
+cZm
+cZm
+cZm
+cZm
+cZP
+cZx
+cZR
+cZF
+daC
+cZm
+cZm
+cZm
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -141374,49 +127712,49 @@ aaa
aaa
aaa
abC
-afW
-ajd
-ajR
-afV
+afI
+aiL
+ajy
+afH
aaa
abW
abW
-aez
-aez
-afS
-aez
-afV
-cYj
-cYT
-apx
-afq
-afq
-alQ
-afV
-aoy
-apx
-aqH
-akq
-afq
-afq
-anC
-akq
-aKn
-afS
-afS
-afV
-afV
-aLm
-aQB
-aRD
-aSJ
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
+aep
+aep
+afE
+aep
+afH
+cLv
+cLL
+aoX
+afc
+afc
+alv
+afH
+anZ
+aoX
+aqh
+ajX
+afc
+afc
+anh
+ajX
+aJu
+afE
+afE
+afH
+afH
+aKq
+aPm
+aQk
+aRq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
abW
abW
aaa
@@ -141437,132 +127775,132 @@ aaa
aaa
aaa
aaa
-aZt
-aZt
-bal
-bal
-bal
-bal
-bal
-bal
-cQX
-bfY
-bgM
-bhP
-biO
-bjD
-bky
-bls
-bky
-bls
-bkx
-cWJ
-brm
-bsG
-cKD
-bvO
-bxp
-byK
-bzY
-bBb
-bBb
-bBb
-bBb
-bBb
-bGW
-bIl
-bJS
-bLl
-bLl
-bLl
-bPj
-bQB
-bRI
-bSU
-bSS
-bUX
-bQH
-bWI
-bWI
-bWI
-bQH
-bAd
-bAd
-byS
-caM
-byP
-byS
-bAd
-aZt
-aZH
-aZH
-aZt
-aZt
+aXS
+aXS
+aYK
+aYK
+aYK
+aYK
+aYK
+aYK
+cJn
+bep
+bfd
+bgg
+bhe
+bhR
+biL
+bjE
+biL
+bjE
+biK
+cLf
+bpj
+bqD
+cGa
+btF
+bvc
+bws
+bxF
+byH
+byH
+byH
+byH
+byH
+bEn
+bFC
+bHi
+bIz
+bIz
+bIz
+bMr
+bNH
+bON
+bPY
+bPW
+bSa
+bNN
+bTJ
+bTJ
+bTJ
+bNN
+bxK
+bxK
+bwA
+bXL
+bwx
+bwA
+bxK
+aXS
+aYg
+aYg
+aXS
+aXS
aaa
aaa
-cKF
-cKF
-cKF
-dCx
-dCI
-dCT
-dDf
-dDs
-dDF
-dDS
-dEp
-dEP
-dFn
-dFK
-dGa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cZo
+cZu
+cZm
+cZm
+cZm
+cZJ
+cZR
+cZs
+cZJ
+cZm
+cZm
+cZm
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -141631,43 +127969,43 @@ aaa
aaa
aaa
abC
-afV
-afV
-agP
-afV
+afH
+afH
+agB
+afH
aaa
abW
abW
abW
acH
acH
-aez
-afV
-afS
-afV
-adZ
-adZ
-awZ
-aqG
-adZ
-afS
-aez
-aez
-cZH
-afq
-aoy
-aIe
-aCr
-daw
-cZG
-daO
-cZG
-dba
-aPi
-aQJ
-aRD
-aSI
-aLm
+aep
+afH
+afE
+afH
+adP
+adP
+awt
+aqg
+adP
+afE
+aep
+aep
+cMf
+afc
+anZ
+aHp
+aBJ
+cMG
+cMe
+cMP
+cMe
+cMV
+aOa
+aPu
+aQk
+aRp
+aKq
acH
acH
acH
@@ -141694,132 +128032,132 @@ aaa
aaa
aaa
aaa
-aZH
-aZH
-aZH
-aZt
-aZH
-aZH
-aZH
-aZH
-cQW
-bga
-bgM
-bhQ
-biO
+aYg
+aYg
+aYg
+aXS
+aYg
+aYg
+aYg
+aYg
+cJm
+ber
+bfd
+bgh
+bhe
+bhS
+biI
+biI
+biI
+biI
bjE
-bkv
-bkv
-bkv
-bkv
-bls
abC
abC
-bsH
-cWJ
-bvP
-bxq
-byL
-cWJ
+bqE
+cLf
+btG
+bvd
+bwt
+cLf
abC
abC
abC
abC
-blr
-bGO
-bIm
-bJT
-bLt
-bMO
-bLt
-bPk
-bQG
-bRJ
-bSU
-bSS
-bUY
-bQH
-bWI
-bWI
-bXZ
-bQH
-bAd
-bAd
-cMH
-dgC
-byP
-byS
-bBN
-aZH
-aZH
-aZH
-aZt
-aZt
+bjD
+bEf
+bFD
+bHj
+bIH
+bKa
+bIH
+bMs
+bNM
+bOO
+bPY
+bPW
+bSb
+bNN
+bTJ
+bTJ
+bVa
+bNN
+bxK
+bxK
+cHu
+cQu
+bwx
+bwA
+bzs
+aYg
+aYg
+aYg
+aXS
+aXS
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-dDg
-dDt
-dDG
-dDT
-dEq
-dEQ
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cZo
+cZu
+cZJ
+cZS
+cZS
+cZJ
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -141889,11 +128227,11 @@ aaa
aaa
aaa
abC
-afV
-agQ
-afV
+afH
+agC
+afH
abC
-akG
+akm
abW
abW
abW
@@ -141903,28 +128241,28 @@ acH
acH
acH
acH
-aez
-aez
-aez
+aep
+aep
+aep
acH
acH
acH
-aez
-aEi
-afS
-afV
-aez
-afV
-cYj
-akp
-cYC
-dav
-auZ
-akH
-aQa
-aRD
-aSI
-aLm
+aep
+aDz
+afE
+afH
+aep
+afH
+cLv
+ajW
+cLG
+cMF
+aut
+akn
+aOL
+aQk
+aRp
+aKq
acH
acH
acH
@@ -141949,134 +128287,134 @@ aaa
aaa
aaa
aaa
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-cQW
-bfY
-bgM
-bhP
-biO
-biO
-biO
-biO
-cKx
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-biO
-bEz
-biO
-biO
-bIn
-bJU
-bpS
-biO
-biO
-biO
-bQH
-bRK
-bSU
-bTW
-bQH
-bQH
-bWJ
-bXi
-bXZ
-bQH
-byS
-bAd
-byQ
-byP
-byP
-cMH
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+cJm
+bep
+bfd
+bgg
+bhe
+bhe
+bhe
+bhe
+cFX
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bhe
+bBY
+bhe
+bhe
+bFE
+bHk
+bnT
+bhe
+bhe
+bhe
+bNN
+bOP
+bPY
+bQZ
+bNN
+bNN
+bTK
+bUj
+bVa
+bNN
+bwA
+bxK
+bwy
+bwx
+bwx
+cHu
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
abC
abC
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142164,24 +128502,24 @@ acH
acH
acH
acH
-aez
-afS
-afS
-akp
-aez
+aep
+afE
+afE
+ajW
+aep
acH
acH
-aez
-aez
-afS
-afV
-aLm
-aLm
-aLm
-aQf
-aRJ
-aSK
-aLm
+aep
+aep
+afE
+afH
+aKq
+aKq
+aKq
+aOQ
+aQq
+aRr
+aKq
acH
acH
acH
@@ -142206,81 +128544,81 @@ aaa
aaa
aaa
aaa
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-cQW
-bfY
-bgN
-bhR
-bfb
-bjF
-bfb
-bfb
-bfb
-bnm
-boz
-bpU
-boz
-bsI
-bul
-bvQ
-bxr
-byM
-bzZ
-bBc
-bCa
-bDw
-bEA
-bFJ
-bGX
-bIo
-bJV
-bLu
-bJZ
-bJZ
-bJZ
-bJZ
-bRL
-bSV
-bSS
-bUZ
-bQH
-bQH
-bQH
-bQH
-bQH
-bTz
-byQ
-byQ
-byP
-bEi
-bBN
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+cJm
+bep
+bfe
+bgi
+bdw
+bhT
+bdw
+bdw
+bdw
+blt
+bmF
+bnV
+bmF
+bqF
+bsf
+btH
+bve
+bwu
+bxG
+byI
+bzF
+bAW
+bBZ
+bDd
+bEo
+bFF
+bHl
+bII
+bHp
+bHp
+bHp
+bHp
+bOQ
+bPZ
+bPW
+bSc
+bNN
+bNN
+bNN
+bNN
+bNN
+bQD
+bwy
+bwy
+bwx
+bBH
+bzs
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142299,41 +128637,41 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxg
-dwX
-dyO
-dwO
+aqV
+cXX
+cYa
+cXY
+cYf
+cXX
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142421,31 +128759,31 @@ abW
abW
abW
abW
-adZ
-akp
-akp
-akp
-aez
+adP
+ajW
+ajW
+ajW
+aep
acH
acH
acH
acH
acH
abW
-aLm
-aOp
-aPk
-aQK
-aRO
-aSL
-aLm
+aKq
+aNi
+aOb
+aPv
+aQv
+aRs
+aKq
acH
acH
acH
acH
acH
abW
-akG
+akm
abC
abC
abC
@@ -142463,81 +128801,81 @@ abC
abC
abC
abC
-aZI
-aZt
-aZt
-aZH
-aZH
-aZH
-bcu
-bcu
-bcu
-bcu
-cRl
-bfY
-bgO
-bhS
-biP
-bjG
-bjG
-bjG
-bjG
-bnn
-bjG
-bjG
-brn
-bst
-bum
-bvR
-bxs
-byN
-bAa
-bBd
-bBd
-bDx
-bEB
-bEB
-bBd
-bDx
-bJW
-bLv
-bJZ
-bNM
-bPl
-bJZ
-bRM
-bSW
-bSS
-bVa
-bQH
-bAd
-bAd
-bAd
-byS
-bDc
-byQ
-byP
-dja
-byS
-bBN
-aZH
-aZH
-aZt
-aZt
-aZt
+aYh
+aXS
+aXS
+aYg
+aYg
+aYg
+baT
+baT
+baT
+baT
+cJq
+bep
+bff
+bgj
+bhf
+bhU
+bhU
+bhU
+bhU
+blu
+bhU
+bhU
+bpk
+bqq
+bsg
+btI
+bvf
+bwv
+bxH
+byJ
+byJ
+bAX
+bCa
+bCa
+byJ
+bAX
+bHm
+bIJ
+bHp
+bKV
+bMt
+bHp
+bOR
+bQa
+bPW
+bSd
+bNN
+bxK
+bxK
+bxK
+bwA
+bAC
+bwy
+bwx
+cRO
+bwA
+bzs
+aYg
+aYg
+aXS
+aXS
+aXS
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142556,12 +128894,12 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
aaa
@@ -142569,28 +128907,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142676,26 +129014,26 @@ abW
abW
abW
abW
-afS
-afS
-afS
-afS
-cYC
-afV
-adZ
+afE
+afE
+afE
+afE
+cLG
+afH
+adP
abW
abW
abW
abW
-aLm
-aLm
-aLm
-aOq
-aLm
-aQL
-aRD
-aSl
-aLm
+aKq
+aKq
+aKq
+aNj
+aKq
+aPw
+aQk
+aQS
+aKq
acH
acH
acH
@@ -142720,81 +129058,81 @@ aaa
aaa
aaa
aaa
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-bcu
-bcZ
-bdC
-beo
-cRl
-bgb
-bgP
-bhT
-biQ
-bjH
-bjH
-blt
-bjH
-bno
-boA
-bjH
-bro
-bsr
-bun
-bvS
-bxt
-byE
-bAb
-bAR
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+baT
+bbx
+bbZ
+bcJ
+cJq
+bes
+bfg
+bgk
+bhg
+bhV
+bhV
+bjF
+bhV
+blv
+bmG
+bhV
+bpl
+bqo
+bsh
+btJ
+bvg
+bwm
+bxI
+byx
+bzG
+bAY
bCb
-bDy
-bEC
-bFK
-bGY
-bIp
-bJX
-bLw
-bMP
+bDe
+bEp
+bFG
+bHn
+bIK
+bKb
+bKW
+bMu
+bHp
+bOS
+bQb
+bRa
+bSe
bNN
-bPm
-bJZ
-bRN
-bSX
-bTX
-bVb
-bQH
-bAd
-bAd
-bAd
-cMH
-byQ
-byP
-djl
-bZS
-cMH
-cMH
-bZS
-aZH
-aZH
-aZH
-aZt
+bxK
+bxK
+bxK
+cHu
+bwy
+bwx
+cRU
+bWS
+cHu
+cHu
+bWS
+aYg
+aYg
+aYg
+aXS
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142813,31 +129151,31 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -142933,29 +129271,29 @@ abW
abW
abW
abW
-afS
-azm
-akp
-cYl
-akp
-afS
-adZ
+afE
+ayF
+ajW
+cLx
+ajW
+afE
+adP
abW
abW
abW
abW
+aKq
aLm
-aMm
-aMn
-aOq
-aLm
-aQM
-aRK
-aSw
-aLm
-aLm
-aLm
-aLm
+aLn
+aNj
+aKq
+aPx
+aQr
+aRd
+aKq
+aKq
+aKq
+aKq
abE
abE
abE
@@ -142977,81 +129315,81 @@ aaa
aaa
aaa
aaa
-aZf
-aZt
-aZt
-aZH
-aZH
-aZH
-bcu
-bda
-bdD
-bdD
-cRn
-cRo
-bgQ
-bhU
-bgQ
-cRo
-cRv
-cQG
-cQG
-bnp
-cQG
-cQG
-brp
-cQz
-buo
-cQG
-cQG
-cTm
-bAc
-bBe
+aXE
+aXS
+aXS
+aYg
+aYg
+aYg
+baT
+bby
+bca
+bca
+cJr
+cJs
+bfh
+bgl
+bfh
+cJs
+cJu
+cJi
+cJi
+blw
+cJi
+cJi
+bpm
+cJb
+bsi
+cJi
+cJi
+cJQ
+bxJ
+byK
+bzH
+bAZ
bCc
-bDz
-bED
-bFL
-bGZ
-bIq
-bJY
-bLx
-bMQ
-bNO
-bPn
-bJZ
-bQH
-bQH
-bTY
-bQH
-bQH
-cMH
-byS
-byS
-cMH
-byQ
-byP
-bZS
-cMH
-cbq
-cbT
-cMH
-aZH
-aZH
-aZH
+bDf
+bEq
+bFH
+bHo
+bIL
+bKc
+bKX
+bMv
+bHp
+bNN
+bNN
+bRb
+bNN
+bNN
+cHu
+bwA
+bwA
+cHu
+bwy
+bwx
+bWS
+cHu
+bYp
+bYS
+cHu
+aYg
+aYg
+aYg
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -143070,15 +129408,15 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
abC
abC
-aXR
+aWs
aaa
aaa
aaa
@@ -143190,29 +129528,29 @@ abW
abW
abW
abW
-afS
-azn
-akp
-cJM
-afV
-afV
+afE
+ayG
+ajW
+cFu
+afH
+afH
abW
abW
abW
abW
abW
-aLm
-aMn
-aNo
-aOq
-aPl
-aQN
-aRD
-aSM
-aTB
-aUx
-aNp
-aLm
+aKq
+aLn
+aMk
+aNj
+aOc
+aPy
+aQk
+aRt
+aSh
+aTb
+aMl
+aKq
abE
abE
abE
@@ -143234,81 +129572,81 @@ aaa
aaa
aaa
aaa
-aZf
-aZt
-aZt
-aZH
-aZH
-aZH
-bcu
-bdb
-bdD
-bdD
-bfe
-bgc
-bgR
-bhV
-biR
-bjI
-bkz
-blu
-bmx
-bnq
-bco
-bal
-brq
-bsJ
-bup
-bal
-bxu
-cTn
-cTp
-cTq
+aXE
+aXS
+aXS
+aYg
+aYg
+aYg
+baT
+bbz
+bca
+bca
+bdz
+bet
+bfi
+bgm
+bhh
+bhW
+biM
+bjG
+bkG
+blx
+baN
+aYK
+bpn
+bqG
+bsj
+aYK
+bvh
+cJR
+cJS
+cJT
+bzI
+bBa
bCd
-bDA
-bEE
-bFM
-bHa
-bBf
-bJZ
-bJZ
-bJZ
-bNP
-bPo
-bJZ
-bJZ
-bQH
-cLc
-cLe
-cbr
-cMV
-cMH
-cMH
-byQ
-byP
-byP
-caj
-caN
-caO
-cbr
-bZS
-aZH
-aZH
-aZH
+bDg
+bEr
+byL
+bHp
+bHp
+bHp
+bKY
+bMw
+bHp
+bHp
+bNN
+cGq
+cGr
+bYq
+cHy
+cHu
+cHu
+bwy
+bwx
+bwx
+bXi
+bXM
+bXN
+bYq
+bWS
+aYg
+aYg
+aYg
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -143327,15 +129665,15 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -143343,9 +129681,9 @@ aaa
aaa
aaa
aaa
-cCx
-cEd
-cCx
+cyv
+cAa
+cyv
aaa
aaa
aaa
@@ -143445,31 +129783,31 @@ aaa
aaa
abW
abW
-akG
+akm
abW
-afV
-azo
-aAG
-afV
-afV
+afH
+ayH
+azY
+afH
+afH
abW
abW
abW
abW
abW
abW
-aLm
-aMo
-aNp
-aOq
-aLm
-aQO
-aRD
-aSN
-aLm
-aUy
-aVi
-aLm
+aKq
+aLo
+aMl
+aNj
+aKq
+aPz
+aQk
+aRu
+aKq
+aTc
+aTM
+aKq
abE
abE
abE
@@ -143491,81 +129829,81 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZH
-aZH
-aZH
-bcu
-bdb
-bdE
-bep
-bff
-bgd
-bgS
-bhW
-biS
-bjJ
-bkz
-bcp
-bcp
-bnr
-bco
-bal
-baP
-cSv
-buq
-bvT
-bxv
-dfU
-bAd
-cTr
+aXE
+aXE
+aXS
+aYg
+aYg
+aYg
+baT
+bbz
+bcb
+bcK
+bdA
+beu
+bfj
+bgn
+bhi
+bhX
+biM
+baO
+baO
+bly
+baN
+aYK
+aZo
+cJA
+bsk
+btK
+bvi
+cQe
+bxK
+cJU
+bzJ
+bBb
bCe
-bDB
-bEF
-bFN
-bHb
-bBf
-bJZ
-bLy
-bMR
-bNQ
-bPp
-bJZ
-bJZ
-bQH
-bTZ
-bQH
-bAd
-cbr
-cbr
-byP
-byP
-byO
-bZS
-cMH
-cMH
-cbr
-cbU
-cMH
-aZH
-aZH
-aZH
+bDh
+bEs
+byL
+bHp
+bIM
+bKd
+bKZ
+bMx
+bHp
+bHp
+bNN
+bRc
+bNN
+bxK
+bYq
+bYq
+bwx
+bwx
+bww
+bWS
+cHu
+cHu
+bYq
+bYT
+cHu
+aYg
+aYg
+aYg
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -143584,26 +129922,26 @@ aaa
aaa
aaa
aaa
-arw
-dwO
-dxb
-dwX
-dza
-dwO
+aqV
+cXX
+cXZ
+cXY
+cYh
+cXX
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
aaa
aaa
-cCx
-cDp
-cDq
-cDp
-cCx
+cyv
+czn
+czo
+czn
+cyv
aaa
aaa
aaa
@@ -143704,10 +130042,10 @@ aaa
aaa
abC
aaa
-afV
-ajo
-ajo
-afV
+afH
+aiW
+aiW
+afH
abW
abW
abW
@@ -143715,18 +130053,18 @@ abW
abW
abW
abW
-aLm
-aMo
-aNp
-aOq
-aLm
-aQP
-aRD
-aSN
-aLm
-aUy
-aNp
-aLm
+aKq
+aLo
+aMl
+aNj
+aKq
+aPA
+aQk
+aRu
+aKq
+aTc
+aMl
+aKq
abE
abE
abE
@@ -143748,77 +130086,77 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZH
-aZH
-aZH
-bcu
-bdc
-bdF
-beq
-beq
-bge
-bgT
-bhX
-biT
-bjK
-bkz
-bcY
-bcp
-bns
-boB
-bal
-baP
-cSv
-dvu
-bvU
-bxw
-cbr
-bAe
-cTr
+aXE
+aXE
+aXS
+aYg
+aYg
+aYg
+baT
+bbA
+bcc
+bcL
+bcL
+bev
+bfk
+bgo
+bhj
+bhY
+biM
+bbw
+baO
+blz
+bmH
+aYK
+aZo
+cJA
+cXC
+btL
+bvj
+bYq
+bxL
+cJU
+bzK
+bBc
bCf
-bDC
-bEG
-bFO
-bHc
-bBf
-bJZ
-bLz
-bLz
-bLz
-bPq
-bJZ
-bJZ
-cLa
-cLa
-cLa
-bAd
-cMH
-byP
-byP
-byP
-byP
-cMH
-cak
-caO
-cbr
-cbr
-cMH
-aZt
+bDi
+bEt
+byL
+bHp
+bIN
+bIN
+bIN
+bMy
+bHp
+bHp
+cGo
+cGo
+cGo
+bxK
+cHu
+bwx
+bwx
+bwx
+bwx
+cHu
+bXj
+bXN
+bYq
+bYq
+cHu
+aXS
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -143841,26 +130179,26 @@ aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
aaa
aaa
-cCy
-cDq
-cDq
-cEM
-cCy
+cyw
+czo
+czo
+cAI
+cyw
aaa
aaa
aaa
@@ -143972,18 +130310,18 @@ abW
abW
abW
abW
-aLm
-aMp
-aNq
-aOq
-aLm
-aQN
-aRD
-aSN
-aLm
-aUy
-aNq
-aLm
+aKq
+aLp
+aMm
+aNj
+aKq
+aPy
+aQk
+aRu
+aKq
+aTc
+aMm
+aKq
abE
abE
abE
@@ -144005,119 +130343,119 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZH
-aZH
-aZH
-bcu
-bdb
-bdD
-bdD
-bfg
-bgf
-bgU
-bhY
-biU
-bjL
-bkz
-bcp
-bcp
-bnt
-boC
-bfa
-baP
-cSv
-bur
-bal
-bxx
-cbr
-cbr
-cTr
+aXE
+aXE
+aXS
+aYg
+aYg
+aYg
+baT
+bbz
+bca
+bca
+bdB
+bew
+bfl
+bgp
+bhk
+bhZ
+biM
+baO
+baO
+blA
+bmI
+bdv
+aZo
+cJA
+bsl
+aYK
+bvk
+bYq
+bYq
+cJU
+bzL
+bBd
bCg
-bDD
-bEH
-bFP
-bHd
-bBf
-bJZ
-bLz
-bLz
-bNR
-bPr
-bJZ
-bJZ
-bAd
-bAd
-bAd
-bAd
-bAd
-bVA
-byQ
-byP
-dje
-cMH
-cal
-caP
-caO
-caO
-cMH
-aZt
+bDj
+bEu
+byL
+bHp
+bIN
+bIN
+bLa
+bMz
+bHp
+bHp
+bxK
+bxK
+bxK
+bxK
+bxK
+bSD
+bwy
+bwx
+cRQ
+cHu
+bXk
+bXO
+bXN
+bXN
+cHu
+aXS
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aag
aaa
aaa
-chi
-chi
-chC
+cdZ
+cdZ
+ceo
abC
abC
-ciQ
-cjr
-cjr
-chi
-chi
+cfv
+cfT
+cfT
+cdZ
+cdZ
aaa
aaa
aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
aaa
-aXR
+aWs
aaa
aaa
aaa
aaa
aaa
aaa
-cCy
-cDr
-cDq
-cEN
-cCy
+cyw
+czp
+czo
+cAJ
+cyw
aaa
aaa
aaa
@@ -144229,18 +130567,18 @@ abW
abW
abW
abW
-aLm
-aLm
-aLm
-aOr
-aLm
-aQQ
-aRD
-aSi
-aLm
-aUz
-aLm
-aLm
+aKq
+aKq
+aKq
+aNk
+aKq
+aPB
+aQk
+aQP
+aKq
+aTd
+aKq
+aKq
abE
abE
abE
@@ -144262,107 +130600,107 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZH
-aZH
-aZH
-bcu
-bdb
-bdD
-bdD
-bfh
-bgc
-bgV
-bhZ
-biV
-bjM
-bkz
-bbQ
-bbQ
-bnu
-boD
-bal
-baP
-cSv
-bus
-bal
-bxy
-byR
-cbr
-cTu
-cTq
-cTz
-bBf
-bBf
-bBf
-bBf
-bJZ
-bLz
-bLz
-bLz
-bPs
-bJZ
-bJZ
-bAd
-bAd
-bAd
-bAd
-byS
-bYa
-byQ
-byP
-bAd
-cMH
-bZS
-bZS
-cbs
-cbV
-cMH
-aZt
+aXE
+aXE
+aXS
+aYg
+aYg
+aYg
+baT
+bbz
+bca
+bca
+bdC
+bet
+bfm
+bgq
+bhl
+bia
+biM
+bap
+bap
+blB
+bmJ
+aYK
+aZo
+cJA
+bsm
+aYK
+bvl
+bwz
+bYq
+cJV
+cJT
+cJX
+byL
+byL
+byL
+byL
+bHp
+bIN
+bIN
+bIN
+bMA
+bHp
+bHp
+bxK
+bxK
+bxK
+bxK
+bwA
+bVb
+bwy
+bwx
+bxK
+cHu
+bWS
+bWS
+bYr
+bYU
+cHu
+aXS
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-arw
+aqV
abC
-arw
-aYn
-aXB
-cin
-aYn
-aYn
-cjR
-aYB
-arw
+aqV
+aWO
+aWc
+ceS
+aWO
+aWO
+cgs
+aXc
+aqV
aaa
aaa
aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -144370,11 +130708,11 @@ aaa
aaa
aaa
aaa
-cCz
-cDs
-cDq
-cEO
-cCz
+cyx
+czq
+czo
+cAK
+cyx
aaa
aaa
aaa
@@ -144431,36 +130769,36 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
abC
aaa
aaa
@@ -144475,8 +130813,8 @@ aaa
aaa
abC
aaa
-cKF
-cKF
+cGc
+cGc
aaa
aaa
aaa
@@ -144488,15 +130826,15 @@ abW
abW
abW
abW
-aLm
-aOs
-aLm
-aQN
-aRD
-aSO
-aLm
-aUA
-aLm
+aKq
+aNl
+aKq
+aPy
+aQk
+aRv
+aKq
+aTe
+aKq
aaa
aaa
aaa
@@ -144519,107 +130857,107 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZt
-aZt
-aZH
-aZH
-bcu
-bcu
-bcu
-bcu
-bcu
-bcu
-bcu
-bcu
-bcu
-bcu
-bkz
-bal
-bal
-bal
-boE
-bal
-baP
-cSv
-dvu
-bal
-bxz
-byS
-cbr
-cbr
-cTu
-cTA
-bBf
-bBN
-bBN
-bBN
-bJZ
-bJZ
-bJZ
-bJZ
-bJZ
-bJZ
-bJZ
-bAd
-bAd
-bAd
-bAd
-byS
-byQ
-byP
-bYK
-byS
-aZH
-aZH
-cMH
-bZS
-cMH
-cMH
-aZt
+aXE
+aXE
+aXS
+aXS
+aYg
+aYg
+baT
+baT
+baT
+baT
+baT
+baT
+baT
+baT
+baT
+baT
+biM
+aYK
+aYK
+aYK
+bmK
+aYK
+aZo
+cJA
+cXC
+aYK
+bvm
+bwA
+bYq
+bYq
+cJV
+cJY
+byL
+bzs
+bzs
+bzs
+bHp
+bHp
+bHp
+bHp
+bHp
+bHp
+bHp
+bxK
+bxK
+bxK
+bxK
+bwA
+bwy
+bwx
+bVL
+bwA
+aYg
+aYg
+cHu
+bWS
+cHu
+cHu
+aXS
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-che
-che
-che
+cdV
+cdV
+cdV
abC
-aYB
+aXc
abC
-chi
-che
-che
-che
-chi
+cdZ
+cdV
+cdV
+cdV
+cdZ
aaa
aaa
aaa
aaa
aaa
aaa
-arw
-cqC
-dwX
-dwX
-dyO
-cuk
+aqV
+cmQ
+cXY
+cXY
+cYf
+cqp
aaa
-aXR
+aWs
aaa
aaa
aaa
@@ -144627,11 +130965,11 @@ aaa
aaa
aaa
aaa
-cCy
-cDs
-cDq
-cEO
-cCy
+cyw
+czq
+czo
+cAK
+cyw
aaa
aaa
aaa
@@ -144708,23 +131046,23 @@ aaa
aaf
aaf
aaf
-aeh
-aeh
-aeh
-aeh
-aeh
-aeh
+adX
+adX
+adX
+adX
+adX
+adX
aaa
aaa
-ahT
-ajS
-ahT
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+ahF
+ajz
+ahF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -144732,9 +131070,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
abW
@@ -144745,15 +131083,15 @@ abW
abW
abW
abW
-aLm
-aOt
-aLm
-aQR
-aRP
-aSP
-aLm
-aUz
-aLm
+aKq
+aNm
+aKq
+aPC
+aQw
+aRw
+aKq
+aTd
+aKq
abC
abC
abC
@@ -144776,65 +131114,65 @@ abC
abC
abC
abC
-aZI
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-bal
-boF
-bal
-brr
-cSv
-dvu
-bal
-bxA
-cMH
-dge
-cbr
-bBN
-bBN
-cMH
-cMH
-cMH
-caM
-bJZ
-bJZ
-bJZ
-bJZ
-bJZ
-bJZ
-bJZ
-bAd
-bAd
-bAd
-byS
-byQ
-byO
-byP
-byS
-bBN
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aYh
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aYK
+bmL
+aYK
+bpo
+cJA
+cXC
+aYK
+bvn
+cHu
+cQj
+bYq
+bzs
+bzs
+cHu
+cHu
+cHu
+bXL
+bHp
+bHp
+bHp
+bHp
+bHp
+bHp
+bHp
+bxK
+bxK
+bxK
+bwA
+bwy
+bww
+bwx
+bwA
+bzs
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -144856,8 +131194,8 @@ aaa
aaa
aaa
abC
-aYG
-cio
+aXh
+ceT
aaa
aaa
aaa
@@ -144869,13 +131207,13 @@ aaa
aaa
aaa
aaa
-arw
-cqD
-crO
-csA
-ctD
-cqD
-aXR
+aqV
+cmR
+cnZ
+coI
+cpJ
+cmR
+aWs
aaa
aaa
aaa
@@ -144884,11 +131222,11 @@ aaa
aaa
aaa
aaa
-cCy
-cDs
-cDq
-cEO
-cCy
+cyw
+czq
+czo
+cAK
+cyw
aaa
aaa
aaa
@@ -144962,20 +131300,20 @@ aaa
aaa
aaf
aaf
-adg
-adg
-adg
-adg
-adg
+add
+add
+add
+add
+add
aaf
aaf
aaf
-adg
-adg
-adg
-adg
-ajT
-ahT
+add
+add
+add
+add
+ajA
+ahF
aaa
aaa
aaa
@@ -144989,13 +131327,13 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
abW
-akG
+akm
abW
abW
abW
@@ -145003,13 +131341,13 @@ abW
abW
abW
aaa
-aOu
-aPm
-ary
-ary
-ary
-aTC
-aUB
+aNn
+aOd
+aqW
+aqW
+aqW
+aSi
+aTf
aaa
aaa
aaa
@@ -145033,64 +131371,64 @@ aaa
aaa
aaa
aaa
-aZt
-aZt
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZf
-bal
-boG
-bal
-bap
-cSB
-but
-bal
-bxz
-byS
-bAd
-dgn
-cbr
-cbr
-dgQ
-dfU
-byP
-bDa
-byQ
-byQ
-byQ
-bNS
-byS
-bAd
-bAd
-byS
-bAd
-bAd
-cMH
-byQ
-byP
-byS
-bBN
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXS
+aXS
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXE
+aYK
+bmM
+aYK
+aYO
+cJB
+bsn
+aYK
+bvm
+bwA
+bxK
+cQo
+bYq
+bYq
+cQC
+cQe
+bwx
+bAA
+bwy
+bwy
+bwy
+bLb
+bwA
+bxK
+bxK
+bwA
+bxK
+bxK
+cHu
+bwy
+bwx
+bwA
+bzs
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -145113,26 +131451,26 @@ aaa
aaa
aaa
abC
-aYG
+aXh
abC
aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
+ccG
+ccG
+ccG
aaa
aaa
aaa
-cmZ
-cpR
-cmZ
-crP
-csB
-ctE
-cul
-cfJ
+cjv
+cmi
+cjv
+coa
+coJ
+cpK
+cqq
+ccH
aaa
aaa
aaa
@@ -145141,11 +131479,11 @@ aaa
aaa
aaa
aaa
-cCy
-cDs
-cDq
-cEO
-cCy
+cyw
+czq
+czo
+cAK
+cyw
aaa
aaa
aaa
@@ -145219,19 +131557,19 @@ aaf
aaf
aaf
aaf
-adg
-adt
-adt
-adt
-adg
-adg
-adg
-adg
-adg
-adt
-adt
-adt
-ajT
+add
+adn
+adn
+adn
+add
+add
+add
+add
+add
+adn
+adn
+adn
+ajA
aae
aaa
aaa
@@ -145246,9 +131584,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -145260,13 +131598,13 @@ abW
abW
abW
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -145291,63 +131629,63 @@ aaa
aaa
aaa
aaa
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZf
-aZf
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXE
+aXE
aaa
-boH
-bpV
-aQS
-cSC
-dvx
-bvV
-bxB
-aZt
-bAd
-byS
-cbr
-dgD
-bvU
-bDd
-byP
-byP
-byP
-byP
-byO
-byQ
-dhI
-byS
-bAd
-diy
-bUa
-byS
-byQ
-byQ
-byP
-cMH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+bmN
+bnW
+aPD
+cJC
+cXD
+btM
+bvo
+aXS
+bxK
+bwA
+bYq
+cQv
+btL
+bAD
+bwx
+bwx
+bwx
+bwx
+bww
+bwy
+cRf
+bwA
+bxK
+cRC
+bRd
+bwA
+bwy
+bwy
+bwx
+cHu
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -145369,28 +131707,28 @@ aaa
aaa
aaa
aaa
-chp
-chQ
-chp
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfI
-cfI
-cmZ
-cpS
-cmZ
-crP
-csC
-ctF
-cqD
-cfJ
-cfJ
+cef
+cey
+cef
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ccH
+ccH
+ccG
+ccG
+cjv
+cmj
+cjv
+coa
+coK
+cpL
+cmR
+ccH
+ccH
aaa
aaa
aaa
@@ -145398,11 +131736,11 @@ aaa
aaa
aaa
aaa
-cCA
-cDs
-cDq
-cEO
-cCA
+cyy
+czq
+czo
+cAK
+cyy
aaa
aaa
aaa
@@ -145476,19 +131814,19 @@ aae
aae
aae
aae
-adg
-adt
-adN
-aei
-aeH
-adt
-afz
-adt
-agV
-ahJ
-aip
-adt
-ajU
+add
+adn
+adD
+adY
+aew
+adn
+afl
+adn
+agH
+ahv
+ahY
+adn
+ajB
aae
aae
aaa
@@ -145503,9 +131841,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -145517,13 +131855,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -145548,63 +131886,63 @@ aaa
aaa
aaa
aaa
-aZH
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZt
-aZt
-aZf
-aZf
+aYg
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aXS
+aXS
+aXE
+aXE
aaa
-arw
-bpW
-aQS
-cSC
-dvx
-bvW
-arw
-aZt
-aZt
-bAd
-byS
-dgE
-byS
-byQ
-bBg
-bDb
-byQ
-byQ
-byP
-byP
-byQ
-dgC
-byQ
-byQ
-byQ
-bDa
-byQ
-byP
-dja
-cMH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aqV
+bnX
+aPD
+cJC
+cXD
+btN
+aqV
+aXS
+aXS
+bxK
+bwA
+cQw
+bwA
+bwy
+byM
+bAB
+bwy
+bwy
+bwx
+bwx
+bwy
+cQu
+bwy
+bwy
+bwy
+bAA
+bwy
+bwx
+cRO
+cHu
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -145626,28 +131964,28 @@ aaa
aaa
aaa
aaa
-chp
-chR
-chp
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cmZ
-cnH
-cnH
-cmZ
-cpT
-cmZ
-crQ
-csC
-ctF
-cqD
-cfJ
-cfJ
+cef
+cez
+cef
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+cjv
+ckd
+ckd
+cjv
+cmk
+cjv
+cob
+coK
+cpL
+cmR
+ccH
+ccH
aaa
aaa
aaa
@@ -145655,11 +131993,11 @@ aaa
aaa
aaa
aaa
-cCy
-cDt
-cDq
-cEP
-cCy
+cyw
+czr
+czo
+cAL
+cyw
aaa
aaa
aaa
@@ -145733,19 +132071,19 @@ aae
aae
aae
aae
-adg
-adt
-adO
-aej
-aeI
-afd
-afA
-afd
-agW
-ahK
-aiq
-adt
-ajT
+add
+adn
+adE
+adZ
+aex
+aeP
+afm
+aeP
+agI
+ahw
+ahZ
+adn
+ajA
aae
aaf
aaa
@@ -145760,9 +132098,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -145774,13 +132112,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -145809,59 +132147,59 @@ aaa
aaa
aaa
aaa
-aZt
-aZt
-aZt
-aZf
-aZf
-aZf
-aZf
-aZH
-aZH
-aZH
-aZH
-aZf
-aZf
-aZI
+aXS
+aXS
+aXS
+aXE
+aXE
+aXE
+aXE
+aYg
+aYg
+aYg
+aYg
+aXE
+aXE
+aYh
aaa
-arw
-bpW
-aQS
-cSC
-dvx
-bvW
-arw
-aZt
-aZt
-aZt
-bBN
-bBN
-byS
-cMH
-byS
-bBN
-cMH
-cMH
-byS
-byP
-byP
-byP
-byO
-byP
-byP
-byP
-byP
-byP
-cMH
-byS
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aqV
+bnX
+aPD
+cJC
+cXD
+btN
+aqV
+aXS
+aXS
+aXS
+bzs
+bzs
+bwA
+cHu
+bwA
+bzs
+cHu
+cHu
+bwA
+bwx
+bwx
+bwx
+bww
+bwx
+bwx
+bwx
+bwx
+bwx
+cHu
+bwA
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -145881,30 +132219,30 @@ aaa
aaa
aaa
aaa
-cfI
-chp
-chp
-chS
-chp
-chp
-cfI
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cmZ
-cnI
-coy
-cpj
-cpU
-cqE
-crR
-csD
-ctG
-cqD
-cfJ
-cfJ
+ccG
+cef
+cef
+ceA
+cef
+cef
+ccG
+ccH
+ccH
+cde
+cde
+cde
+cjv
+cke
+ckU
+clC
+cml
+cmS
+coc
+coL
+cpM
+cmR
+ccH
+ccH
aaa
aaa
aaa
@@ -145912,11 +132250,11 @@ aaa
aaa
aaa
aaa
-cCy
-cDs
-cDq
-cEO
-cCy
+cyw
+czq
+czo
+cAK
+cyw
aaa
aaa
aaa
@@ -145990,19 +132328,19 @@ aae
aae
aae
aae
-adg
-adu
-adt
-adt
-adt
-adt
-afB
-afX
-adt
-adt
-adt
-aje
-ajT
+add
+ado
+adn
+adn
+adn
+adn
+afn
+afJ
+adn
+adn
+adn
+aiM
+ajA
aaf
aaf
aaf
@@ -146017,9 +132355,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -146031,13 +132369,13 @@ aaa
aaa
aaa
aaa
-arw
-dAj
-dAA
-ary
-dAU
-dBa
-arw
+aqV
+cYs
+cYx
+aqW
+cYF
+cYH
+aqV
aaa
aaa
aaa
@@ -146066,57 +132404,57 @@ aaa
aaa
aaa
aaa
-aZf
-aZf
-aZf
-aZf
-aZf
-aZt
-aZt
-aZt
-aZt
-aZH
-aZH
-aZf
+aXE
+aXE
+aXE
+aXE
+aXE
+aXS
+aXS
+aXS
+aXS
+aYg
+aYg
+aXE
aaa
abC
aaa
-arw
-dus
-duB
-cSC
-dvA
-dwa
-arw
-aZt
-aZt
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-byS
-byS
-bBN
-bBN
-cMH
-bBN
-bBN
-byS
-cMH
-cMH
-byS
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZf
+aqV
+cXr
+cXu
+cJC
+cXE
+cXJ
+aqV
+aXS
+aXS
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+bwA
+bwA
+bzs
+bzs
+cHu
+bzs
+bzs
+bwA
+cHu
+cHu
+bwA
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXE
aaa
aaa
aaa
@@ -146137,43 +132475,43 @@ aaa
aaa
aaa
aaa
-cfJ
-cfI
-chq
-chD
-chT
-cip
-chr
-cjV
-cjU
-chc
-cgu
-cgu
-cgu
-cmZ
-cnJ
-coz
-cpk
-cpV
-cqF
-crS
-csC
-ctH
-cqD
-cfJ
-cfJ
-cfJ
+ccH
+ccG
+ceg
+cep
+ceB
+ceU
+ceh
+cgw
+cgv
+cdU
+cdq
+cdq
+cdq
+cjv
+ckf
+ckV
+clD
+cmm
+cmT
+cod
+coK
+cpN
+cmR
+ccH
+ccH
+ccH
aaa
aaa
aaa
aaa
aaa
aaa
-cCy
-cCz
-cEe
-cCz
-cCy
+cyw
+cyx
+cAb
+cyx
+cyw
aaa
aaa
aaa
@@ -146247,19 +132585,19 @@ aae
aae
aae
aae
-adg
-adv
-adP
-aek
-aeJ
-afe
-afC
-afd
-afd
-ahL
-air
-ajf
-ajT
+add
+adp
+adF
+aea
+aey
+aeQ
+afo
+aeP
+aeP
+ahx
+aia
+aiN
+ajA
aaf
aaf
aaf
@@ -146274,9 +132612,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -146288,13 +132626,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -146323,56 +132661,56 @@ aaa
aaa
aaa
aaa
-aZI
-aZf
-aZf
-aZt
-aZt
-aZt
-aZt
-aZI
-aZt
-aZt
+aYh
+aXE
+aXE
+aXS
+aXS
+aXS
+aXS
+aYh
+aXS
+aXS
aaa
aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-dvx
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+cXD
+btN
+aqV
aaa
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -146393,43 +132731,43 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-chr
-chE
-chU
-ciq
-ciR
-cjs
-cjS
-cll
-cjV
-cjU
-chc
-cna
-cnK
-coA
-cpl
-cpW
-cqG
-crT
-csC
-ctF
-cqD
-cfJ
-cfJ
-cfJ
-cfJ
-cqD
-cza
-cqD
+ccG
+ccG
+ccG
+ceh
+ceq
+ceC
+ceV
+cfw
+cfU
+cgt
+chK
+cgw
+cgv
+cdU
+cjw
+ckg
+ckW
+clE
+cmn
+cmU
+coe
+coK
+cpL
+cmR
+ccH
+ccH
+ccH
+ccH
+cmR
+cva
+cmR
aaa
aaa
aaa
-cqD
-cza
-cqD
+cmR
+cva
+cmR
aaa
aaa
aaa
@@ -146504,19 +132842,19 @@ aaf
aaf
aaf
aaf
-adg
-adg
-adQ
-ael
-aeK
-adS
-afD
-adS
-adt
-ahM
-ais
-adg
-ajT
+add
+add
+adG
+aeb
+aez
+adI
+afp
+adI
+adn
+ahy
+aib
+add
+ajA
aae
aaf
aae
@@ -146531,9 +132869,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -146544,14 +132882,14 @@ aaa
aaa
aaa
aaa
-cKF
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+cGc
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -146595,13 +132933,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-dvx
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+cXD
+btN
+aqV
aaa
aaa
aaa
@@ -146612,24 +132950,24 @@ aaa
aaa
aaa
aaa
-aZt
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZH
-aZH
-aZH
-aZH
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXS
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aYg
+aYg
+aYg
+aYg
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -146647,52 +132985,52 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-chq
-chF
-chV
-cir
-chq
-dkH
-dkJ
-dkK
-dkS
-cHM
-cjV
-cmZ
-cmZ
-cmZ
-cmZ
-cmZ
-cmZ
-crU
-csE
-ctI
-cqD
-cfJ
-cfJ
-cfJ
-cfJ
-cxr
-czb
-cxr
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ceg
+cer
+ceD
+ceW
+ceg
+cSi
+cSk
+cSl
+cSs
+cDD
+cgw
+cjv
+cjv
+cjv
+cjv
+cjv
+cjv
+cof
+coM
+cpO
+cmR
+ccH
+ccH
+ccH
+ccH
+ctt
+cvb
+ctt
aaa
aaa
aaa
-cxr
-czb
-cxr
+ctt
+cvb
+ctt
aaa
aaa
-cqD
-cqD
-cqD
-cqD
+cmR
+cmR
+cmR
+cmR
aaa
aaa
aaa
@@ -146762,18 +133100,18 @@ aal
aaf
aaf
aaf
-adg
-adR
-aem
-aeL
-adS
-afE
-adS
-adt
-adt
-adt
-adg
-ajV
+add
+adH
+aec
+aeA
+adI
+afq
+adI
+adn
+adn
+adn
+add
+ajC
aae
aae
aae
@@ -146788,9 +133126,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -146802,13 +133140,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -146852,13 +133190,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-dvx
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+cXD
+btN
+aqV
aaa
aaa
aaa
@@ -146869,24 +133207,24 @@ aaa
aaa
aaa
aaa
-aZt
-aZH
-aZH
-aZH
-aZH
-aZt
+aXS
+aYg
+aYg
+aYg
+aYg
+aXS
aaa
-aZI
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aYh
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -146904,52 +133242,52 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-chq
-chq
-chr
-chr
-chr
-cjU
-cgu
-dkL
-dkH
-dkJ
-cms
-cnb
-cmA
-coB
-cgL
-cpX
-cqH
-crV
-csC
-ctF
-cWG
-cqD
-cqD
-cqD
-cqD
-cqD
-czc
-cqD
-cqD
-cqD
-cqD
-cqD
-czc
-cqD
-cqD
-cqD
-cul
-cFR
-cGj
-cqD
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ceg
+ceg
+ceh
+ceh
+ceh
+cgv
+cdq
+cSm
+cSi
+cSk
+ciO
+cjx
+ciW
+ckX
+cdG
+cmo
+cmV
+cog
+coK
+cpL
+cLc
+cmR
+cmR
+cmR
+cmR
+cmR
+cvc
+cmR
+cmR
+cmR
+cmR
+cmR
+cvc
+cmR
+cmR
+cmR
+cqq
+cBK
+cCc
+cmR
aaa
aaa
aaa
@@ -147019,18 +133357,18 @@ aal
aal
aaf
aaf
-adw
-adS
-adS
-adS
-adS
-afF
-adS
-adS
-adS
-adS
-adw
-ajV
+adq
+adI
+adI
+adI
+adI
+afr
+adI
+adI
+adI
+adI
+adq
+ajC
aae
aae
aae
@@ -147045,9 +133383,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -147059,13 +133397,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -147109,13 +133447,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-dvx
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+cXD
+btN
+aqV
aaa
aaa
aaa
@@ -147134,14 +133472,14 @@ aaa
aaa
aaa
abC
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
-aZt
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
+aXS
aaa
aaa
aaa
@@ -147161,52 +133499,52 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfJ
-cgi
-cgi
-cgi
-cgi
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ccH
+cde
+cde
+cde
+cde
+cdq
+cdq
+cgw
+cgv
+cSv
+ciP
+cSk
cgu
-cgu
-cjV
-cjU
-dkY
-cmt
-dkJ
-cjT
-coC
-cBH
-cpY
-cqI
-crW
-csF
-cVo
-cum
-cum
-cum
-cxp
-cxU
-cxU
-cxU
-cxU
-cxU
-cBI
-cxU
-cDh
-cxU
-cxU
-cxU
-cxU
-cBI
-cFS
-cGk
-cxr
+ckY
+cxH
+cmp
+cmW
+coh
+coN
+cKw
+cqr
+cqr
+cqr
+ctr
+ctV
+ctV
+ctV
+ctV
+ctV
+cxI
+ctV
+czf
+ctV
+ctV
+ctV
+ctV
+cxI
+cBL
+cCd
+ctt
aaa
aaa
aaa
@@ -147276,18 +133614,18 @@ aal
aal
aal
aaf
-adw
-adT
-aen
-aeM
-adS
-afG
-afY
-agX
-ahN
-ait
-adw
-ajV
+adq
+adJ
+aed
+aeB
+adI
+afs
+afK
+agJ
+ahz
+aic
+adq
+ajC
aae
aae
aaf
@@ -147302,9 +133640,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -147316,13 +133654,13 @@ aaa
aaa
aaa
aaa
-arw
-dAj
-ary
-ary
-dAV
-dBa
-arw
+aqV
+cYs
+aqW
+aqW
+cYG
+cYH
+aqV
aaa
aaa
aaa
@@ -147366,13 +133704,13 @@ aaa
aaa
abC
aaa
-arw
-dus
-duC
-cSC
-dvB
-dwa
-arw
+aqV
+cXr
+cXv
+cJC
+cXF
+cXJ
+aqV
aaa
aaa
aaa
@@ -147416,54 +133754,54 @@ aaa
aaa
aaa
aaa
-cfJ
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgu
-cgu
-cgu
-cjU
-cjV
-cjV
-dlf
-coD
-cgL
-cpZ
-cqD
-crX
-csG
-ctK
-cun
-cun
-cwu
-cxq
-cxV
-cxV
-cxV
-cxV
-cAM
-cxV
-cxV
-cDi
-cDZ
-cDZ
-cDZ
-cDZ
-cLJ
-cDZ
-cGl
-cxr
+ccH
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cdq
+cdq
+cdq
+cgv
+cgw
+cgw
+cSz
+ckZ
+cdG
+cmq
+cmR
+coi
+coO
+cpQ
+cqs
+cqs
+csx
+cts
+ctW
+ctW
+ctW
+ctW
+cwM
+ctW
+ctW
+czg
+czW
+czW
+czW
+czW
+cGO
+czW
+cCe
+ctt
aaa
aaa
aaa
@@ -147529,22 +133867,22 @@ aax
aax
aax
aaw
-acL
-cJi
+acK
+cEZ
aal
aal
aal
-adU
-aeo
-aeM
-aff
-aeM
-afZ
-agY
-aeM
-aiu
-adw
-ajV
+adK
+aee
+aeB
+aeR
+aeB
+afL
+agK
+aeB
+aid
+adq
+ajC
aae
aae
aaf
@@ -147559,9 +133897,9 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -147573,13 +133911,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -147623,13 +133961,13 @@ aag
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-aQS
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+aPD
+btN
+aqV
aaa
aaa
aaa
@@ -147673,54 +134011,54 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chc
-cnM
-cgL
-dls
-cjU
-cqD
-crY
-cLu
-cVp
-csC
-csC
-cwv
-cul
-cxr
-cxr
-cxr
-cxr
-cqD
-cza
-cza
-cqD
-cxr
-cxr
-cxr
-cxr
-cqD
-cza
-cza
-cqD
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+cdU
+cki
+cdG
+cSH
+cgv
+cmR
+coj
+cGD
+cKx
+coK
+coK
+csy
+cqq
+ctt
+ctt
+ctt
+ctt
+cmR
+cva
+cva
+cmR
+ctt
+ctt
+ctt
+ctt
+cmR
+cva
+cva
+cmR
aaa
aaa
aaa
@@ -147780,7 +134118,7 @@ aal
aaw
aaE
aaS
-cJk
+cFa
aaX
abN
abZ
@@ -147796,17 +134134,17 @@ aal
aal
aal
aal
-aga
-agZ
-ahO
-aiv
-adw
-ajW
-akI
-akI
-akI
-akI
-akI
+afM
+agL
+ahA
+aie
+adq
+ajD
+ako
+ako
+ako
+ako
+ako
aaf
aaf
aaa
@@ -147817,8 +134155,8 @@ aaa
abC
aaa
aaa
-cKF
-cKF
+cGc
+cGc
aaa
aaa
aaa
@@ -147830,13 +134168,13 @@ aaa
aaa
aaa
aaa
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -147880,13 +134218,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-aQS
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+aPD
+btN
+aqV
aaa
aaa
aaa
@@ -147929,55 +134267,55 @@ aaa
aaa
aaa
aaa
-cfJ
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cfJ
-cfJ
-chc
-chc
-cln
-chb
-cjV
-chc
-cqD
-crZ
-csH
-cVq
-csH
-csC
-cwv
-cqD
+ccH
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+ccH
+ccH
+ccH
+ccH
+cdU
+cdU
+chM
+cdT
+cgw
+cdU
+cmR
+cok
+coP
+cKy
+coP
+coK
+csy
+cmR
aaa
aaa
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
@@ -148033,7 +134371,7 @@ aae
aae
aae
aal
-cJi
+cEZ
aaw
aaF
aaT
@@ -148044,56 +134382,56 @@ aca
aax
acv
aax
-dnz
+cUb
aal
-adh
-adx
-adh
-adh
-adh
-adh
+ade
+adr
+ade
+ade
+ade
+ade
aal
-agb
-aha
-ahP
-aiw
-adw
-ajX
-akJ
-akJ
-akJ
-amY
-akI
-akI
-akI
-cKF
-cKF
-cKF
-cKF
-cKF
+afN
+agM
+ahB
+aif
+adq
+ajE
+akp
+akp
+akp
+amD
+ako
+ako
+ako
+cGc
+cGc
+cGc
+cGc
+cGc
abC
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
abC
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -148105,15 +134443,15 @@ aaa
aaa
aaa
aaa
-aXn
-aXn
-aXn
-aXn
+aVO
+aVO
+aVO
+aVO
aaa
-aXn
-aXn
-aXn
-aXn
+aVO
+aVO
+aVO
+aVO
aaa
aaa
aaa
@@ -148137,13 +134475,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-aQS
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+aPD
+btN
+aqV
aaa
aaa
aaa
@@ -148186,55 +134524,55 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cfJ
-cjU
-cjV
-clh
-clQ
-cmu
-ckG
-cln
-dlc
-chc
-chc
-cqD
-csa
-csI
-cVr
-cuo
-csC
-cww
-cqD
+ccG
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+ccH
+cgv
+cgw
+chG
+cio
+ciQ
+chg
+chM
+cSx
+cdU
+cdU
+cmR
+col
+coQ
+cKz
+cqt
+coK
+csz
+cmR
aaa
aaa
aaa
aaa
-cqD
-czc
-czc
-cqD
+cmR
+cvc
+cvc
+cmR
aaa
aaa
aaa
aaa
-cqD
-czc
-czc
-cqD
+cmR
+cvc
+cvc
+cmR
aaa
aaa
aaa
@@ -148303,54 +134641,54 @@ acv
aax
aau
aal
-cJi
+cEZ
aal
aal
aal
aal
-cJi
+cEZ
aal
-agc
-ahb
-aeM
-aix
-adw
-ajY
-akK
-als
-als
-amZ
-anJ
-aoO
-apK
-baR
-aqI
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-aPn
-ary
-ary
-ary
-aTD
-arw
+afO
+agN
+aeB
+aig
+adq
+ajF
+akq
+akX
+akX
+amE
+ano
+aop
+apk
+aZq
+aqi
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aOe
+aqW
+aqW
+aqW
+aSj
+aqV
abC
abC
abC
@@ -148359,8 +134697,8 @@ abC
abC
abC
abC
-aXn
-aXn
+aVO
+aVO
aaa
aaa
abC
@@ -148372,8 +134710,8 @@ aaa
abC
aaa
aaa
-aXn
-aXn
+aVO
+aVO
abC
abC
abC
@@ -148394,13 +134732,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-aQS
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+aPD
+btN
+aqV
aaa
aaa
aaa
@@ -148441,59 +134779,59 @@ aac
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfI
-cfI
-cfI
-cfJ
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cfJ
-cjU
-ckA
-cli
-clR
-cmv
-ckH
-clq
-chc
-cpm
-cpm
-cpm
-cpm
-cpm
-cVs
-cup
-csB
-cwx
-cqD
+ccG
+ccG
+ccG
+ccG
+ccG
+ccG
+ccH
+cde
+cde
+cde
+ccH
+ccH
+ccH
+cde
+cde
+cde
+ccH
+cgv
+cha
+chH
+cip
+ciR
+chh
+chP
+cdU
+clF
+clF
+clF
+clF
+clF
+cKA
+cqu
+coJ
+csA
+cmR
aaa
aaa
aaa
aaa
-cyL
-cyL
-cCu
-cyL
-cyM
-cyM
-cyM
-cyM
-cyL
-cCu
-cyL
-cyL
-cyL
-cyL
+cuL
+cuL
+cys
+cuL
+cuM
+cuM
+cuM
+cuM
+cuL
+cys
+cuL
+cuL
+cuL
+cuL
aaa
aaa
aaa
@@ -148558,56 +134896,56 @@ aax
aaX
acw
aax
-acP
+acO
aal
aaw
-ady
-adV
+ads
+adL
aaw
-ady
+ads
aaw
aal
-agd
-ahc
-adw
-adw
-adw
-agk
-akL
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-dzo
-dzq
-dzq
-dzq
-dzw
-dzq
-dzq
-dzq
-dzw
-dzq
-dzq
-dzq
-dzw
-dzq
-dzq
-dzq
-dzw
-dzq
-dzq
-dzq
-dzq
-dAl
-dAB
-ary
-dAU
-dBa
-arw
+afP
+agO
+adq
+adq
+adq
+afW
+akr
+ako
+ako
+ako
+ako
+ako
+ako
+ako
+cYk
+cYm
+cYm
+cYm
+cYn
+cYm
+cYm
+cYm
+cYn
+cYm
+cYm
+cYm
+cYn
+cYm
+cYm
+cYm
+cYn
+cYm
+cYm
+cYm
+cYm
+cYt
+cYy
+aqW
+cYF
+cYH
+aqV
aaa
aaa
aaa
@@ -148615,23 +134953,23 @@ aaa
aaa
aaa
aaa
-aXn
-aXn
+aVO
+aVO
abC
aaa
aaa
abC
aaa
aaa
-aYL
+aXk
aaa
aaa
abC
aaa
aaa
abC
-aXn
-aXn
+aVO
+aVO
aaa
aaa
aaa
@@ -148651,13 +134989,13 @@ aaa
aaa
abC
aaa
-arw
-dus
-duB
-cSC
-dvC
-dwa
-arw
+aqV
+cXr
+cXu
+cJC
+cXG
+cXJ
+aqV
aaa
aaa
aaa
@@ -148698,59 +135036,59 @@ aad
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cjV
-dkM
-clj
-clS
-cmw
-cgL
-cln
-cjU
-cpm
-cqa
-cqJ
-csb
-csJ
-ctL
-cuq
-csC
-cwv
-cxr
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+cgw
+cSn
+chI
+ciq
+ciS
+cdG
+chM
+cgv
+clF
+cmr
+cmX
+com
+coR
+cpR
+cqv
+coK
+csy
+ctt
aaa
-cyL
-cyL
-cyL
-cyL
-cBJ
-czW
-cDj
-cDl
-cDl
-cDl
-cDl
-cDj
-czW
-cGm
-cLG
-cGO
-cHd
+cuL
+cuL
+cuL
+cuL
+cxJ
+cvW
+czh
+czj
+czj
+czj
+czj
+czh
+cvW
+cCf
+cGM
+cCG
+cCU
aaa
aaa
aaa
@@ -148816,79 +135154,79 @@ aaS
acx
abZ
abZ
-acR
-adi
-adi
-adi
-adi
-aeN
-adi
-acR
-age
-ahd
-ahQ
-aiy
-ajg
-ahQ
-akM
-alt
-alt
-ana
-alt
-alt
-apL
-aqJ
-ary
-ary
-ary
-ary
-dzx
-ary
-ary
-ary
-dzG
-ary
-ary
-ary
-dzx
-ary
-ary
-ary
-dzG
-ary
-ary
-ary
-ary
-dzx
-ary
-ary
-ary
-aTD
-arw
-cKF
+acQ
+adf
+adf
+adf
+adf
+aeC
+adf
+acQ
+afQ
+agP
+ahC
+aih
+aiO
+ahC
+aks
+akY
+akY
+amF
+akY
+akY
+apl
+aqj
+aqW
+aqW
+aqW
+aqW
+cYo
+aqW
+aqW
+aqW
+cYq
+aqW
+aqW
+aqW
+cYo
+aqW
+aqW
+aqW
+cYq
+aqW
+aqW
+aqW
+aqW
+cYo
+aqW
+aqW
+aqW
+aSj
+aqV
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
abC
-aYo
-aYo
-aYo
-aYo
-aYo
-aYG
-aYo
-aYo
-aYo
-aYo
-aYo
+aWP
+aWP
+aWP
+aWP
+aWP
+aXh
+aWP
+aWP
+aWP
+aWP
+aWP
abC
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -148908,13 +135246,13 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
-cSC
-aQS
-bvW
-arw
+aqV
+bnX
+aPD
+cJC
+aPD
+btN
+aqV
aaa
aaa
aaa
@@ -148955,59 +135293,59 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cjV
-ckC
-clk
-clT
-cmx
-cjT
-cnN
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+cgw
chc
-cpm
-cqb
-cqK
-cqK
-cqK
-cVs
-cur
-csC
-cwv
-cxr
+chJ
+cir
+ciT
+cgu
+ckj
+cdU
+clF
+cms
+cmY
+cmY
+cmY
+cKA
+cqw
+coK
+csy
+ctt
aaa
-cyL
-czd
-czV
-cLF
-cBK
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-cGB
-cGO
-cHd
+cuL
+cvd
+cvV
+cGL
+cxK
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cCt
+cCG
+cCU
aaa
aaa
aaa
@@ -149071,57 +135409,57 @@ abQ
acb
aco
acy
-acK
+acJ
abm
-acS
-adj
-adz
-adj
-aep
-aeO
-adj
-acS
-agf
-ahe
-agk
-aiz
-ajh
-agk
-akN
-alu
-amc
-anb
-amc
-amc
-apM
-aqK
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-dAT
-ary
-aTD
-arw
+acR
+adg
+adt
+adg
+aef
+aeD
+adg
+acR
+afR
+agQ
+afW
+aii
+aiP
+afW
+akt
+akZ
+alH
+amG
+alH
+alH
+apm
+aqk
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+cYE
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -149129,23 +135467,23 @@ aaa
aaa
aag
aaa
-aXn
+aVO
aaa
aaa
-aYp
-aYu
-aYu
-aYu
-aYu
-aYM
-aYQ
-aYQ
-aYQ
-aYQ
-aYZ
+aWQ
+aWV
+aWV
+aWV
+aWV
+aXl
+aXp
+aXp
+aXp
+aXp
+aXy
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -149165,106 +135503,106 @@ aaa
aaa
abC
aaa
-arw
-bpW
-aQS
+aqV
+bnX
+aPD
+cJC
+aPD
+btN
+aqV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ccG
+ccG
+ccG
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+cgw
+chd
+chK
+cis
+ciU
+cjy
+cSi
cSC
-aQS
-bvW
-arw
+clF
+cmt
+cmZ
+cmZ
+coS
+cpS
+cqx
+crD
+csA
+ctt
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-abC
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cjV
-ckD
-cll
-clU
-cmy
-cnc
-dkH
-dlm
-cpm
-cqc
-cqL
-cqL
-csK
-ctM
-cus
-cvA
-cwx
-cxr
-aaa
-cyM
-cze
-czW
-cAN
-czW
-czW
-cDk
-cDk
-cDk
-cDk
-cDk
-cDk
-czW
-czW
-cyL
-cGO
-cHd
+cuM
+cve
+cvW
+cwN
+cvW
+cvW
+czi
+czi
+czi
+czi
+czi
+czi
+cvW
+cvW
+cuL
+cCG
+cCU
aaa
aaa
aaa
@@ -149330,55 +135668,55 @@ aaS
acz
acc
acc
-acT
-adk
-adA
-adk
-adk
-adk
-adk
-acT
-agg
-ahf
-ahR
-aiA
-aji
-ahR
-akO
-alv
-amd
-anc
-anK
-amd
-amd
-aqL
-ary
-ary
-ary
-ary
-arB
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-dzQ
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-ary
-aTD
-arw
+acS
+adh
+adu
+adh
+adh
+adh
+adh
+acS
+afS
+agR
+ahD
+aij
+aiQ
+ahD
+aku
+ala
+alI
+amH
+anp
+alI
+alI
+aql
+aqW
+aqW
+aqW
+aqW
+aqX
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+cYr
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -149386,23 +135724,23 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYq
-aYq
-aYq
-aYq
-aYq
-aYG
-aYq
-aYq
-aYq
-aYq
-aYq
+aWR
+aWR
+aWR
+aWR
+aWR
+aXh
+aWR
+aWR
+aWR
+aWR
+aWR
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -149422,13 +135760,13 @@ aaa
aaa
abC
aaa
-boI
-bpX
-aQS
-cSC
-aQS
-bvX
-bxC
+bmO
+bnY
+aPD
+cJC
+aPD
+btO
+bvp
aaa
aaa
aaa
@@ -149469,59 +135807,59 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cjU
-ckE
-cIC
-cll
-cjU
-cnd
-cnO
-dln
-cpm
-cqd
-cqM
-csc
-cqM
-ctN
-cut
-csC
-cwv
-cxr
+ccG
+ccG
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+cgv
+che
+cEt
+chK
+cgv
+cjz
+ckk
+cSD
+clF
+cmu
+cna
+con
+cna
+cpT
+cqy
+coK
+csy
+ctt
aaa
-cyM
-czf
-czX
-cyL
-czW
-czW
-cLG
-cyM
-cyM
-cyM
-cyM
-cLF
-czW
-czW
-cyL
-cyL
-cHe
+cuM
+cvf
+cvX
+cuL
+cvW
+cvW
+cGM
+cuM
+cuM
+cuM
+cuM
+cGL
+cvW
+cvW
+cuL
+cuL
+cCV
aaa
aaa
aaa
@@ -149586,56 +135924,56 @@ aax
aaX
acA
aax
-acP
+acO
aal
-adl
-adB
+adi
+adv
aaw
aaw
-adB
-adl
+adv
+adi
aal
-agh
-ahg
-agk
-agk
-agk
-agk
-akP
-akI
-akI
-akI
-akI
-akI
-akI
-akI
-dzp
-dzp
-dzp
-dzp
-dzy
-dzp
-dzp
-dzp
-dzy
-dzp
-dzp
-dzp
-dzy
-dzp
-dzp
-dzp
-dzy
-dzp
-dzp
-dzp
-dzp
-aPq
-dAC
-ary
-dAU
-dBa
-arw
+afT
+agS
+afW
+afW
+afW
+afW
+akv
+ako
+ako
+ako
+ako
+ako
+ako
+ako
+cYl
+cYl
+cYl
+cYl
+cYp
+cYl
+cYl
+cYl
+cYp
+cYl
+cYl
+cYl
+cYp
+cYl
+cYl
+cYl
+cYp
+cYl
+cYl
+cYl
+cYl
+aOf
+cYz
+aqW
+cYF
+cYH
+aqV
aaa
aaa
aaa
@@ -149643,7 +135981,7 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
abC
abC
abC
@@ -149651,7 +135989,7 @@ abC
abC
abC
abC
-aYG
+aXh
abC
abC
abC
@@ -149659,7 +135997,7 @@ abC
abC
abC
abC
-aXn
+aVO
aaa
aaa
aaa
@@ -149679,25 +136017,25 @@ aaa
aaa
abC
aaa
-boJ
-baS
-baT
-cST
-buv
-baS
-bxD
+bmP
+aZr
+aZs
+cJD
+bso
+aZr
+bvq
aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-baW
-baW
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZv
+aZv
aaa
aaa
aaa
@@ -149727,58 +136065,58 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cjU
-cjU
-cjV
-cjU
-cjV
-chb
-cnP
-cln
-cpm
-cqe
-cqe
-cqe
-cqe
-cVs
-cuq
-csC
-cwv
-cxr
+ccG
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cgv
+cgv
+cgw
+cgv
+cgw
+cdT
+ckl
+chM
+clF
+cmv
+cmv
+cmv
+cmv
+cKA
+cqv
+coK
+csy
+ctt
aaa
-cyM
-cze
-czW
-cAN
-czW
-czW
-cDl
-cDl
-cDl
-cDl
-cDl
-cDl
-czW
-czW
-cyL
-cGO
-cHd
+cuM
+cve
+cvW
+cwN
+cvW
+cvW
+czj
+czj
+czj
+czj
+czj
+czj
+cvW
+cvW
+cuL
+cCG
+cCU
aaa
aaa
aaa
@@ -149852,47 +136190,47 @@ aal
aal
aal
aal
-agi
-ahh
-ahS
-aiB
-agk
-ajZ
-akQ
-alw
-ame
-ame
-anL
-aoP
-apN
-dzn
-aqM
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+afU
+agT
+ahE
+aik
+afW
+ajG
+akw
+alb
+alJ
+alJ
+anq
+aoq
+apn
+cYj
+aqm
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -149903,20 +136241,20 @@ aaa
aaa
aaa
aaa
-aYo
-aYo
-aYo
-aYo
-aYo
-aYG
-aYo
-aYo
-aYo
-aYo
-aYo
+aWP
+aWP
+aWP
+aWP
+aWP
+aXh
+aWP
+aWP
+aWP
+aWP
+aWP
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -149931,38 +136269,38 @@ aaa
abC
aaa
aaa
-bbo
-bbo
+aZN
+aZN
aaa
abC
aaa
-boJ
-baS
-bbS
-bCj
-buw
-baS
-bxE
-baS
-bbo
+bmP
+aZr
+bar
+bzO
+bsp
+aZr
+bvr
+aZr
+aZN
aaa
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-baW
-baW
-baW
-baW
-bbo
-bbo
-bbp
-bbo
-bbp
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZv
+aZv
+aZv
+aZv
+aZN
+aZN
+aZO
+aZN
+aZO
abC
abC
abC
@@ -149984,58 +136322,58 @@ abC
abC
abC
abC
-cfK
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cfJ
-cfJ
-cjV
-ckF
-cnP
-coE
-cpm
-cUj
-cUt
-cUt
-cUt
-cVv
-cuq
-csC
-cwv
-cxr
+ccI
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+ccH
+ccH
+cgw
+chf
+ckl
+cla
+clF
+cKm
+cKs
+cKs
+cKs
+cKB
+cqv
+coK
+csy
+ctt
aaa
-cyL
-czd
-czY
-cLG
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-czW
-cGB
-cGO
-cHd
+cuL
+cvd
+cvY
+cGM
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cvW
+cCt
+cCG
+cCU
aaa
aaa
aaa
@@ -150089,7 +136427,7 @@ aae
aae
aae
aal
-cJi
+cEZ
aaw
aaF
aaT
@@ -150102,26 +136440,26 @@ acB
aax
aaw
aal
-adh
-adh
-adh
-aeq
-adh
-adh
+ade
+ade
+ade
+aeg
+ade
+ade
aal
-agj
-ahi
-cYe
-aiB
-agk
-ajX
-akJ
-akJ
-akJ
-akJ
-akI
-akI
-akI
+afV
+agU
+cLr
+aik
+afW
+ajE
+akp
+akp
+akp
+akp
+ako
+ako
+ako
abC
aaa
aaa
@@ -150143,13 +136481,13 @@ abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -150157,20 +136495,20 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYp
-aYu
-aYu
-aYu
-aYu
-aYM
-aYQ
-aYQ
-aYQ
-aYQ
-aYZ
+aWQ
+aWV
+aWV
+aWV
+aWV
+aXl
+aXp
+aXp
+aXp
+aXp
+aXy
aaa
aaa
aaa
@@ -150183,43 +136521,43 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbp
-bbo
-bbo
-bbo
-bbo
-bbo
+aZN
+aZN
+aZO
+aZN
+aZN
+aZN
+aZN
+aZN
abC
aaa
-boJ
-baS
-bbS
-bCj
-bux
-baS
-bxF
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbq
-bbq
-bbq
-bbo
-bbo
-baW
+bmP
+aZr
+bar
+bzO
+bsq
+aZr
+bvs
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZP
+aZP
+aZP
+aZN
+aZN
+aZv
aaa
aaa
aaa
@@ -150241,58 +136579,58 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cfJ
-cfJ
-chc
-ckF
-cnP
-cUf
-cqf
-cUk
-cqN
-csd
-csL
-cqf
-cuu
-cvB
-cwv
-cxr
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+ccH
+ccH
+cdU
+chf
+ckl
+cKk
+cmw
+cKn
+cnb
+coo
+coT
+cmw
+cqz
+crE
+csy
+ctt
aaa
-cyL
-cyL
-cyL
-cyL
-cBL
-czW
-cDm
-cDk
-cDk
-cDk
-cDk
-cDm
-czW
-cGm
-cLF
-cGO
-cHd
+cuL
+cuL
+cuL
+cuL
+cxL
+cvW
+czk
+czi
+czi
+czi
+czi
+czk
+cvW
+cCf
+cGL
+cCG
+cCU
aaa
aaa
aaa
@@ -150350,7 +136688,7 @@ aal
aaw
aaE
aaS
-cJk
+cFa
aaX
abS
acc
@@ -150366,17 +136704,17 @@ aal
aal
aal
aal
-agk
-agk
-agk
-agk
-agk
-ajW
-akI
-akI
-akI
-akI
-akI
+afW
+afW
+afW
+afW
+afW
+ajD
+ako
+ako
+ako
+ako
+ako
aaf
aaa
abC
@@ -150385,7 +136723,7 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
abC
aaa
@@ -150395,18 +136733,18 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -150414,23 +136752,23 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYq
-aYq
-aYq
-aYq
-aYq
-aYG
-aYq
-aYq
-aYq
-aYq
-aYq
+aWR
+aWR
+aWR
+aWR
+aWR
+aXh
+aWR
+aWR
+aWR
+aWR
+aWR
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -150440,43 +136778,43 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbo
-bbo
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZN
+aZN
abC
-baS
-boK
-baS
-bbS
-bCj
-buw
-baS
-bxG
-baS
-baS
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbo
-bbo
-bbo
+aZr
+bmQ
+aZr
+bar
+bzO
+bsp
+aZr
+bvt
+aZr
+aZr
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -150499,57 +136837,57 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chc
-cjU
-cnP
-clj
-cqf
-cUl
-cqO
-cse
-csM
-cqf
-cuq
-csC
-cwv
-cqD
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+cdU
+cgv
+ckl
+chI
+cmw
+cKo
+cnc
+cop
+coU
+cmw
+cqv
+coK
+csy
+cmR
aaa
aaa
aaa
aaa
-cyL
-cyL
-cCu
-cyL
-cyM
-cyM
-cyM
-cyM
-cyL
-cCu
-cyL
-cyL
-cyL
-cyL
+cuL
+cuL
+cys
+cuL
+cuM
+cuM
+cuM
+cuM
+cuL
+cys
+cuL
+cuL
+cuL
+cuL
aaa
aaa
aaa
@@ -150613,8 +136951,8 @@ aax
aax
aax
aaw
-acL
-cJi
+acK
+cEZ
aal
aal
aaf
@@ -150628,7 +136966,7 @@ aaf
aaf
aaf
aaf
-ajV
+ajC
aaf
aaf
aaf
@@ -150657,13 +136995,13 @@ abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -150671,7 +137009,7 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
abC
abC
abC
@@ -150679,7 +137017,7 @@ abC
abC
abC
abC
-aYG
+aXh
abC
abC
abC
@@ -150687,7 +137025,7 @@ abC
abC
abC
abC
-aXn
+aVO
aaa
aaa
aaa
@@ -150697,41 +137035,41 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbo
-bbq
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZN
+aZP
abC
-baS
-boL
-baS
-brs
-bCj
-buw
-baS
-bxH
-byT
-bAg
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-baS
-baS
-baS
-baS
-baS
-baS
-bbo
+aZr
+bmR
+aZr
+bpp
+bzO
+bsp
+aZr
+bvu
+bwB
+bxN
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZN
aaa
aaa
aaa
@@ -150756,55 +137094,55 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-chc
-dlh
-clj
-cqf
-cqf
-cqP
-cse
-csN
-ctO
-cuq
-csC
-cwv
-cqD
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+cdU
+cSA
+chI
+cmw
+cmw
+cnd
+cop
+coV
+cpU
+cqv
+coK
+csy
+cmR
aaa
aaa
aaa
aaa
-cqD
-cza
-cza
-cqD
+cmR
+cva
+cva
+cmR
aaa
aaa
aaa
aaa
-cqD
-cza
-cza
-cqD
+cmR
+cva
+cva
+cmR
aaa
aaa
aaa
@@ -150885,7 +137223,7 @@ aaf
aaf
aaf
aaf
-ajV
+ajC
aaf
aaf
aaf
@@ -150914,13 +137252,13 @@ abC
aaa
aaa
aaa
-arw
-dAr
-dAH
-ary
-dAV
-dBa
-arw
+aqV
+cYv
+cYB
+aqW
+cYG
+cYH
+aqV
aaa
aaa
aaa
@@ -150928,23 +137266,23 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYo
-aYo
-aYo
-aYo
-aYo
-aYG
-aYo
-aYo
-aYo
-aYo
-aYo
+aWP
+aWP
+aWP
+aWP
+aWP
+aXh
+aWP
+aWP
+aWP
+aWP
+aWP
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -150953,42 +137291,42 @@ abC
aaa
aaa
aaa
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-baS
-baS
-boM
-bdK
-bbS
-bCj
-buw
-baS
-bxI
-byU
-bAh
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-baS
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZr
+aZr
+bmS
+bch
+bar
+bzO
+bsp
+aZr
+bvv
+bwC
+bxO
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZr
+bcd
bdG
-bfl
-bey
-bgo
-baS
-bbp
+bcT
+beF
+aZr
+aZO
abC
abC
abC
@@ -151013,55 +137351,55 @@ abC
abC
abC
abC
-cfK
-cfJ
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cjV
-dlh
-dkH
-cUh
-cqf
-cqQ
-cse
-csO
-ctP
-cuv
-cvC
-cwy
-cqD
+ccI
+ccH
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+cgw
+cSA
+cSi
+cKl
+cmw
+cne
+cop
+coW
+cpV
+cqA
+crF
+csB
+cmR
aaa
aaa
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
@@ -151142,7 +137480,7 @@ aaf
aaf
aaf
aaf
-ajV
+ajC
aaf
aaf
aaf
@@ -151170,14 +137508,14 @@ aaa
abC
aaa
aaa
-cKF
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+cGc
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -151185,23 +137523,23 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYp
-aYu
-aYu
-aYu
-aYu
-aYM
-aYQ
-aYQ
-aYQ
-aYQ
-aYZ
+aWQ
+aWV
+aWV
+aWV
+aWV
+aXl
+aXp
+aXp
+aXp
+aXp
+aXy
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -151209,43 +137547,43 @@ aaa
abC
aaa
aaa
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-baS
-bnv
-boN
-baS
-bbS
-bCj
-buw
-baS
-bxJ
-byV
-bAi
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-baS
-bey
-bey
-bey
-bey
-baS
-bbo
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZr
+blC
+bmT
+aZr
+bar
+bzO
+bsp
+aZr
+bvw
+bwD
+bxP
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZr
+bcT
+bcT
+bcT
+bcT
+aZr
+aZN
aaa
aaa
aaa
@@ -151271,54 +137609,54 @@ aaa
aaa
aaa
aaa
-cfJ
-baS
-cgq
-cgy
-cgG
-cgY
-bAg
-baS
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-baS
-baS
-baS
-baS
-cgi
-cjV
-cnQ
-dlp
-clj
-cqf
-cqR
-cse
-csP
-ctO
-cuq
-csC
-cwv
-cLB
-cxr
-cxr
-cxr
-cxr
-cqD
-czc
-czc
-cqD
-cxr
-cxr
-cxr
-cxr
-cqD
-czc
-czc
-cqD
+ccH
+aZr
+cdm
+cdt
+cdB
+cdQ
+bxN
+aZr
+ccH
+ccH
+ccH
+cde
+cde
+cde
+aZr
+aZr
+aZr
+aZr
+cde
+cgw
+ckm
+cSE
+chI
+cmw
+cnf
+cop
+coX
+cpU
+cqv
+coK
+csy
+cGJ
+ctt
+ctt
+ctt
+ctt
+cmR
+cvc
+cvc
+cmR
+ctt
+ctt
+ctt
+ctt
+cmR
+cvc
+cvc
+cmR
aaa
aaa
aaa
@@ -151399,7 +137737,7 @@ aae
aae
aae
aaf
-ajV
+ajC
aaf
aae
aae
@@ -151417,24 +137755,24 @@ aaa
aaa
abC
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -151442,23 +137780,23 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYq
-aYq
-aYq
-aYq
-aYq
-aYG
-aYq
-aYq
-aYq
-aYq
-aYq
+aWR
+aWR
+aWR
+aWR
+aWR
+aXh
+aWR
+aWR
+aWR
+aWR
+aWR
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
@@ -151466,44 +137804,44 @@ aaa
abC
aaa
aaa
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-baS
-bnw
-boO
-baS
-bbS
-bCj
-buw
-baS
-bxJ
-byV
-bAj
-baS
-baS
-baS
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-baS
-bey
-bey
-bey
-bey
-baS
-baS
-baS
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZr
+blD
+bmU
+aZr
+bar
+bzO
+bsp
+aZr
+bvw
+bwD
+bxQ
+aZr
+aZr
+aZr
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZr
+bcT
+bcT
+bcT
+bcT
+aZr
+aZr
+aZr
aaa
aaa
aaa
@@ -151527,55 +137865,55 @@ aaa
aaa
aaa
aaa
-baS
-baS
-baS
-cgr
-byV
-cgH
-cgZ
-chf
-baS
-baS
-cfJ
-cfJ
-cgi
-cgi
-cgi
-baS
-bNT
-bey
-baS
-cgi
-cjU
-cjV
-coF
-dlt
-cqf
-cqS
-cse
-csQ
-cqf
-cuw
-cvD
-ctJ
-cxp
-cxU
-cxU
-cxU
-cxU
-cAO
-cxU
-cxU
-cDh
-cxU
-cxU
-cFa
-cxU
-cxU
-cFS
-cGk
-cxr
+aZr
+aZr
+aZr
+cdn
+bwD
+cdC
+cdR
+cdW
+aZr
+aZr
+ccH
+ccH
+cde
+cde
+cde
+aZr
+bLc
+bcT
+aZr
+cde
+cgv
+cgw
+clb
+cSI
+cmw
+cng
+cop
+coY
+cmw
+cqB
+crG
+cpP
+ctr
+ctV
+ctV
+ctV
+ctV
+cwO
+ctV
+ctV
+czf
+ctV
+ctV
+cAW
+ctV
+ctV
+cBL
+cCd
+ctt
aaa
aaa
aaa
@@ -151656,7 +137994,7 @@ aae
aae
aae
aaf
-ajV
+ajC
aaf
aae
aae
@@ -151685,13 +138023,13 @@ abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -151699,7 +138037,7 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
abC
abC
abC
@@ -151707,7 +138045,7 @@ abC
abC
abC
abC
-aYG
+aXh
abC
abC
abC
@@ -151715,124 +138053,124 @@ abC
abC
abC
abC
-aXn
+aVO
aaa
aaa
aaa
aaa
abC
-bbo
-bbo
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-baS
-bnx
-boP
-baS
-brt
-bsK
-buy
-baS
-bxK
-byW
-bAk
-baS
-bCh
-bDE
-baS
-bbo
-bbo
-bbo
-bbo
-bbo
-baS
-bev
-bPu
-bQI
-bRO
-bSY
-bUb
-bSY
-bVT
-bVT
-bVT
-bVT
-bxC
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-cfT
-cgc
-cgg
-bSY
-cgs
-cgz
-cgI
-cha
-chg
-chj
-baS
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-baS
-bey
-cLm
-baS
-cgi
-cgu
-cIa
-dlq
-cpo
-cqf
-cqT
-csf
-csR
-cqf
-cux
-cvE
-cwz
-cxs
-cxW
-cxW
-cxW
-cxW
-cAP
-cxW
-cxW
-cDn
-cEa
-cEa
-cEa
-cEa
-cFF
-cFT
-cGl
-cxr
+aZN
+aZN
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZr
+blE
+bmV
+aZr
+bpq
+bqH
+bsr
+aZr
+bvx
+bwE
+bxR
+aZr
+bzM
+bBe
+aZr
+aZN
+aZN
+aZN
+aZN
+aZN
+aZr
+bcQ
+bMC
+bNO
+bOT
+bQc
+bRe
+bQc
+bSV
+bSV
+bSV
+bSV
+bvp
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+ccQ
+ccZ
+cdc
+bQc
+cdo
+cdu
+cdD
+cdS
+cdX
+cea
+aZr
+ccH
+ccH
+ccH
+ccH
+ccH
+aZr
+bcT
+cGx
+aZr
+cde
+cdq
+cDR
+cSF
+clG
+cmw
+cnh
+coq
+coZ
+cmw
+cqC
+crH
+csC
+ctu
+ctX
+ctX
+ctX
+ctX
+cwP
+ctX
+ctX
+czl
+czX
+czX
+czX
+czX
+cBy
+cBM
+cCe
+ctt
aaa
aaa
aaa
@@ -151913,7 +138251,7 @@ aae
aae
aae
aaf
-ajV
+ajC
aaf
aaf
aaa
@@ -151942,13 +138280,13 @@ abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
@@ -151956,140 +138294,140 @@ aaa
aaa
aaa
aaa
-aXn
+aVO
aaa
aaa
-aYo
-aYo
-aYo
-aYo
-aYo
-aYG
-aYo
-aYo
-aYo
-aYo
-aYo
+aWP
+aWP
+aWP
+aWP
+aWP
+aXh
+aWP
+aWP
+aWP
+aWP
+aWP
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
aaa
abC
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-bny
-baS
-baS
-bbS
-bCj
-buw
-baS
-baS
-byX
-baS
-baS
-baS
-bDF
-baS
-baS
-baS
-baS
-baS
-baS
-bdK
-baS
-bPv
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-bYL
-bZn
-bZn
-bZn
-dwp
-bZn
-bZn
-bZn
-bZn
-dwp
-bZn
-bZn
-bZn
-bZn
-dwp
-bZn
-bZn
-bZn
-cfU
-baS
-baS
-baS
-baS
-baS
-bdK
-baS
-baS
-chk
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-cLl
-baS
-baS
-baS
-baS
-baS
-coH
-cpp
-cqf
-cqU
-cqf
-cqf
-cqf
-cuy
-cvF
-cwA
-cul
-cxr
-cxr
-cxr
-cxr
-cqD
-cBM
-cCv
-cqD
-cxr
-cxr
-cxr
-cxr
-cul
-cFU
-cGj
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+blF
+aZr
+aZr
+bar
+bzO
+bsp
+aZr
+aZr
+bwF
+aZr
+aZr
+aZr
+bBf
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+bch
+aZr
+bMD
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+bVM
+bWo
+bWo
+bWo
+cXL
+bWo
+bWo
+bWo
+bWo
+cXL
+bWo
+bWo
+bWo
+bWo
+cXL
+bWo
+bWo
+bWo
+ccR
+aZr
+aZr
+aZr
+aZr
+aZr
+bch
+aZr
+aZr
+ceb
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+cGw
+aZr
+aZr
+aZr
+aZr
+aZr
+clc
+clH
+cmw
+cni
+cmw
+cmw
+cmw
cqD
+crI
+csD
+cqq
+ctt
+ctt
+ctt
+ctt
+cmR
+cxM
+cyt
+cmR
+ctt
+ctt
+ctt
+ctt
+cqq
+cBN
+cCc
+cmR
aaa
aaa
aaa
@@ -152169,9 +138507,9 @@ aae
aaf
aaf
aaf
-ahT
-aka
-ahT
+ahF
+ajH
+ahF
aaf
aaa
aaa
@@ -152199,154 +138537,154 @@ abC
aaa
aaa
aaa
-arw
-dAr
-dAD
-ary
-dAU
-dBa
-arw
+aqV
+cYv
+cYA
+aqW
+cYF
+cYH
+aqV
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-aYp
-aYu
-aYu
-aYu
-aYu
-aYM
-aYQ
-aYQ
-aYQ
-aYQ
-aYZ
+aWQ
+aWV
+aWV
+aWV
+aWV
+aXl
+aXp
+aXp
+aXp
+aXp
+aXy
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
aaa
-bbp
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-baS
-bib
-biX
-biX
-blv
-bmy
-bmy
-bnz
-bmy
-bpY
-bru
-bsL
-buz
-biX
-biX
-byY
-bAl
-bBh
-bCi
-bAl
-bAl
-bAl
-bAl
-bIr
-bAl
-bAl
-bAl
-bAl
-bPw
-bQJ
-bRP
-buw
-bUc
-bVc
-bVU
-buw
-bXj
-buv
-dwd
-dwd
-dwd
-dwd
-dwq
-dwd
-dwd
-dwd
-dwd
-dwx
-dwd
-dwd
-dwd
-dwd
-dwq
-dwd
-dwd
-dwd
-dwd
-buv
-bXj
-buw
-bVU
-bib
-biX
-biX
-chh
-chl
-chs
-chG
-chW
-cis
-chG
-chG
-chG
-chG
-cLn
-chG
-chG
-cne
-cnR
-coI
-cpq
-cqg
-cqV
-bAl
-bAl
-ctQ
-cuz
-cvG
-cwv
-cqD
+aZO
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZr
+bgs
+bhn
+bhn
+bjH
+bkH
+bkH
+blG
+bkH
+bnZ
+bpr
+bqI
+bss
+bhn
+bhn
+bwG
+bxS
+byN
+bzN
+bxS
+bxS
+bxS
+bxS
+bFI
+bxS
+bxS
+bxS
+bxS
+bME
+bNP
+bOU
+bsp
+bRf
+bSf
+bSW
+bsp
+bUk
+bso
+cXK
+cXK
+cXK
+cXK
+cXM
+cXK
+cXK
+cXK
+cXK
+cXP
+cXK
+cXK
+cXK
+cXK
+cXM
+cXK
+cXK
+cXK
+cXK
+bso
+bUk
+bsp
+bSW
+bgs
+bhn
+bhn
+cdY
+cec
+cei
+ces
+ceE
+ceX
+ces
+ces
+ces
+ces
+cGy
+ces
+ces
+cjA
+ckn
+cld
+clI
+cmx
+cnj
+bxS
+bxS
+cpW
+cqE
+crJ
+csy
+cmR
aaa
aaa
aaa
aaa
-cqD
-cqD
-cqD
-cqD
+cmR
+cmR
+cmR
+cmR
aaa
aaa
aaa
aaa
-cqD
-cqD
-cqD
-cqD
+cmR
+cmR
+cmR
+cmR
aaa
aaa
aaa
@@ -152426,9 +138764,9 @@ aae
aaf
aaf
aaf
-ahT
-akb
-ahT
+ahF
+ajI
+ahF
aaa
aaa
aaa
@@ -152436,15 +138774,15 @@ aaa
aaa
aaa
abC
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
abC
-cKF
+cGc
aaa
aaa
aaa
@@ -152456,138 +138794,138 @@ abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
aaa
-alx
-alx
-alx
+alc
+alc
+alc
aaa
aaa
aaa
-aYq
-aYq
-aYq
-aYq
-aYq
-aYG
-aYq
-aYq
-aYq
-aYq
-aYq
+aWR
+aWR
+aWR
+aWR
+aWR
+aXh
+aWR
+aWR
+aWR
+aWR
+aWR
aaa
aaa
-aXn
+aVO
aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-baS
-baS
-baS
-baS
-baS
-bic
-cKy
-biY
-blw
-deH
-biY
-bnA
-bHe
-cRL
-bHe
-bsM
-bbs
-bbs
-bbs
-bbs
-bbs
-bBi
-bCj
-bbT
-bEI
-bFQ
-bHe
-bIs
-bHe
-bHe
-bHe
-bHe
-bPx
-bpZ
-bfn
-bbs
-bbs
-bbs
-bbs
-bbs
-bbs
-baU
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dBA
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-dwd
-baU
-bbs
-cgk
-bbs
-bpZ
-bbs
-bbs
-bfn
-bbs
-cht
-bbs
-bbs
-bbs
-bbs
-cju
-bbs
-bbs
-bbs
-bbs
-bbs
-bbs
-cNn
-bbs
-bil
-bpZ
-cqW
-bbs
-bbs
-bbs
-cuA
-cvH
-cwv
-cqD
+aZN
+aZN
+aZN
+aZr
+aZr
+aZr
+aZr
+aZr
+bgt
+cFY
+bho
+bjI
+cPg
+bho
+blH
+bEv
+cJv
+bEv
+bqJ
+aZR
+aZR
+aZR
+aZR
+aZR
+byO
+bzO
+bas
+bCh
+bDk
+bEv
+bFJ
+bEv
+bEv
+bEv
+bEv
+bMF
+boa
+bdI
+aZR
+aZR
+aZR
+aZR
+aZR
+aZR
+aZt
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cYS
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+cXK
+aZt
+aZR
+cdg
+aZR
+boa
+aZR
+aZR
+bdI
+aZR
+cej
+aZR
+aZR
+aZR
+aZR
+cfW
+aZR
+aZR
+aZR
+aZR
+aZR
+aZR
+cHC
+aZR
+bgC
+boa
+cnk
+aZR
+aZR
+aZR
+cqF
+crK
+csy
+cmR
aaa
aaa
aaa
@@ -152682,22 +139020,22 @@ aae
aae
aaf
aaf
-dzk
-dzk
-dzk
+cYi
+cYi
+cYi
abC
aaa
aaa
aaa
aaa
aaa
-alx
-alF
-alx
-alx
-alx
-alx
-alx
+alc
+alk
+alc
+alc
+alc
+alc
+alc
aaa
aaa
abC
@@ -152713,29 +139051,29 @@ abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
-alx
-alx
-alx
-alx
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+alc
+alc
+alc
+alc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
abC
-aYG
+aXh
abC
abC
abC
@@ -152748,119 +139086,119 @@ abC
abC
abC
abC
-bbp
-bbo
-bbo
-baS
-ber
-dcz
-bgg
-baS
-bid
-bbs
-bjO
-blx
-deI
-bkA
-bnB
-boR
-bqa
-brv
-cSU
-buA
-bsN
-bvY
-byZ
-byZ
-bBj
-bCk
-bDG
-bEJ
-bFR
-bHf
-bIt
-bHf
-bLB
-bHf
-bHf
-bPy
-bQK
-bRQ
-cLb
-bSZ
-bVd
-bSZ
-bSZ
-bSZ
-bYb
-dwd
-dwd
-dwd
-dwd
-dws
-dwd
-dwd
-dwd
-dwd
-dwy
-dwA
-dwA
-dwA
-dwA
-dwF
-dwA
-dwA
-dwA
-dwA
-dwH
-dwI
-dwI
-dwI
-cgA
-cgJ
-dwI
-dwM
-dwN
-chu
-bkA
-bkA
-bkA
-bkA
-cjv
-bkA
-bkA
-bkA
-bkA
-cmz
-cnf
-cnS
-bkA
-cpr
-cqh
-cqX
-cqh
-cqh
-cqh
-cuB
-cvI
-cwB
-cqD
+aZO
+aZN
+aZN
+aZr
+bcM
+cNK
+bex
+aZr
+bgu
+aZR
+bic
+bjJ
+cPh
+biN
+blI
+bmW
+bob
+bps
+cJE
+bst
+bqK
+btP
+bwH
+bwH
+byP
+bzP
+bBg
+bCi
+bDl
+bEw
+bFK
+bEw
+bIP
+bEw
+bEw
+bMG
+bNQ
+bOV
+cGp
+bQd
+bSg
+bQd
+bQd
+bQd
+bVc
+cXK
+cXK
+cXK
+cXK
+cXN
+cXK
+cXK
+cXK
+cXK
+cXQ
+cXR
+cXR
+cXR
+cXR
+cXS
+cXR
+cXR
+cXR
+cXR
+cXT
+cXU
+cXU
+cXU
+cdv
+cdE
+cXU
+cXV
+cXW
+cek
+biN
+biN
+biN
+biN
+cfX
+biN
+biN
+biN
+biN
+ciV
+cjB
+cko
+biN
+clJ
+cmy
+cnl
+cmy
+cmy
+cmy
+cqG
+crL
+csE
+cmR
aaa
aaa
aaa
aaa
-cqD
-cqD
-cqD
-cqD
+cmR
+cmR
+cmR
+cmR
aaa
aaa
aaa
aaa
-cqD
-cqD
-cqD
-cqD
+cmR
+cmR
+cmR
+cmR
aaa
aaa
aaa
@@ -152947,43 +139285,43 @@ aaa
aaa
aaa
aaa
-alx
-alx
-alx
-alx
-alx
-and
-and
-alx
-alx
-alx
+alc
+alc
+alc
+alc
+alc
+amI
+amI
+alc
+alc
+alc
abC
aaa
aaa
-alx
-alx
-alx
-alx
-alx
+alc
+alc
+alc
+alc
+alc
aaa
abC
aaa
aaa
aaa
-arw
-dAn
-dAD
-ary
-ary
-aTD
-arw
+aqV
+cYu
+cYA
+aqW
+aqW
+aSj
+aqV
aaa
aaa
aaa
-alx
-alx
-alx
-alF
+alc
+alc
+alc
+alk
abC
abC
abC
@@ -152992,7 +139330,7 @@ abC
abC
abC
abC
-aYG
+aXh
abC
aaa
aaa
@@ -153005,119 +139343,119 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-baS
-bes
-dBT
-bgh
-bgW
-bie
-biZ
-bjP
-baS
-deJ
-deW
-deW
-deW
-bqb
-cSt
-cSV
-bqb
-bqb
-bqb
-bxL
-bxL
-bBk
-bCl
-bxL
-bEK
-cKT
-bEK
-bEK
-bEK
-bEK
-bEK
-baS
-bPz
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-bYM
-bZo
-bZo
-bZo
-dwt
-bZo
-bZo
-bZo
-bZo
-dwt
-bZo
-bZo
-bZo
-bZo
-dwt
-bZo
-bZo
-bZo
-cfV
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-chv
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-bdK
-baS
-baS
-baS
-coJ
-cpp
-baS
-baS
-baS
-baS
-baS
-cuC
-cvJ
-cwC
-cLB
-cxr
-cxr
-cxr
-cxr
-cqD
-cBN
-cCw
-cqD
-cxr
-cxr
-cxr
-cxr
-cul
-cFV
-cGj
-cqD
+aZN
+aZN
+aZN
+aZr
+bcN
+cZg
+bey
+bfn
+bgv
+bhp
+bid
+aZr
+cPi
+cPs
+cPs
+cPs
+boc
+cJz
+cJF
+boc
+boc
+boc
+bvy
+bvy
+byQ
+bzQ
+bvy
+bCj
+cGh
+bCj
+bCj
+bCj
+bCj
+bCj
+aZr
+bMH
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+bVN
+bWp
+bWp
+bWp
+cXO
+bWp
+bWp
+bWp
+bWp
+cXO
+bWp
+bWp
+bWp
+bWp
+cXO
+bWp
+bWp
+bWp
+ccS
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+cel
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+bch
+aZr
+aZr
+aZr
+cle
+clH
+aZr
+aZr
+aZr
+aZr
+aZr
+cqH
+crM
+csF
+cGJ
+ctt
+ctt
+ctt
+ctt
+cmR
+cxN
+cyu
+cmR
+ctt
+ctt
+ctt
+ctt
+cqq
+cBO
+cCc
+cmR
aaa
aaa
aaa
@@ -153204,52 +139542,52 @@ abC
aaa
aaa
aaa
-alx
-alx
-and
-alx
-and
-and
-and
-alx
-alx
-and
-alF
-alx
-and
-and
-alx
-alx
-alx
-alx
+alc
+alc
+amI
+alc
+amI
+amI
+amI
+alc
+alc
+amI
+alk
+alc
+amI
+amI
+alc
+alc
+alc
+alc
aaa
abC
-cKF
-cKF
-cKF
-aOv
-dAz
-dAD
-ary
-ary
-dBg
-aUC
-cKF
-cKF
-akR
-alx
-alx
-alx
-alx
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+aNo
+cYw
+cYA
+aqW
+aqW
+cYI
+aTg
+cGc
+cGc
+akx
+alc
+alc
+alc
+alc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
abC
-aYG
+aXh
abC
aaa
aaa
@@ -153262,119 +139600,119 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-baS
-bet
-bfi
-bgi
-bgX
-bif
-bja
-bjQ
-baS
-bly
-bia
-biW
-bjN
-bqb
-brw
-bsO
-buB
-bvZ
-cTh
-cMr
-bxM
-btb
-bCm
-bDH
-bEK
-bFS
-bHg
-bIu
-bKa
-bLC
-bEK
-bNT
-bPA
-bex
-bRR
-bbR
-bUd
-bVe
-bVV
-bVV
-bVV
-bVV
-bYN
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-aZV
-cgd
-cgh
-cgl
-cgt
-cgB
-cgB
-dEr
-cgB
-cgB
-chw
-baS
-cfJ
-cgi
-cgi
-cgu
-cjU
-cjU
-cll
-cJf
-dla
-cll
-cHM
-coK
-cps
-cjV
-chc
-chc
-chc
-cqD
-cuD
-cvK
-cwD
-cxp
-cxU
-cxU
-cxU
-cxU
-cAQ
-cxU
-cxU
-cDh
-cxU
-cxU
-cxU
-cxU
-cBI
-cFS
-cGn
-cxr
+aZN
+aZN
+aZN
+aZr
+bcO
+bdD
+bez
+bfo
+bgw
+bhq
+bie
+aZr
+bjK
+bgr
+bhm
+bib
+boc
+bpt
+bqL
+bsu
+btQ
+cJN
+cHh
+bvz
+bqY
+bzR
+bBh
+bCj
+bDm
+bEx
+bFL
+bHq
+bIQ
+bCj
+bLc
+bMI
+bcS
+bOW
+baq
+bRg
+bSh
+bSX
+bSX
+bSX
+bSX
+bVO
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aYu
+cda
+cdd
+cdh
+cdp
+cdw
+cdw
+dad
+cdw
+cdw
+cem
+aZr
+ccH
+cde
+cde
+cdq
+cgv
+cgv
+chK
+cEW
+cSw
+chK
+cDD
+clf
+clK
+cgw
+cdU
+cdU
+cdU
+cmR
+cqI
+crN
+csG
+ctr
+ctV
+ctV
+ctV
+ctV
+cwQ
+ctV
+ctV
+czf
+ctV
+ctV
+ctV
+ctV
+cxI
+cBL
+cCg
+ctt
aaa
aaa
aaa
@@ -153459,54 +139797,54 @@ abC
aaa
abC
abC
-alF
-alx
-alx
-and
-and
-afV
-afV
-afS
-aez
-afV
-adZ
-aez
-afV
-afV
-aez
-aez
-alx
-and
-and
-alx
-alx
+alk
+alc
+alc
+amI
+amI
+afH
+afH
+afE
+aep
+afH
+adP
+aep
+afH
+afH
+aep
+aep
+alc
+amI
+amI
+alc
+alc
aaa
aaa
aaa
-aKo
-aOw
-aKo
-aQW
-aRP
-aSR
-aLm
-aUD
-aLm
-akR
-akR
-alx
-alx
-alx
-alx
-alx
-alx
+aJv
+aNp
+aJv
+aPE
+aQw
+aRx
+aKq
+aTh
+aKq
+akx
+akx
+alc
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
aaa
aaa
abC
-aYG
+aXh
abC
aaa
aaa
@@ -153519,47 +139857,47 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-baS
-beu
-bfj
-bgj
-baS
-big
-bja
-bjP
-deo
-deo
-deo
-deo
-deo
-bqb
-brx
-bsP
-cSW
-buC
-cTi
-bxN
-buH
-btb
-bCm
-buH
-bEL
-bFT
-bHh
-bIv
-bHh
-bLD
-bEK
-bey
-bPB
-bey
-bdG
-baS
-baS
-baS
+aZP
+aZP
+aZP
+aZr
+bcP
+bdE
+beA
+aZr
+bgx
+bhq
+bid
+cOX
+cOX
+cOX
+cOX
+cOX
+boc
+bpu
+bqM
+cJG
+bsv
+cJO
+bvA
+bsA
+bqY
+bzR
+bsA
+bCk
+bDn
+bEy
+bFM
+bEy
+bIR
+bCj
+bcT
+bMJ
+bcT
+bcd
+aZr
+aZr
+aZr
aaa
aaa
aaa
@@ -153584,54 +139922,54 @@ aaa
aaa
aaa
aaa
-baS
-baS
-baS
-bey
-bey
-bey
-bey
-baS
-baS
-baS
-cfJ
-cgi
-cgi
-cgu
-cjV
-dkN
-clm
-dkJ
-dkJ
-cng
-dkJ
-coL
-dlu
-cjU
-chc
-chc
-chc
-cqD
-cuE
-cvL
-cwE
-cxq
-cxV
-cxV
-cxV
-cxV
-cAR
-cxV
-cxV
-cDi
-cDZ
-cDZ
-cDZ
-cDZ
-cLJ
-cDZ
-cGl
-cxr
+aZr
+aZr
+aZr
+bcT
+bcT
+bcT
+bcT
+aZr
+aZr
+aZr
+ccH
+cde
+cde
+cdq
+cgw
+cSo
+chL
+cSk
+cSk
+cjC
+cSk
+clg
+cSJ
+cgv
+cdU
+cdU
+cdU
+cmR
+cqJ
+crO
+csH
+cts
+ctW
+ctW
+ctW
+ctW
+cwR
+ctW
+ctW
+czg
+czW
+czW
+czW
+czW
+cGO
+czW
+cCe
+ctt
aaa
aaa
aaa
@@ -153716,54 +140054,54 @@ abC
aaa
aaa
aaa
-alx
-alx
-and
-aez
-aez
-afV
-aqH
-afq
-apx
-cZd
-cYm
-aiS
-azp
-amb
-aBV
-adZ
-afV
-afV
-aez
-alx
-alx
-alx
-akR
-akR
-aKo
-aOx
-aKo
-dAQ
-aRD
-aSS
-aLm
-aUE
-aLm
-alx
-alx
-alx
-and
-and
-alx
-alx
-alx
+alc
+alc
+amI
+aep
+aep
+afH
+aqh
+afc
+aoX
+cLQ
+cLy
+aiA
+ayI
+alG
+aBn
+adP
+afH
+afH
+aep
+alc
+alc
+alc
+akx
+akx
+aJv
+aNq
+aJv
+cYC
+aQk
+aRy
+aKq
+aTi
+aKq
+alc
+alc
+alc
+amI
+amI
+alc
+alc
+alc
aaa
aaa
aaa
aaa
aaa
abC
-aYG
+aXh
abC
aaa
aaa
@@ -153776,47 +140114,47 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-baS
-dco
-bfk
-bgk
-baS
-big
-bjb
-bjR
-deo
-deK
-deX
-dfg
-dfv
-bqb
-bry
-bsP
-cSW
-buD
-cTi
-bxO
-buH
-btb
-bCn
-bDI
-bEM
-bFU
-bHi
-bIw
-bHh
-bLE
-bEK
-bey
-bPB
-bey
-ber
-baS
-bbo
-bbo
+aZP
+aZP
+aZP
+aZr
+cNC
+bdF
+beB
+aZr
+bgx
+bhr
+bif
+cOX
+cPj
+cPt
+cPA
+cPO
+boc
+bpv
+bqM
+cJG
+bsw
+cJO
+bvB
+bsA
+bqY
+bzS
+bBi
+bCl
+bDo
+bEz
+bFN
+bEy
+bIS
+bCj
+bcT
+bMJ
+bcT
+bcM
+aZr
+aZN
+aZN
aaa
aaa
aaa
@@ -153840,55 +140178,55 @@ abC
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-baS
+ccH
+ccH
+ccH
+aZr
+bcd
+bNR
bdG
-bQL
-bfl
-bgo
-baS
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgu
-cjU
-dkN
-clj
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-cuF
-cvM
-cwF
-cqD
-cxr
-cxr
-czg
-cxr
-cqD
-cza
-cza
-cqD
-cxr
-cxr
-cxr
-cxr
-cqD
-cza
-cza
-cqD
+beF
+aZr
+ccH
+cde
+cde
+cde
+cde
+cdq
+cgv
+cSo
+chI
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+cqK
+crP
+csI
+cmR
+ctt
+ctt
+cvg
+ctt
+cmR
+cva
+cva
+cmR
+ctt
+ctt
+ctt
+ctt
+cmR
+cva
+cva
+cmR
aaa
aaa
aaa
@@ -153971,56 +140309,56 @@ aaa
aaa
abC
aaa
-akR
-alx
-and
-and
-aez
-afS
-afV
-aoQ
-afq
-akq
-alQ
-akq
-akq
-akp
-cYo
-akp
-cYl
-akp
-amb
-cYj
-aez
-and
-and
-aKo
-aLo
-aLo
-aKo
-aOy
-aKo
-dAQ
-aRD
-aST
-aLm
-aUF
-aLm
-aLm
-aLm
-alx
-and
-and
-alx
-alx
-alx
-alx
-alx
+akx
+alc
+amI
+amI
+aep
+afE
+afH
+aor
+afc
+ajX
+alv
+ajX
+ajX
+ajW
+cLA
+ajW
+cLx
+ajW
+alG
+cLv
+aep
+amI
+amI
+aJv
+aKs
+aKs
+aJv
+aNr
+aJv
+cYC
+aQk
+aRz
+aKq
+aTj
+aKq
+aKq
+aKq
+alc
+amI
+amI
+alc
+alc
+alc
+alc
+alc
aaa
-cKF
+cGc
abC
abC
-aYG
+aXh
abC
aaa
aaa
@@ -154033,119 +140371,119 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-baS
-baS
-baS
-baS
-baS
-big
-bja
-bjP
-deq
-blA
-deY
-deY
-boV
-bqb
-brz
-bsQ
-cSY
-buE
-cTi
-bxP
-bza
-bBl
-bCo
-bDJ
-bEN
-bFV
-bHh
-bIx
-bHh
-bLF
-bEK
-bNU
-bPC
-bQL
-bRS
-baS
-bbo
-bbo
-bbo
-bbo
+aZP
+aZP
+aZP
+aZr
+aZr
+aZr
+aZr
+aZr
+bgx
+bhq
+bid
+cOY
+bjL
+cPu
+cPu
+bmY
+boc
+bpw
+bqN
+cJH
+bsx
+cJO
+bvC
+bwI
+byR
+bzT
+bBj
+bCm
+bDp
+bEy
+bFO
+bEy
+bIT
+bCj
+bLd
+bMK
+bNR
+bOX
+aZr
+aZN
+aZN
+aZN
+aZN
aaa
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
aaa
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
-aXR
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
+aWs
aaa
aaa
-cfJ
-cfJ
-cfJ
-baS
-baS
-baS
-baS
-baS
-baS
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgu
-cjV
-cll
-dkU
-clW
-cmB
-cnh
-cmC
-cnV
-cmC
-cpt
-cpt
-csg
-cpt
-clW
-cuE
-cvN
-cwG
-cqD
-cfI
-cfI
+ccH
+ccH
+ccH
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+ccH
+cde
+cde
+cde
+cde
+cdq
+cgw
+chK
+cSt
+ciu
+ciX
+cjD
+ciY
+ckr
+ciY
+clL
+clL
+cor
+clL
+ciu
+cqJ
+crQ
+csJ
+cmR
+ccG
+ccG
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
@@ -154227,57 +140565,57 @@ aaa
aaa
aaa
abC
-akR
-akR
-alx
-and
-and
-aez
-apO
-aoR
-ahr
-ahr
-ahr
-cYY
-avL
-ahr
-ahr
-azq
-cYY
-ahr
-ahr
-aEj
-afS
-afV
-aez
-aez
-aKo
-aLp
-aMq
-aNr
-aOz
-aPs
-dAQ
-aRD
-aSU
-aLm
-aUG
-aVj
+akx
+akx
+alc
+amI
+amI
+aep
+apo
+aos
+ahd
+ahd
+ahd
+cLO
+avf
+ahd
+ahd
+ayJ
+cLO
+ahd
+ahd
+aDA
+afE
+afH
+aep
+aep
+aJv
+aKt
+aLq
+aMn
+aNs
+aOg
+cYC
+aQk
+aRA
+aKq
+aTk
+aTN
+aUh
+aKq
+alc
+amI
+aVC
aVD
-aLm
-alx
-and
-aXa
-aXb
-aXa
-aXa
-aYi
-alx
+aVC
+aVC
+aWJ
+alc
aaa
aaa
abC
-aYF
-aYH
+aXg
+aXi
abC
aaa
aaa
@@ -154289,50 +140627,50 @@ aaa
aaa
aaa
aaa
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-baS
-big
-bja
-bjP
-deo
-deL
-deZ
-dfh
-boW
-bqb
-brA
-bsR
-cSZ
-buF
-cTl
-bxQ
-brQ
-bBm
-bCp
-bDK
-bEM
-bFU
-bHi
-bIy
-bKb
-bLG
-bEK
-bNV
-bOq
-baS
-baS
-baS
-bbo
-bbo
-bbo
-bbo
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZr
+bgx
+bhq
+bid
+cOX
+cPk
+cPv
+cPB
+bmZ
+boc
+bpx
+bqO
+cJI
+bsy
+cJP
+bvD
+bpN
+byS
+bzU
+bBk
+bCl
+bDo
+bEz
+bFP
+bHr
+bIU
+bCj
+bLe
+bLy
+aZr
+aZr
+aZr
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -154353,56 +140691,56 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgu
-cjV
-ckB
-clj
-clW
-cmC
-cni
-cmC
-cnj
-cmC
-cmC
-cnV
-csh
-cpt
-clW
-cuG
-csC
-cLA
-cqD
-cfI
-cfI
-cfI
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cdq
+cgw
+chb
+chI
+ciu
+ciY
+cjE
+ciY
+cjF
+ciY
+ciY
+ckr
+cos
+clL
+ciu
+cqL
+coK
+cGI
+cmR
+ccG
+ccG
+ccG
aaa
-cqD
-czc
-czc
-cqD
+cmR
+cvc
+cvc
+cmR
aaa
aaa
aaa
aaa
-cqD
-czc
-czc
-cqD
+cmR
+cvc
+cvc
+cmR
aaa
aaa
aaa
@@ -154482,58 +140820,58 @@ aaa
aaa
aaa
aaa
-ajj
-akc
-anQ
-dnE
-ajn
-aez
-afS
-afV
-afq
-anC
-arC
-arC
-arC
-arC
-arC
-arC
-arC
-arC
-arC
-arC
-afq
-anC
-afS
-adZ
-aIf
-adZ
-aKo
-aLq
-aMr
-aNs
-aOA
-aPt
-dAS
-aRD
-aSV
-aLm
-aUH
-aVk
-aVE
-aLm
-afV
-afV
-aXa
-aXt
-aXL
-aXZ
-aYi
-aYi
-aYi
+aiR
+ajJ
+anv
+cUg
+aiV
+aep
+afE
+afH
+afc
+anh
+aqY
+aqY
+aqY
+aqY
+aqY
+aqY
+aqY
+aqY
+aqY
+aqY
+afc
+anh
+afE
+adP
+aHq
+adP
+aJv
+aKu
+aLr
+aMo
+aNt
+aOh
+cYD
+aQk
+aRB
+aKq
+aTl
+aTO
+aUi
+aKq
+afH
+afH
+aVC
+aVU
+aWm
+aWA
+aWJ
+aWJ
+aWJ
abC
abC
-aYG
+aXh
abC
abC
aaa
@@ -154546,51 +140884,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-bbo
-bbo
-bbq
-bbo
-bbq
-baS
-big
-bja
-bjP
-deo
-deM
-dfa
-dfi
-dfw
-bqb
-brB
-bsS
-buG
-bqb
-bqb
-bzb
-bzb
-bBn
-bCq
-brE
-bEL
-bFT
-bHh
-bIz
-bHh
-bLH
-bEK
-bNW
-bPE
-bgs
-bgp
-bbq
-bbq
-bbo
-bbo
-bbo
-bbp
+aZN
+aZN
+aZN
+aZN
+aZN
+aZP
+aZN
+aZP
+aZr
+bgx
+bhq
+bid
+cOX
+cPl
+cPw
+cPC
+cPP
+boc
+bpy
+bqP
+bsz
+boc
+boc
+bwJ
+bwJ
+byT
+bzV
+bpB
+bCk
+bDn
+bEy
+bFQ
+bEy
+bIV
+bCj
+bLf
+bML
+beJ
+beG
+aZP
+aZP
+aZN
+aZN
+aZN
+aZO
abC
abC
abC
@@ -154610,43 +140948,43 @@ abC
abC
abC
abC
-cfK
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgu
-chc
-cll
-dkV
-clW
-cmD
-cnj
-cnT
-cnj
-cnV
-cmC
-cpt
-csi
-csS
-ctR
-cuH
-csC
-cwG
-cxr
-cfI
-cfI
-cfI
+ccI
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cdq
+cdU
+chK
+cSu
+ciu
+ciZ
+cjF
+ckp
+cjF
+ckr
+ciY
+clL
+cot
+cpa
+cpX
+cqM
+coK
+csJ
+ctt
+ccG
+ccG
+ccG
aaa
aaa
aaa
@@ -154739,58 +141077,58 @@ aaa
aaa
aaa
aaa
-ajk
-alE
-akd
-dnF
-ajn
-ajn
-aUW
-aoQ
-aoR
-aqN
-arC
-asx
-atB
-asx
-atC
-atC
-axN
-azr
-asx
-arC
-aqH
-aEk
-amb
-akp
-cZB
-afS
-aKp
-aLr
-aMs
-aNt
-aOB
-aPu
-aQY
-aRF
-aSW
-cKe
-aUI
-aVl
-aVF
-aLm
-ajt
-aqH
-aXb
-aXu
-aXM
-aYa
-aYj
-aYr
-aYj
-aYn
-aYn
-aYH
+aiS
+alj
+ajK
+cUh
+aiV
+aiV
+aTA
+aor
+aos
+aqn
+aqY
+arT
+asV
+arT
+asW
+asW
+axg
+ayK
+arT
+aqY
+aqh
+aDB
+alG
+ajW
+cMa
+afE
+aJw
+aKv
+aLs
+aMp
+aNu
+aOi
+aPF
+aQm
+aRC
+cFI
+aTm
+aTP
+aUj
+aKq
+ajb
+aqh
+aVD
+aVV
+aWn
+aWB
+aWK
+aWS
+aWK
+aWO
+aWO
+aXi
abC
abC
abC
@@ -154803,51 +141141,51 @@ abC
abC
abC
abC
-bbp
-bbo
-bbo
-bbo
-bbo
-bbq
-bbo
-bbq
-baS
-big
-bja
-bjP
-deo
-deN
-dfb
-dfj
-boX
-bqc
-brC
-bsT
-buH
-dBU
-bwc
-bxS
-bAm
-bxS
-bCr
-bDL
-bEK
-bFW
-bHj
-bIz
-bKc
-bLI
-bEK
-bNX
-bPF
-bQM
-bgs
-bgp
-bgp
-bbq
-bbq
-bbo
-bbo
+aZO
+aZN
+aZN
+aZN
+aZN
+aZP
+aZN
+aZP
+aZr
+bgx
+bhq
+bid
+cOX
+cPm
+cPx
+cPD
+bna
+bod
+bpz
+bqQ
+bsA
+cZh
+btR
+bvE
+bxT
+bvE
+bzW
+bBl
+bCj
+bDq
+bEA
+bFQ
+bHs
+bIW
+bCj
+bLg
+bMM
+bNS
+beJ
+beG
+beG
+aZP
+aZP
+aZN
+aZN
aaa
aaa
aaa
@@ -154867,43 +141205,43 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgu
-chc
-cxT
-clj
-clW
-cmC
-cmC
-cnU
-coM
-cpt
-cpt
-cpt
-cpt
-cpt
-clW
-cuI
-csC
-cwG
-cxr
-cfI
-cfI
-cfI
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cdq
+cdU
+ctU
+chI
+ciu
+ciY
+ciY
+ckq
+clh
+clL
+clL
+clL
+clL
+clL
+ciu
+cqN
+coK
+csJ
+ctt
+ccG
+ccG
+ccG
aaa
aaa
aaa
@@ -154996,55 +141334,55 @@ aaa
aaa
aaa
aaa
-ajl
-ake
-akS
-aly
-amf
-ane
-alr
-aoR
-apP
-afV
-arC
-asy
-atC
-asx
-asx
-axb
-atC
-atC
-aAH
-arC
-afS
-amI
-aCr
-aCr
-aCr
-aBA
-aKo
-aKo
-aKo
-aKo
-aKo
-aKo
-aQZ
-aRQ
-aSX
-aLm
-aUJ
-aVe
-aVG
-aLm
-alR
-aWQ
-aXc
-aXv
-aXN
-aYb
-aYi
-aYi
-aYi
+aiT
+ajL
+aky
+ald
+alK
+amJ
+akW
+aos
+app
+afH
+aqY
+arU
+asW
+arT
+arT
+awu
+asW
+asW
+azZ
+aqY
+afE
+amn
+aBJ
+aBJ
+aBJ
+aAS
+aJv
+aJv
+aJv
+aJv
+aJv
+aJv
+aPG
+aQx
+aRD
+aKq
+aTn
+aTI
+aUk
+aKq
+alw
+aVs
+aVE
+aVW
+aWo
+aWC
+aWJ
+aWJ
+aWJ
abC
abC
abC
@@ -155060,52 +141398,52 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-cKp
-big
-bja
-bjP
-deo
-blB
-bmA
-dfk
-dfx
-bqd
-brD
-bsU
-bza
-buI
-bqe
-bxT
-bzc
-bBo
-bCr
-brE
-bEK
-bFX
-bHh
-bIz
-bKd
-bLJ
-bEK
-dhy
-bPG
-bQN
-bRT
-bTa
-bgs
-bbq
-bbo
-baW
-baW
-baW
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+cFS
+bgx
+bhq
+bid
+cOX
+bjM
+bkJ
+cPE
+cPQ
+boe
+bpA
+bqR
+bwI
+bsB
+bof
+bvF
+bwK
+byU
+bzW
+bpB
+bCj
+bDr
+bEy
+bFQ
+bHt
+bIX
+bCj
+cQY
+bMN
+bNT
+bOY
+bQe
+beJ
+aZP
+aZN
+aZv
+aZv
+aZv
aaa
aaa
aaa
@@ -155124,43 +141462,43 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cfJ
-chc
-cjW
-cxT
-clp
-clW
-cmC
-cmC
-cnV
-cmC
-cnV
-cpt
-cqY
-csj
-csj
-clW
-cuH
-csC
-cwG
-cxr
-cfI
-cfI
-cfI
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+ccH
+cdU
+cgx
+ctU
+chO
+ciu
+ciY
+ciY
+ckr
+ciY
+ckr
+clL
+cnm
+cou
+cou
+ciu
+cqM
+coK
+csJ
+ctt
+ccG
+ccG
+ccG
aaa
aaa
aaa
@@ -155253,54 +141591,54 @@ aaa
aaa
aaa
aaa
-cJr
-akf
-akT
-aly
-amg
-ajn
-anM
-aoS
-cYC
-adZ
-arC
-asz
-atD
-auF
-avM
-atC
-axO
-atC
-aAI
-arC
-adZ
-afS
-afV
-aiS
-dad
-dan
-day
-aCr
-aBA
-cYl
-dam
-aLm
-aRa
-aRK
-aSY
-aLm
-aUK
-aVf
-aVH
-aLm
-aqH
-anC
-aXb
-aXb
-aXa
-aXb
-aYi
-alx
+cFc
+ajM
+akz
+ald
+alL
+aiV
+anr
+aot
+cLG
+adP
+aqY
+arV
+asX
+atZ
+avg
+asW
+axh
+asW
+aAa
+aqY
+adP
+afE
+afH
+aiA
+cMs
+cMz
+cMH
+aBJ
+aAS
+cLx
+cMy
+aKq
+aPH
+aQr
+aRE
+aKq
+aTo
+aTJ
+aUl
+aKq
+aqh
+anh
+aVD
+aVD
+aVC
+aVD
+aWJ
+alc
aaa
aaa
aaa
@@ -155316,53 +141654,53 @@ aaa
aaa
aaa
aaa
-cKF
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-cKp
-big
-bja
-bjP
-deo
-blC
-dpb
-bnC
-deY
-dfC
-dfK
-cMq
-buH
-bHn
-bqe
-buH
-bAn
-bBp
-bCr
-bDM
-bEK
-bFY
-bHk
-bIA
-bKe
-bLK
-bEK
-bNY
-bNZ
-dhW
-dhy
-diz
-bgr
-bbq
-bbo
-baW
-baW
-baW
+cGc
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+cFS
+bgx
+bhq
+bid
+cOX
+bjN
+cUP
+blJ
+cPu
+cPU
+cQa
+cHg
+bsA
+bEE
+bof
+bsA
+bxU
+byV
+bzW
+bBm
+bCj
+bDs
+bEB
+bFR
+bHu
+bIY
+bCj
+bLh
+bLi
+cRn
+cQY
+cRD
+beI
+aZP
+aZN
+aZv
+aZv
+aZv
aaa
aaa
aaa
@@ -155381,43 +141719,43 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cgi
-cgi
-cjV
-cjV
-cgu
-cgu
-cfJ
-cfJ
-cgi
-cgi
-cfJ
-chc
-cjU
-cjU
-cjX
-cxT
-cln
-clW
-cmC
-cnk
-cnW
-cnW
-cnW
-cqi
-cqZ
-csk
-csT
-ctS
-cuJ
-cvD
-cwH
-cxr
-cfI
-cfI
-cfI
+ccH
+ccH
+cde
+cde
+cgw
+cgw
+cdq
+cdq
+ccH
+ccH
+cde
+cde
+ccH
+cdU
+cgv
+cgv
+cgy
+ctU
+chM
+ciu
+ciY
+cjG
+cks
+cks
+cks
+cmz
+cnn
+cov
+cpb
+cpY
+cqO
+crG
+csK
+ctt
+ccG
+ccG
+ccG
aaa
aaa
aaa
@@ -155510,54 +141848,54 @@ aaa
aaa
aaa
aaa
-ajl
-akg
-akU
-aly
-amh
-ajn
-anN
-aoT
-adZ
-adZ
-arC
-asx
-atC
-auG
-avN
-auG
-axP
-axO
-aAI
-arC
-adZ
-adZ
-cZM
-cZM
-cZM
-cZM
-cZM
-cZM
-anC
-cYl
-afS
-aPl
-aRb
-aRR
-aSZ
-aTF
-aUL
-aLm
-aLm
-aLm
-aoR
-apu
-afS
-alx
-alx
-alx
-alx
-alx
+aiT
+ajN
+akA
+ald
+alM
+aiV
+ans
+aou
+adP
+adP
+aqY
+arT
+asW
+aua
+avh
+aua
+axi
+axh
+aAa
+aqY
+adP
+adP
+cMh
+cMh
+cMh
+cMh
+cMh
+cMh
+anh
+cLx
+afE
+aOc
+aPI
+aQy
+aRF
+aSk
+aTp
+aKq
+aKq
+aKq
+aos
+aoU
+afE
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -155574,54 +141912,54 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-baS
-baS
-baS
-baS
-baS
-baS
+aZP
+aZP
+aZP
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+bgx
+bhq
big
-bja
-bjS
-dew
-bkD
-bkD
-bkD
-bkD
-bqe
-brE
-bsT
-buH
-bHn
-cWw
-bzd
-bqe
-bqe
-bCs
-bDN
-bEK
-bFZ
-bEM
-bIB
-bKf
-bEK
-bEK
-cKY
-bNZ
-bNZ
-dhy
-diz
-bgp
-bbq
-bbq
-bbo
-bbo
-baW
-baW
-baW
+cOZ
+biQ
+biQ
+biQ
+biQ
+bof
+bpB
+bqQ
+bsA
+bEE
+cKU
+bwL
+bof
+bof
+bzX
+bBn
+bCj
+bDt
+bCl
+bFS
+bHv
+bCj
+bCj
+cGm
+bLi
+bLi
+cQY
+cRD
+beG
+aZP
+aZP
+aZN
+aZN
+aZv
+aZv
+aZv
aaa
aaa
aaa
@@ -155638,42 +141976,42 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cgi
-cgi
-cjV
-cgC
-cgK
-cjV
-chc
-cjU
-cgu
-cgu
-chc
-chc
-ciS
-cjw
-cjw
-cxT
-dkU
-clW
-cmE
-cnl
-cmC
-cnV
-cmC
-cmC
-cmC
-csl
-cmC
-clW
-cLy
-csC
-cwG
-cxr
-cfI
-cfI
+ccH
+ccH
+cde
+cde
+cgw
+cdx
+cdF
+cgw
+cdU
+cgv
+cdq
+cdq
+cdU
+cdU
+cfx
+cfY
+cfY
+ctU
+cSt
+ciu
+cja
+cjH
+ciY
+ckr
+ciY
+ciY
+ciY
+cow
+ciY
+ciu
+cGG
+coK
+csJ
+ctt
+ccG
+ccG
aaa
aaa
aaa
@@ -155767,54 +142105,54 @@ aaa
aaa
aaa
aaa
-ajl
-akf
-akU
-alz
-ami
-ajn
-ajn
-anV
-anV
-anV
-arC
-arC
-arC
-auH
-avO
-auH
-arC
-arC
-aAJ
-arC
-anV
-anV
-cZM
-cZV
-daf
-dap
-daA
-cZM
-amI
-ahr
-aOo
-aPv
-aRc
-aRS
-aTa
-aLm
-aLm
-aLm
-adZ
-adZ
-anC
-afq
-aLm
-aLm
-aLm
-aLm
-aLm
-alx
+aiT
+ajM
+akA
+ale
+alN
+aiV
+aiV
+any
+any
+any
+aqY
+aqY
+aqY
+aub
+avi
+aub
+aqY
+aqY
+aAb
+aqY
+any
+any
+cMh
+cMn
+cMt
+cMA
+cMI
+cMh
+amn
+ahd
+aNh
+aOj
+aPJ
+aQz
+aRG
+aKq
+aKq
+aKq
+adP
+adP
+anh
+afc
+aKq
+aKq
+aKq
+aKq
+aKq
+alc
aaa
aaa
aaa
@@ -155831,54 +142169,54 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbo
-baS
+aZP
+aZP
+aZN
+aZr
+bcd
+bcR
bdG
-bew
-bfl
-bgl
-baS
-big
-bja
-bjP
-bkD
-blD
-bmC
-bnD
-boY
-bqf
-brF
-bsV
-buJ
-dfP
-dfQ
-dfQ
-dfQ
-bBq
-bCt
-bDO
-bEO
-bGa
-bHl
-bIC
-bKg
-bLL
-bMS
-bLP
-bPH
-bNZ
-dik
-diz
-bgp
-bbq
-bbq
-bbo
-bbo
-bbo
-baW
-baW
+beC
+aZr
+bgx
+bhq
+bid
+biQ
+bjO
+bkK
+blK
+bnb
+bog
+bpC
+bqS
+bsC
+cQb
+cQc
+cQc
+cQc
+byW
+bzY
+bBo
+bCn
+bDu
+bEC
+bFT
+bHw
+bIZ
+bKe
+bJd
+bMO
+bLi
+cRx
+cRD
+beG
+aZP
+aZP
+aZN
+aZN
+aZN
+aZv
+aZv
aaa
aaa
aaa
@@ -155894,43 +142232,43 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgu
-cgD
-cxT
-cgL
-cgL
-chb
-cgL
-chc
-cgL
-cxT
-ciS
-cjw
-cjV
-dkP
-clj
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-clW
-cuK
-csC
-cwG
-cxr
-cfI
-cfI
+ccH
+ccH
+ccH
+cde
+cde
+cdq
+cdy
+ctU
+cdG
+cdG
+cdT
+cdG
+cdU
+cdG
+ctU
+cfx
+cfY
+cgw
+cSp
+chI
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+ciu
+cqP
+coK
+csJ
+ctt
+ccG
+ccG
aaa
aaa
aaa
@@ -156024,55 +142362,55 @@ aaa
aaa
aaa
aaa
-ajl
-akf
-akU
-alA
-amh
-anf
-ajn
+aiT
+ajM
+akA
+alf
+alM
+amK
+aiV
+aov
+cLH
+aqo
+aqZ
+arW
+asY
+auc
+avj
+auc
+axj
+ayL
+aAc
+aBo
+aCm
+aDC
+cMi
+cMo
+cMu
+cMB
+cMJ
+cMh
+cMQ
+aTA
+auB
+akn
+aPK
+aQk
+aRH
+aKq
+adP
+adP
+adP
+aUL
aoU
-cYD
-aqO
-arD
-asA
-atE
-auI
-avP
-auI
-axQ
-azs
-aAK
-aBW
-aCU
-aEl
-cZO
-cZW
-dag
-daq
-daB
-cZM
-daQ
-aUW
-avh
-akH
-aRd
-aRD
-aTb
-aLm
-adZ
-adZ
-adZ
-aWh
-apu
-aez
-aLm
-aMo
-aMn
-aYc
-aLm
-alx
-alx
+aep
+aKq
+aLo
+aLn
+aWD
+aKq
+alc
+alc
aaa
aaa
aaa
@@ -156089,53 +142427,53 @@ aaa
aaa
aaa
aaa
-bbq
-bbo
-baS
-bdH
-bex
-bex
-bgm
-bgY
-bih
-bjc
-bjR
-bkD
-blE
-bmD
-bnE
-boZ
-bqg
-brG
-bsW
-buH
-buH
-buH
-buH
-buH
-bxQ
-bCu
-bDP
-bDP
-bGb
-bHm
-bID
-bKh
-bLM
-bMT
-bOb
-bPI
-bNZ
-dhy
-bTc
-bgr
-bbo
-bbq
-bbq
-bbo
-bbo
-baW
-baW
+aZP
+aZN
+aZr
+bce
+bcS
+bcS
+beD
+bfp
+bgy
+bhs
+bif
+biQ
+bjP
+bkL
+blL
+bnc
+boh
+bpD
+bqT
+bsA
+bsA
+bsA
+bsA
+bsA
+bvD
+bzZ
+bBp
+bBp
+bDv
+bED
+bFU
+bHx
+bJa
+bKf
+bLj
+bMP
+bLi
+cQY
+bQg
+beI
+aZN
+aZP
+aZP
+aZN
+aZN
+aZv
+aZv
aaa
aaa
aaa
@@ -156151,43 +142489,43 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgu
-cgu
-cgM
-dkG
-cgL
-cgL
-cxT
-cgL
-cgL
-cit
-chc
-chc
-cjU
-dkQ
-clj
-cjU
-cjV
-chc
-cjU
-cjU
-chc
-chc
-chc
-chc
-chc
-cul
-cuF
-csC
-cwG
-cxr
-cfI
-cfI
+ccH
+ccH
+ccH
+cde
+cde
+cdq
+cdq
+cdH
+cSh
+cdG
+cdG
+ctU
+cdG
+cdG
+ceY
+cdU
+cdU
+cgv
+cSq
+chI
+cgv
+cgw
+cdU
+cgv
+cgv
+cdU
+cdU
+cdU
+cdU
+cdU
+cqq
+cqK
+coK
+csJ
+ctt
+ccG
+ccG
aaa
aaa
aaa
@@ -156281,118 +142619,118 @@ aaa
aaa
aaa
aaa
-cJs
-akf
-akU
-aly
-amj
-ang
-anO
-aoV
-apQ
-apQ
-arE
-arE
-cLT
-arE
-avQ
-apQ
-apQ
-azt
-aAL
-aBX
-cZA
-aEn
-cZP
-cZX
-dah
-dar
-daC
-cZM
-afV
-aez
-afV
-aLm
-aRe
-aRT
-aTc
-aPv
-aUM
-ahr
-ahr
-apu
-afV
-aez
-aLm
-aNp
-aNp
-aYd
-aLm
-aLm
-aLm
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cFd
+ajM
+akA
+ald
+alO
+amL
+ant
+aow
+apq
+apq
+ara
+ara
+cGU
+ara
+avk
+apq
+apq
+ayM
+aAd
+aBp
+cLZ
+aDD
+cMj
+cMp
+cMv
+cMC
+cMK
+cMh
+afH
+aep
+afH
+aKq
+aPL
+aQA
+aRI
+aOj
+aTq
+ahd
+ahd
+aoU
+afH
+aep
+aKq
+aMl
+aMl
+aWE
+aKq
+aKq
+aKq
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-baS
-baS
-baS
-bdI
-bey
-bey
-bgn
-baS
-big
-bja
-bjP
-bkD
-blF
-bmE
-bnF
-bpa
-bqh
-brH
-bsX
-brQ
-brQ
-brQ
-bze
-brQ
-brQ
-bCv
-buH
-buH
-buH
-bHn
-buH
-bKi
-bLN
-bMU
-bOc
-bPJ
-bNZ
-dim
-diz
-bgp
-bbq
-bbq
-bbq
-bbo
-bbo
-bbo
-bbo
+aZr
+aZr
+aZr
+bcf
+bcT
+bcT
+beE
+aZr
+bgx
+bhq
+bid
+biQ
+bjQ
+bkM
+blM
+bnd
+boi
+bpE
+bqU
+bpN
+bpN
+bpN
+bwM
+bpN
+bpN
+bAa
+bsA
+bsA
+bsA
+bEE
+bsA
+bHy
+bJb
+bKg
+bLk
+bMQ
+bLi
+cRy
+cRD
+beG
+aZP
+aZP
+aZP
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -156408,42 +142746,42 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgu
-cgu
-cgu
-chc
-chc
-cgu
-cgu
-chc
-cjV
-chc
-chc
-chc
-chc
-cjU
-clq
-cll
-cjU
-dle
-dlk
-cjU
-dlv
-cjU
-cjV
-cjV
-csU
-cqD
-cuG
-csC
-cwG
-cxr
-cfI
+ccH
+ccH
+ccH
+cde
+cde
+cdq
+cdq
+cdq
+cdU
+cdU
+cdq
+cdq
+cdU
+cgw
+cdU
+cdU
+cdU
+cdU
+cgv
+chP
+chK
+cgv
+cSy
+cSB
+cgv
+cSK
+cgv
+cgw
+cgw
+cpc
+cmR
+cqL
+coK
+csJ
+ctt
+ccG
aaa
aaa
aaa
@@ -156538,118 +142876,118 @@ aaa
aaa
aaa
aaa
-ajl
-akh
-akV
-alB
-amk
-anh
-anP
-aoW
-aoW
-aoW
-arF
-arF
-aoW
-arF
-avR
-aoU
-aoU
-aoU
-aoU
-aBX
-aoU
-aEn
-cZQ
-cZX
-dai
-das
-daD
-anV
-anV
-anV
-anV
-anV
-aRd
-aRD
-aTa
-akH
-alr
-aqH
-aoy
-afK
-afV
-aez
-aLm
-aXw
-aXO
-aXO
-aYk
-aYs
-aYv
-aYw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-arw
-bar
-baR
-baR
-bbR
-bcv
-bbR
-bdJ
-ber
-ber
-bgo
-baS
-bii
-bjd
-bjT
-bkD
-bkD
-bkD
-bkD
-bkD
-bqi
-brI
-bsY
-bqe
-bwd
-bwd
-bqe
-bwd
-bqe
-bwd
-bwd
-bqe
-bGc
-bHo
-bIE
-bIE
-bIE
-bMV
-bOc
-bPK
-bNZ
-bQM
-bTd
-bgs
-bbq
-bbq
-bbq
-bbo
-bbo
-bbo
-bbp
+aiT
+ajO
+akB
+alg
+alP
+amM
+anu
+aox
+aox
+aox
+arb
+arb
+aox
+arb
+avl
+aov
+aov
+aov
+aov
+aBp
+aov
+aDD
+cMk
+cMp
+cMw
+cMD
+cML
+any
+any
+any
+any
+any
+aPK
+aQk
+aRG
+akn
+akW
+aqh
+anZ
+afw
+afH
+aep
+aKq
+aVX
+aWp
+aWp
+aWL
+aWT
+aWW
+aWX
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aYQ
+aZq
+aZq
+baq
+baU
+baq
+bcg
+bcM
+bcM
+beF
+aZr
+bgz
+bht
+bih
+biQ
+biQ
+biQ
+biQ
+biQ
+boj
+bpF
+bqV
+bof
+btS
+btS
+bof
+btS
+bof
+btS
+btS
+bof
+bDw
+bEF
+bFV
+bFV
+bFV
+bKh
+bLk
+bMR
+bLi
+bNS
+bQh
+beJ
+aZP
+aZP
+aZP
+aZN
+aZN
+aZN
+aZO
abC
abC
abC
@@ -156665,42 +143003,42 @@ abC
abC
abC
abC
-cfK
-cfI
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
+ccI
+ccG
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cdq
+cdq
+cgv
+cfV
cgu
cgu
-cjU
-cjt
-cjT
-cjT
-cnm
-cjT
-dlr
-cjT
-dkJ
-cng
-csm
-csV
-coJ
-cuF
-cvO
-cwH
-cxr
-cfI
+cjI
+cgu
+cSG
+cgu
+cSk
+cjC
+cox
+cpd
+cle
+cqK
+crR
+csK
+ctt
+ccG
aaa
aaa
aaa
@@ -156727,11 +143065,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -156795,118 +143133,118 @@ aaa
aaa
aaa
aaa
-ajm
-aki
-akW
-alC
-alD
-ani
-ajn
-aoU
-aoU
-aqP
-arG
-asB
-atF
-asG
-avS
-axc
-aoW
-aoW
-aoW
-aBY
-azy
-cZI
-cZR
-cZZ
-daj
-dat
-daE
-anV
-aMt
-aNu
-aOC
-aPx
-aRf
-aRU
-aTa
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aXx
-cKe
-aLm
-aLm
-aLm
-aLm
-aYx
-aYz
-aYz
-aYz
-dtr
-aYz
-aYz
-aYz
-aYz
-dtr
-aYz
-aYz
-aYz
-bas
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-baS
-cKp
-baS
-bij
-bja
-bjU
-bkD
-blG
-bmF
-bnG
-bpb
-bqj
-brJ
-bsZ
-cKK
-bwe
+aiU
+ajP
+akC
+alh
+ali
+amN
+aiV
+aov
+aov
+aqp
+arc
+arX
+asZ
+asc
+avm
+awv
+aox
+aox
+aox
+aBq
+ayQ
+cMg
+cMl
+cMq
+cMx
+cME
+cMM
+any
+aLt
+aMq
+aNv
+aOk
+aPM
+aQB
+aRG
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aVY
+cFI
+aKq
+aKq
+aKq
+aKq
+aWY
+aXa
+aXa
+aXa
+cXe
+aXa
+aXa
+aXa
+aXa
+cXe
+aXa
+aXa
+aXa
+aYR
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+aZr
+cFS
+aZr
+bgA
+bhq
+bii
+biQ
+bjR
+bkN
+blN
+bne
+bok
+bpG
+bqW
+cGd
+btT
+bvG
+bwN
bxV
-bzf
-bAo
-bBr
-bxV
-bDQ
-bwc
-buH
-bHn
-bIE
-bKj
-bLO
-cMD
-bOd
-bPL
-bNZ
-dhy
-diz
-bgp
-bgp
-bbq
-bbq
-bbo
-bbo
-bbo
-bbo
+byX
+bvG
+bBq
+btR
+bsA
+bEE
+bFV
+bHz
+bJc
+cHq
+bLl
+bMS
+bLi
+cQY
+cRD
+beG
+beG
+aZP
+aZP
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -156922,57 +143260,57 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgu
-cgu
-cjU
-clr
-ckz
-cgL
-cln
-chb
-cgL
-cxT
-dkG
-cIc
-cHM
-dly
-coJ
-cuF
-csC
-cwI
-cqD
-cfI
-cfI
+ccG
+ccG
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+cde
+cde
+cde
+cde
+cde
+cdq
+cdq
+cgv
+chQ
+cgZ
+cdG
+chM
+cdT
+cdG
+ctU
+cSh
+cDT
+cDD
+cSL
+cle
+cqK
+coK
+csL
+cmR
+ccG
+ccG
aaa
aaa
-cqD
-cza
-cza
-cqD
+cmR
+cva
+cva
+cmR
aaa
aaa
aaa
aaa
-cqD
-cza
-cza
-cqD
+cmR
+cva
+cva
+cmR
aaa
aaa
aaa
@@ -156984,11 +143322,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -157052,118 +143390,118 @@ aaa
aaa
aaa
aaa
-ajn
-akj
-ajn
-alD
-aml
-anj
-ajn
-aoU
-aoU
-aoY
-arH
-asC
-anV
-auJ
-avT
-aoY
-aoU
-aoU
-aAM
-anV
-aCW
-aEn
-anV
-anV
-anV
-anV
-anV
-anV
-aMu
-aoU
-aoU
-aBX
-aRg
-aRD
-aTd
-aTG
-aUN
-aTG
-aTG
-aWi
-dBH
-aWR
-dbP
-aXy
-aTG
-aTG
-aYl
-aYt
-cPO
-cPT
-cPT
-cPT
-cPT
-dts
-aYU
-aYU
-aYU
-aYU
-dtV
-aYU
-aYU
-aYU
-aYU
-cQC
-bbr
-cQJ
-bcw
-cQJ
-cQJ
-cQJ
-bfm
-cQJ
-cQJ
-bik
-dul
+aiV
+ajQ
+aiV
+ali
+alQ
+amO
+aiV
+aov
+aov
+aoz
+ard
+arY
+any
+aud
+avn
+aoz
+aov
+aov
+aAe
+any
+aCn
+aDD
+any
+any
+any
+any
+any
+any
+aLu
+aov
+aov
+aBp
+aPN
+aQk
+aRJ
+aSl
+aTr
+aSl
+aSl
+aUM
+cYY
+aVt
+cNd
+aVZ
+aSl
+aSl
+aWM
+aWU
+cIY
+cIZ
+cIZ
+cIZ
+cIZ
+cXf
+aXt
+aXt
+aXt
+aXt
+cXn
+aXt
+aXt
+aXt
+aXt
+cJe
+aZQ
+cJj
+baV
+cJj
+cJj
+cJj
+bdH
+cJj
+cJj
+bgB
+cXp
+bid
+biQ
bjP
-bkD
-blE
-bmD
-bnE
-bpc
-bqg
-brG
-bta
-buK
-bwf
+bkL
+blL
+bnf
+boh
+bpD
+bqX
+bsD
+btU
+bvH
+bwO
bxW
-bzg
-bAp
-bBs
-bCw
-bDR
-bEP
-bDK
-bHn
-bIE
-bKk
-bLP
-bLP
-bOc
-bPM
-bNZ
-dhy
-bTe
-bMb
-bgs
-bbq
-bbq
-bbo
-bbo
-bbq
-bbo
+byY
+bAb
+bBr
+bCo
+bBk
+bEE
+bFV
+bHA
+bJd
+bJd
+bLk
+bMT
+bLi
+cQY
+bQi
+bJo
+beJ
+aZP
+aZP
+aZN
+aZN
+aZP
+aZN
aaa
aaa
aaa
@@ -157179,57 +143517,57 @@ aaa
aaa
aaa
aaa
-cfI
-cfI
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-cfJ
-cfJ
-cfJ
-cgu
-cgu
-cgu
-chc
-cjU
-dlc
-cnn
-ckz
-chc
-cjV
-chc
-cjU
-chc
-chX
-chX
-cNr
-cvP
-cwJ
-cqD
-cfI
-cfI
-cfI
+ccG
+ccG
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ccH
+ccH
+ccH
+cdq
+cdq
+cdq
+cdU
+cgv
+cSx
+cjJ
+cgZ
+cdU
+cgw
+cdU
+cgv
+cdU
+ceF
+ceF
+cHG
+crS
+csM
+cmR
+ccG
+ccG
+ccG
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
aaa
-cxr
-czb
-czb
-cxr
+ctt
+cvb
+cvb
+ctt
aaa
aaa
aaa
@@ -157241,11 +143579,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -157311,116 +143649,116 @@ aaa
aaa
aaa
aaa
-ajn
-ajn
-ajn
-ajn
-ajn
-aoU
-aoU
-aoY
-arI
-arM
-aoY
-arM
-arI
-aoY
-axR
-azv
-aAN
-anV
-aCX
-aEo
-aBW
-aHf
-aIg
-aJp
-aKq
-aLs
-aMv
-aoU
-aoU
-aBX
-aRg
-aRV
-aTe
-aRD
-aUO
-aRD
-aRD
-aWj
-aRD
-aTS
-aRD
-aRD
-aRD
-aRD
-aYm
-aRD
-aRP
-dtd
-dtd
-dtd
-dtd
-dtd
-dtd
-dBn
-dtd
-dtd
-dtd
-dtd
-dtd
-dtd
-dtd
-baU
-bbs
-bbT
-bbs
-bbs
-bbs
-bbs
-bfn
-bbs
-bbs
-bil
-cKz
-bjP
-bkD
-blF
-bmE
-bnF
-bpd
-bqh
-brH
-btb
-buL
-bwg
-bxX
-bzh
-bzh
-bzh
-bCx
-bDS
-bEQ
-bGd
-bHp
-bIE
-bKl
-bLP
-bLP
-bOc
-bPN
-bNZ
-bRU
-bTf
-bUe
-bgr
-bbq
-bbq
-bbo
-bbq
-bbq
-bbq
+aiV
+aiV
+aiV
+aiV
+aiV
+aov
+aov
+aoz
+are
+ari
+aoz
+ari
+are
+aoz
+axk
+ayN
+aAf
+any
+aCo
+aDE
+aBo
+aGt
+aHr
+aIy
+aJx
+aKw
+aLv
+aov
+aov
+aBp
+aPN
+aQC
+aRK
+aQk
+aTs
+aQk
+aQk
+aUN
+aQk
+aSw
+aQk
+aQk
+aQk
+aQk
+aWN
+aQk
+aQw
+cXa
+cXa
+cXa
+cXa
+cXa
+cXa
+cYO
+cXa
+cXa
+cXa
+cXa
+cXa
+cXa
+cXa
+aZt
+aZR
+bas
+aZR
+aZR
+aZR
+aZR
+bdI
+aZR
+aZR
+bgC
+cFZ
+bid
+biQ
+bjQ
+bkM
+blM
+bng
+boi
+bpE
+bqY
+bsE
+btV
+bvI
+bwP
+bwP
+bwP
+bAc
+bBs
+bCp
+bDx
+bEG
+bFV
+bHB
+bJd
+bJd
+bLk
+bMU
+bLi
+bOZ
+bQj
+bRh
+beI
+aZP
+aZP
+aZN
+aZP
+aZP
+aZP
aaa
aaa
aaa
@@ -157436,57 +143774,57 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chX
-chX
-chX
-chX
-chX
-chX
-chX
-chY
-chX
-chX
-chX
-chX
-chX
-chX
-chY
-chX
-chX
-ctU
-cuL
-cvQ
-cwK
-cLB
-cxr
-cxr
-cxr
-cxr
-cqD
-czc
-czc
-cqD
-cxr
-cxr
-cxr
-cxr
-cqD
-czc
-czc
-cqD
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ceF
+ceF
+ceF
+ceF
+ceF
+ceF
+ceF
+ceG
+ceF
+ceF
+ceF
+ceF
+ceF
+ceF
+ceG
+ceF
+ceF
+cpZ
+cqQ
+crT
+csN
+cGJ
+ctt
+ctt
+ctt
+ctt
+cmR
+cvc
+cvc
+cmR
+ctt
+ctt
+ctt
+ctt
+cmR
+cvc
+cvc
+cmR
aaa
aaa
aaa
@@ -157498,11 +143836,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -157569,115 +143907,115 @@ aaa
aaa
aaa
aaa
-akR
-akR
-akR
-anV
-aoY
-aoY
-aoY
-arH
-asD
-aoY
-auK
-avT
-aoY
-aoY
-aoY
-aoY
-anV
-aCY
-aEp
-aFJ
-aHg
-aIh
-aoU
-aEn
-aoY
-aMw
-aoU
-aoU
+akx
+akx
+akx
+any
+aoz
+aoz
+aoz
+ard
+arZ
+aoz
+aue
+avn
+aoz
+aoz
+aoz
+aoz
+any
+aCp
+aDF
+aEY
+aGu
+aHs
+aov
+aDD
+aoz
+aLw
+aov
+aov
+aOl
+aPO
+aQD
+aRL
+aSm
+aTt
+aTQ
+aUm
+aUO
+aVi
+aVu
+aVF
aPy
-aRh
-aRW
-aTf
-aTH
-aUP
-aVm
-aVI
-aWk
-aWE
-aWS
-aXd
-aQN
-aXP
-aQN
-aQN
-aQN
-aQR
-dtd
-dtd
-dtd
-dtd
-dtu
-dtd
-dtd
-dtd
-dtd
-dtu
-dtd
-dtd
-dtd
-dtd
-baV
-bbt
-bbU
-bcx
-bdd
-bdd
-bez
-bfo
-bdd
-bdd
-bim
-bcx
-bjV
-bjW
-bjW
-bjW
-bjW
-bjW
-bjW
-brK
-btc
-bqe
-bwh
-bxY
-bzi
-bAq
-bBt
-bwh
-bxY
-bqe
-bGe
-bHn
-bIE
-bKm
-bLP
-bMX
-bOe
-bLQ
-bQO
-bRV
-bTg
-bIO
-bgr
-bbq
-bbq
-bbo
-bbq
-bbq
-bbq
+aWq
+aPy
+aPy
+aPy
+aPC
+cXa
+cXa
+cXa
+cXa
+cXg
+cXa
+cXa
+cXa
+cXa
+cXg
+cXa
+cXa
+cXa
+cXa
+aZu
+aZS
+bat
+baW
+bbB
+bbB
+bcU
+bdJ
+bbB
+bbB
+bgD
+baW
+bij
+bik
+bik
+bik
+bik
+bik
+bik
+bpH
+bqZ
+bof
+btW
+bvJ
+bwQ
+bxX
+byZ
+btW
+bvJ
+bof
+bDy
+bEE
+bFV
+bHC
+bJd
+bKi
+bLm
+bJe
+bNU
+bPa
+bQk
+bGf
+beI
+aZP
+aZP
+aZN
+aZP
+aZP
+aZP
aaa
aaa
aaa
@@ -157693,57 +144031,57 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chY
-ciu
-ciT
-ciT
-cjY
-ciA
-cls
-cNm
-cmG
-clX
-cnY
-cLq
-clX
-cNm
-clX
-csn
-clu
-clu
-cuM
-csC
-cwL
-cxt
-cxX
-cxX
-cxX
-cxX
-cAS
-cxX
-cxX
-cDo
-cEb
-cxU
-cxU
-cxU
-cxU
-cFS
-cGk
-cxr
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ceG
+ceZ
+cfy
+cfy
+cgz
+cff
+chR
+cHB
+cjc
+civ
+cku
+cGB
+civ
+cHB
+civ
+coy
+chT
+chT
+cqR
+coK
+csO
+ctv
+ctY
+ctY
+ctY
+ctY
+cwS
+ctY
+ctY
+czm
+czY
+ctV
+ctV
+ctV
+ctV
+cBL
+cCd
+ctt
aaa
aaa
aaa
@@ -157755,11 +144093,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -157829,113 +144167,113 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-aoZ
-aoZ
-arJ
-asE
-aoZ
-auL
-avU
-aoZ
-aoZ
-aoZ
+aqV
+aoA
+aoA
+aoA
+arf
+asa
+aoA
+auf
+avo
+aoA
+aoA
+aoA
aaa
-anV
-aCZ
-aEq
-aFK
-aHh
-aoU
-aoU
-aKr
-aLt
-aMx
-aoU
-aoU
-aPy
-aPy
-aRX
-aTg
-aTI
-anV
-aLm
-aLm
-aWl
-aPJ
-aPl
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aLm
-aYy
-aYy
-aYy
-aYy
-dtv
-aYy
-aYy
-aYy
-aYy
-dtv
-aYy
-aYy
-aYy
-aYy
-baS
-baS
-baS
-baS
-baS
-bdK
-baS
-baS
-baS
-bgZ
-bin
-baS
-bjW
-bkE
-blH
-blI
-blI
-bpe
-bjW
-brL
-bsY
-bqe
-bwd
-bwd
-bqe
-bwd
-bqe
-bwd
-bwd
-bqe
-bGf
-bHn
-bIF
-bKn
-cKW
-bMY
-bOf
-bPO
-bNZ
-bgq
-bTh
-bUf
-bgs
-bbo
-bbo
-bbo
-bbq
-bbq
-bbq
-bbo
+any
+aCq
+aDG
+aEZ
+aGv
+aov
+aov
+aJy
+aKx
+aLx
+aov
+aov
+aOl
+aOl
+aQE
+aRM
+aSn
+any
+aKq
+aKq
+aUP
+aOv
+aOc
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aKq
+aWZ
+aWZ
+aWZ
+aWZ
+cXh
+aWZ
+aWZ
+aWZ
+aWZ
+cXh
+aWZ
+aWZ
+aWZ
+aWZ
+aZr
+aZr
+aZr
+aZr
+aZr
+bch
+aZr
+aZr
+aZr
+bfq
+bgE
+aZr
+bik
+biR
+bjS
+bjT
+bjT
+bnh
+bik
+bpI
+bqV
+bof
+btS
+btS
+bof
+btS
+bof
+btS
+btS
+bof
+bDz
+bEE
+bFW
+bHD
+cGk
+bKj
+bLn
+bMV
+bLi
+beH
+bQl
+bRi
+beJ
+aZN
+aZN
+aZN
+aZP
+aZP
+aZP
+aZN
aaa
aaa
aaa
@@ -157950,59 +144288,59 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chX
-civ
-ciU
-cjx
-cjZ
-ckI
-clt
-cjx
-cmH
-cjx
-cjx
-cjx
-cjx
-cjx
-cjx
-cjx
-cjx
-cjx
-cuN
-cLz
-cwM
-cxq
-cxV
-cxV
-cxV
-cxV
-cAT
-cBO
-cxV
-cDi
-cEc
-cEL
-cEL
-cLI
-cFG
-cFW
-cGo
-cxr
-cfI
-cfI
+ccG
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ceF
+cfa
+cfz
+cfZ
+cgA
+chi
+chS
+cfZ
+cjd
+cfZ
+cfZ
+cfZ
+cfZ
+cfZ
+cfZ
+cfZ
+cfZ
+cfZ
+cqS
+cGH
+csP
+cts
+ctW
+ctW
+ctW
+ctW
+cwT
+cxO
+ctW
+czg
+czZ
+cAH
+cAH
+cGN
+cBz
+cBP
+cCh
+ctt
+ccG
+ccG
aaa
aaa
aaa
@@ -158012,11 +144350,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -158086,48 +144424,48 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-apR
-apR
-apR
-apR
-atG
-apR
-apR
-apR
-axS
-aoZ
-aAO
-aoY
-aDa
-aEr
-aBY
-aHi
-aoU
-aoU
-aKs
-aoY
-aMy
-aoU
-aoU
-aoU
-aoU
-aRY
-azA
-aTJ
-anV
-alx
-afV
-aWm
-dBJ
-dBK
-dbQ
-aXz
-afV
-alx
-alx
-alx
+aqV
+aoA
+apr
+apr
+apr
+apr
+ata
+apr
+apr
+apr
+axl
+aoA
+aAg
+aoz
+aCr
+aDH
+aBq
+aGw
+aov
+aov
+aJz
+aoz
+aLy
+aov
+aov
+aov
+aov
+aQF
+ayS
+aSo
+any
+alc
+afH
+aUQ
+cZa
+cZb
+cNe
+aWa
+afH
+alc
+alc
+alc
aaa
aaa
abC
@@ -158143,56 +144481,56 @@ aaa
abC
aaa
aaa
-baW
-baW
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-bgs
-bha
-bio
-bje
-bjW
-bkF
-blI
-bmG
-blI
-bpf
-bqk
-brM
-btd
-buM
-bwi
-bwi
-bzj
-bwi
-bBu
-bwi
-bDT
-bER
-bGg
-bHq
-bIE
-bKo
-cKX
-bMZ
-bOg
-bLP
-bNZ
-bgq
-bTi
-diK
-bgq
-bbo
-bbq
-bbq
-bbq
-bbo
-bbo
-baW
+aZv
+aZv
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+beJ
+bfr
+bgF
+bhu
+bik
+biS
+bjT
+bkO
+bjT
+bni
+bol
+bpJ
+bra
+bsF
+btX
+btX
+bwR
+btX
+bza
+btX
+bBt
+bCq
+bDA
+bEH
+bFV
+bHE
+cGl
+bKk
+bLo
+bJd
+bLi
+beH
+bQm
+cRE
+beH
+aZN
+aZP
+aZP
+aZP
+aZN
+aZN
+aZv
aaa
aaa
aaa
@@ -158207,73 +144545,73 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chX
-civ
-ciV
-ciX
-cka
-chX
-clu
-ciX
-ciV
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ckb
-clv
-cum
-cum
-cwN
-cul
-cqD
-cqD
-cza
-cqD
-cqD
-cqD
-cqD
-cqD
-cza
-cqD
-cqD
-cqD
-cul
-cFX
-cGp
-cqD
-cfJ
-cfI
-cfI
-cfI
+ccG
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ceF
+cfa
+cfA
+cfC
+cgB
+ceF
+chT
+cfC
+cfA
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cgC
+chU
+cqr
+cqr
+csQ
+cqq
+cmR
+cmR
+cva
+cmR
+cmR
+cmR
+cmR
+cmR
+cva
+cmR
+cmR
+cmR
+cqq
+cBQ
+cCi
+cmR
+ccH
+ccG
+ccG
+ccG
aaa
-cfJ
+ccH
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -158343,48 +144681,48 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-azw
-aAP
-aoY
-aCW
-aEs
-anV
-aHj
-aIi
-azy
-aKt
-aBY
-aMz
-aoW
-aoW
-aoW
-aoW
-aRZ
-cOC
-aTJ
-anV
-alx
-afV
-aWn
-aME
-akp
-auf
-aXA
-afV
-alx
-alx
-alx
+aqV
+aoA
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+ayO
+aAh
+aoz
+aCn
+aDI
+any
+aGx
+aHt
+ayQ
+aJA
+aBq
+aLz
+aox
+aox
+aox
+aox
+aQG
+cII
+aSo
+any
+alc
+afH
+aUR
+aLE
+ajW
+atz
+aWb
+afH
+alc
+alc
+alc
aaa
aaa
abC
@@ -158400,56 +144738,56 @@ aaa
abC
aaa
aaa
-baW
-baW
-baW
-bbo
-bbo
-bbo
-bbq
-bbq
-bgr
-bhc
-bip
-btq
-bjW
-bkG
-blJ
-bmH
-bnH
-bpg
-bql
-brN
-bsW
-brE
-buH
-buH
-buH
-buH
-buH
-buH
-bDU
-bES
-bDI
-buH
-cWA
-bIE
-bIE
-bIE
-bIE
-bNZ
-bNZ
-bgq
-diz
-dhy
-bgq
-bbo
-bbq
-bbq
-bbq
-bbo
-bbo
-baW
+aZv
+aZv
+aZv
+aZN
+aZN
+aZN
+aZP
+aZP
+beI
+bft
+bgG
+brn
+bik
+biT
+bjU
+bkP
+blO
+bnj
+bom
+bpK
+bqT
+bpB
+bsA
+bsA
+bsA
+bsA
+bsA
+bsA
+bBu
+bCr
+bBi
+bsA
+cKY
+bFV
+bFV
+bFV
+bFV
+bLi
+bLi
+beH
+cRD
+cQY
+beH
+aZN
+aZP
+aZP
+aZP
+aZN
+aZN
+aZv
aaa
aaa
aaa
@@ -158464,73 +144802,73 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cgi
-cfJ
-chX
-ciw
-ciW
-ciX
-ckb
-ckJ
-clv
-clv
-clv
-clv
-clv
-clv
-clv
-cqk
-clv
-clv
-csW
-chX
-cqD
-cqD
-cqD
-cqD
-cfI
-cxr
-czb
-cxr
-cfI
-cfI
-cfI
-cxr
-czb
-cxr
-cfI
-cfJ
-cqD
-cqD
-cGq
-cqD
-cfJ
-cfJ
-cfJ
-cfI
-cfI
-cfJ
+ccG
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+cde
+cde
+cde
+cde
+cde
+ccH
+ceF
+cfb
+cfB
+cfC
+cgC
+chj
+chU
+chU
+chU
+chU
+chU
+chU
+chU
+cmA
+chU
+chU
+cpe
+ceF
+cmR
+cmR
+cmR
+cmR
+ccG
+ctt
+cvb
+ctt
+ccG
+ccG
+ccG
+ctt
+cvb
+ctt
+ccG
+ccH
+cmR
+cmR
+cCj
+cmR
+ccH
+ccH
+ccH
+ccG
+ccG
+ccH
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -158600,113 +144938,113 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-azw
-aAP
-aoY
-aCW
-aEs
-anV
-aHk
-aCW
-aJq
-aKu
-aLu
-aMA
-aoU
-aoU
-aoU
-aoU
-aRY
-apb
-aTJ
-anV
-alx
-afV
-aMg
-aBC
-aWT
-aXf
-aFe
-afV
-alx
-alx
-alx
-alx
-aXR
-aXR
-aXR
+aqV
+aoA
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+ayO
+aAh
+aoz
+aCn
+aDI
+any
+aGy
+aCn
+aIz
+aJB
+aKy
+aLA
+aov
+aov
+aov
+aov
+aQF
+aoC
+aSo
+any
+alc
+afH
+aLi
+aAU
+aVv
+aVG
+aEt
+afH
+alc
+alc
+alc
+alc
+aWs
+aWs
+aWs
aaa
-aXR
-aXR
-aXR
-aXR
+aWs
+aWs
+aWs
+aWs
aaa
-aXR
-aXR
-aXR
-aXR
-aXR
-baW
-baW
-baW
-baW
-bbo
-bbo
-bbo
-bbq
-bgs
-bhd
-bip
-ddH
-bjW
-bkH
-blI
-bmI
-cMp
-bph
-bjW
-brE
-bsX
-brN
-bwj
-bxZ
-bzk
-bAr
-bzk
-bCy
-bDV
-bET
-buH
-buH
-bGh
-bKp
-bLR
-bNa
-bOh
-bGk
-bgq
-bgq
-bTe
-bUg
-bgr
-bbo
-bbq
-bbq
-bbq
-bbo
-bbo
-baW
+aWs
+aWs
+aWs
+aWs
+aWs
+aZv
+aZv
+aZv
+aZv
+aZN
+aZN
+aZN
+aZP
+beJ
+bfu
+bgG
+cOC
+bik
+biU
+bjT
+bkQ
+cHf
+bnk
+bik
+bpB
+bqU
+bpK
+btY
+bvK
+bwS
+bxY
+bwS
+bAd
+bBv
+bCs
+bsA
+bsA
+bDB
+bHF
+bJf
+bKl
+bLp
+bDE
+beH
+beH
+bQi
+bRj
+beI
+aZN
+aZP
+aZP
+aZP
+aZN
+aZN
+aZv
aaa
aaa
aaa
@@ -158724,70 +145062,70 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cfJ
-chX
-cix
-ciX
-ciX
-ckc
-chX
-ciX
-ciX
-ciX
-ciX
-ciX
-coN
-ciX
-cql
-ciX
-ciX
-csX
-chX
-cfJ
-cfJ
-cfJ
-cfI
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+ccH
+ceF
+cfc
+cfC
+cfC
+cgD
+ceF
+cfC
+cfC
+cfC
+cfC
+cfC
+cli
+cfC
+cmB
+cfC
+cfC
+cpf
+ceF
+ccH
+ccH
+ccH
+ccG
aaa
-cqD
-czc
-cqD
-cfI
-cfI
+cmR
+cvc
+cmR
+ccG
+ccG
aaa
-cqD
-czc
-cqD
+cmR
+cvc
+cmR
aaa
-cfJ
-cfJ
-cFY
-cGr
-cFY
-cFY
-cfJ
-cfJ
-cfI
-cfJ
-cfJ
+ccH
+ccH
+cBR
+cCk
+cBR
+cBR
+ccH
+ccH
+ccG
+ccH
+ccH
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -158857,51 +145195,51 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-azw
-aAP
-aoY
-aDb
-aEt
-anV
-aHl
-aCW
-aoU
-aKv
-aoY
-aMB
-aNv
-aOD
-aPz
-aRi
-aSa
-aTh
-aTK
-anV
-alx
-afV
-afV
-afV
-akH
-afV
-afV
-afV
-alx
-alx
-alx
-alx
-alx
-alx
+aqV
+aoA
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+ayO
+aAh
+aoz
+aCs
+aDJ
+any
+aGz
+aCn
+aov
+aJC
+aoz
+aLB
+aMr
+aNw
+aOm
+aPP
+aQH
+aRN
+aSp
+any
+alc
+afH
+afH
+afH
+akn
+afH
+afH
+afH
+alc
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -158916,54 +145254,54 @@ aaa
aaa
aaa
aaa
-baW
-baW
-baW
-bbo
-bbo
-bbo
-bgq
-bhd
-bip
-ddq
-bjW
-bkI
-blK
-blI
-bnI
-bpi
-bjW
-brO
-bte
-brE
-bwk
-cWx
-bya
-bya
-bya
-bCz
-bDW
-bEU
-bGh
-bGh
-bGh
-bKq
-bLS
-bLS
-bOi
-bGk
-bgq
-bRW
-bTe
-diM
-bgs
-bbo
-bbq
-bbq
-bbq
-bbo
-bbo
-baW
+aZv
+aZv
+aZv
+aZN
+aZN
+aZN
+beH
+bfu
+bgG
+cOq
+bik
+biV
+bjV
+bjT
+blP
+bnl
+bik
+bpL
+brb
+bpB
+btZ
+cKV
+bvL
+bvL
+bvL
+bAe
+bBw
+bCt
+bDB
+bDB
+bDB
+bHG
+bJg
+bJg
+bLq
+bDE
+beH
+bPb
+bQi
+cRF
+beJ
+aZN
+aZP
+aZP
+aZP
+aZN
+aZN
+aZv
aaa
aaa
aaa
@@ -158981,70 +145319,70 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-cgi
-cgi
-cfJ
-chX
-ciy
-ciX
-cjy
-ckd
-ciA
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-ciX
-chX
-cfJ
-cfJ
-cfI
-cfI
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+ccH
+cde
+cde
+ccH
+ceF
+cfd
+cfC
+cga
+cgE
+cff
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+cfC
+ceF
+ccH
+ccH
+ccG
+ccG
aaa
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-cfJ
-cFY
-cGs
-cGC
-cFY
-cFY
-cHm
-cHm
-cqD
+ccH
+cBR
+cCl
+cCu
+cBR
+cBR
+cDd
+cDd
+cmR
aaa
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -159114,51 +145452,51 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-apR
-axS
-aoZ
-aAQ
-aoY
-aCW
-aEs
-anV
-aHm
-aCW
-aJr
-aKw
-anV
-anV
-anV
-anV
-aPA
-anV
-aSb
-avk
-anV
-anV
-alx
-and
-afV
-akp
-dBL
-afS
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alF
+aqV
+aoA
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+apr
+axl
+aoA
+aAi
+aoz
+aCn
+aDI
+any
+aGA
+aCn
+aIA
+aJD
+any
+any
+any
+any
+aOn
+any
+aQI
+auE
+any
+any
+alc
+amI
+afH
+ajW
+cZc
+afE
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alk
abC
abC
abC
@@ -159175,52 +145513,52 @@ abC
abC
abC
abC
-bbp
-bbo
-bbo
-bbo
-bgr
-dcY
-bip
-bhb
-bjW
-bkJ
-bkJ
-bkJ
-bkJ
-bkJ
-bjW
-brE
-btb
-brE
-bwl
-bya
-bzl
-bAs
-bBv
-bCA
-bDX
-bEV
-bGi
-bHr
-bIG
-bKr
-bLT
-bNb
-bOj
-bGk
-bQQ
-dhy
-diz
-dik
-bgs
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
+aZO
+aZN
+aZN
+aZN
+beI
+cOc
+bgG
+bfs
+bik
+biW
+biW
+biW
+biW
+biW
+bik
+bpB
+bqY
+bpB
+bua
+bvL
+bwT
+bxZ
+bzb
+bAf
+bBx
+bCu
+bDC
+bEI
+bFX
+bHH
+bJh
+bKm
+bLr
+bDE
+bNV
+cQY
+cRD
+cRx
+beJ
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -159238,37 +145576,37 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfJ
-chY
-ciz
-ciY
-ciY
-cke
-ciA
-ciX
-clY
-ciX
-ciX
-ciX
-coO
-ciX
-ciX
-ciX
-clY
-cLv
-chX
-cfJ
-cfJ
-cfI
+ccH
+ccH
+ccH
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+ccH
+ceG
+cfe
+cfD
+cfD
+cgF
+cff
+cfC
+ciw
+cfC
+cfC
+cfC
+clj
+cfC
+cfC
+cfC
+ciw
+cGE
+ceF
+ccH
+ccH
+ccG
aaa
aaa
aaa
@@ -159276,32 +145614,32 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-cfJ
-cFY
-cGt
-cGD
-cGP
-cGP
-cHn
-cHy
-cHm
+ccH
+cBR
+cCm
+cCv
+cCH
+cCH
+cDe
+cDp
+cDd
aaa
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -159371,51 +145709,51 @@ aaa
aaa
aaa
abC
-arw
-aoZ
-aoZ
-aoZ
-arK
-arK
-aoZ
-auM
-arK
-aoZ
-aoZ
-aoZ
+aqV
+aoA
+aoA
+aoA
+arg
+arg
+aoA
+aug
+arg
+aoA
+aoA
+aoA
aaa
-anV
-aCZ
-aEs
-anV
-aHn
-aCW
-aoU
-daF
-anV
-aez
-aez
-adZ
-afV
-akp
-aSc
-cOD
-cZB
-afS
-alx
-alx
-afS
-akp
-aXh
-afV
-and
-and
-and
-and
-alx
-alx
-alx
-alx
+any
+aCq
+aDI
+any
+aGB
+aCn
+aov
+cMN
+any
+aep
+aep
+adP
+afH
+ajW
+aQJ
+cIJ
+cMa
+afE
+alc
+alc
+afE
+ajW
+aVI
+afH
+amI
+amI
+amI
+amI
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -159433,51 +145771,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-bgq
-bhd
-biq
-bjh
-bjW
-bkK
-bkK
-bkK
-bkK
-bpj
-bqk
-brP
-btb
-buN
-bwm
+aZN
+aZN
+aZN
+beH
+bfu
+bgH
+bhw
+bik
+biX
+biX
+biX
+biX
+bnm
+bol
+bpM
+bqY
+bsG
+bub
+bvL
+bwU
+cQk
bya
-bzm
-dgg
-bAt
-bCB
-bDY
-bEW
-bGj
-bHs
-bIH
-bKs
-bLU
-bNc
-bOk
-bPP
-bQR
-bRX
-bTj
-dhy
-bgr
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
+bAg
+bBy
+bCv
+bDD
+bEJ
+bFY
+bHI
+bJi
+bKn
+bLs
+bMW
+bNW
+bPc
+bQn
+cQY
+beI
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -159495,37 +145833,37 @@ aaa
aaa
aaa
aaa
-cfJ
-cfJ
-cfJ
-cfI
-cfI
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-chX
-ciA
-ciA
-chX
-ckf
-chX
-clw
-cLo
-ciA
-ciA
-ciA
-chX
-clw
-cLo
-clw
-chX
-chX
-chX
-cfJ
-cfJ
-cfI
+ccH
+ccH
+ccH
+ccG
+ccG
+ccG
+ccH
+ccH
+ccH
+ccH
+ceF
+cff
+cff
+ceF
+cgG
+ceF
+chV
+cGz
+cff
+cff
+cff
+ceF
+chV
+cGz
+chV
+ceF
+ceF
+ceF
+ccH
+ccH
+ccG
aaa
aaa
aaa
@@ -159533,32 +145871,32 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
-cfI
-cfJ
-cFY
-cGE
-cGQ
-cFY
-cHm
-cHz
-cHm
+ccG
+ccH
+cBR
+cCw
+cCI
+cBR
+cDd
+cDq
+cDd
aaa
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aad
aaa
aaa
@@ -159623,56 +145961,56 @@ aaa
aaa
aaa
aaa
-dnA
+cUc
aaa
-akR
-akR
-akR
-anV
-aoY
-aoY
-aoY
-arL
-asF
-aoY
-asF
-arL
-aoY
-aoY
-aoY
-aoY
-anV
-aCY
-aEs
-anV
-aHo
-aCW
-aoU
-aKx
-anV
-aez
-aez
-adZ
-afS
-cYt
-cYK
-aiS
-afS
-afV
-and
-aez
-afV
-akp
-afV
-aez
-and
-and
-alx
-and
-and
-and
-alx
-alx
+akx
+akx
+akx
+any
+aoz
+aoz
+aoz
+arh
+asb
+aoz
+asb
+arh
+aoz
+aoz
+aoz
+aoz
+any
+aCp
+aDI
+any
+aGC
+aCn
+aov
+aJE
+any
+aep
+aep
+adP
+afE
+cLC
+cLJ
+aiA
+afE
+afH
+amI
+aep
+afH
+ajW
+afH
+aep
+amI
+amI
+alc
+amI
+amI
+amI
+alc
+alc
aaa
aaa
aaa
@@ -159680,7 +146018,7 @@ aaa
aaa
aaa
aaa
-cKF
+cGc
aaa
aaa
aaa
@@ -159690,51 +146028,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbq
-bgq
-dcZ
-bip
-ddJ
-bjX
-bkL
-blL
-blL
-bnJ
-blL
-bqm
-brQ
-btf
-buO
-bwn
-bya
-bzn
-dgh
-bBw
-bAu
-dgF
-bEX
-bGk
-bHt
-bII
-bKt
-bLV
-bII
-bOl
-cKZ
-dhX
-bIO
-diz
-bMb
-bgs
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
+aZN
+aZN
+aZP
+beH
+cOd
+bgG
+cOD
+bil
+biY
+bjW
+bjW
+blQ
+bjW
+bon
+bpN
+brc
+bsH
+buc
+bvL
+bwV
+cQl
+bzc
+byb
+cQx
+bCw
+bDE
+bEK
+bFZ
+bHJ
+bJj
+bFZ
+bLt
+cGn
+cRo
+bGf
+cRD
+bJo
+beJ
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -159757,32 +146095,32 @@ aaa
aaa
aaa
aaa
-cfI
-cfJ
-cfJ
-cfJ
-cfJ
-cfI
-cfI
-cfI
-cjz
-ckg
-cjz
-ckg
-cjz
-cfI
-cfI
-cfI
-cjz
-ckg
-cjz
-ckg
-cjz
-cfI
-cfI
-cfJ
-cfJ
-cfI
+ccG
+ccH
+ccH
+ccH
+ccH
+ccG
+ccG
+ccG
+cgb
+cgH
+cgb
+cgH
+cgb
+ccG
+ccG
+ccG
+cgb
+cgH
+cgb
+cgH
+cgb
+ccG
+ccG
+ccH
+ccH
+ccG
aaa
aaa
aaa
@@ -159790,20 +146128,20 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-cfI
-cFY
-cFY
-cFY
-cFY
+ccG
+cBR
+cBR
+cBR
+cBR
abC
-cHA
+cDr
abC
aaa
aaa
@@ -159880,56 +146218,56 @@ aaa
aaa
aaa
aaa
-dnB
-dnD
-dnD
-dnD
-dnD
-anT
-aoX
-aoU
-aoY
-arM
-arM
-aoY
-arM
-arM
-aoY
-axT
-azx
-aAR
-anV
-aCX
-aEs
-anV
-aHp
-aIj
-aJs
-aKy
-aHp
-aez
-aez
-afS
-cYm
-cYu
-akp
-akp
-cYg
-afS
-and
-afV
-alQ
-akp
-afS
-and
-and
-and
-alx
-and
-and
-and
-alx
-alx
+cUd
+cUf
+cUf
+cUf
+cUf
+anw
+aoy
+aov
+aoz
+ari
+ari
+aoz
+ari
+ari
+aoz
+axm
+ayP
+aAj
+any
+aCo
+aDI
+any
+aGD
+aHu
+aIB
+aJF
+aGD
+aep
+aep
+afE
+cLy
+cLD
+ajW
+ajW
+cLt
+afE
+amI
+afH
+alv
+ajW
+afE
+amI
+amI
+amI
+alc
+amI
+amI
+amI
+alc
+alc
aaa
aaa
aaa
@@ -159947,51 +146285,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbq
-bgp
-bhg
+aZN
+aZN
+aZP
+beG
+bfx
+bka
+bhx
+bik
+biZ
+bjX
+bkR
blR
-bji
-bjW
-bkM
-blM
-bmJ
-bnK
-bkM
-bjW
-brR
-btg
-buP
-bwo
-bya
-bzo
-bAv
-bBx
-bCC
-bDZ
-bEY
-cKU
-bHu
-bIJ
-bHu
-bLW
-bIJ
-cWD
-bGk
-bgq
-diq
-bTd
-dhy
-bgq
-bbo
-bbq
-bbq
-bbq
-bbq
-bbo
-bbp
+biZ
+bik
+bpO
+brd
+bsI
+bud
+bvL
+bwW
+byc
+bzd
+bAh
+bBz
+bCx
+cGi
+bEL
+bGa
+bEL
+bJk
+bGa
+cLa
+bDE
+beH
+cRz
+bQh
+cQY
+beH
+aZN
+aZP
+aZP
+aZP
+aZP
+aZN
+aZO
abC
abC
abC
@@ -160014,31 +146352,31 @@ abC
abC
abC
abC
-cfK
-cfJ
-cfJ
-cfJ
-cfI
-cfI
-cfI
-cfI
-cjz
-ckg
-cjz
-ckg
-cjz
-cfI
-cfI
-cfI
-cjz
-ckg
-cjz
-ckg
-cjz
-cfI
-cfI
-cfJ
-cfJ
+ccI
+ccH
+ccH
+ccH
+ccG
+ccG
+ccG
+ccG
+cgb
+cgH
+cgb
+cgH
+cgb
+ccG
+ccG
+ccG
+cgb
+cgH
+cgb
+cgH
+cgb
+ccG
+ccG
+ccH
+ccH
aaa
aaa
aaa
@@ -160047,20 +146385,20 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-cfJ
-cfJ
-cfK
-cfJ
+ccH
+ccH
+ccI
+ccH
aaa
abC
-cHA
+cDr
abC
abC
aaa
@@ -160137,55 +146475,55 @@ aaa
aaa
aaa
aaa
-dnC
-akR
-akR
-akR
-alx
-anU
-apa
-aoU
-aoY
-arL
-arL
-aoY
-arL
-arL
-aoY
-aoU
-aoU
-aAM
-anV
-aDc
-aEs
-aFL
-aHq
-aIk
-aJt
-aKz
-aHp
-aez
-aez
-aez
-cYj
-cYu
-aXh
-afS
-adZ
-afS
-aez
-aez
-alQ
-alQ
-aez
-and
-alx
-alx
-alx
-and
-and
-and
-alx
+cUe
+akx
+akx
+akx
+alc
+anx
+aoB
+aov
+aoz
+arh
+arh
+aoz
+arh
+arh
+aoz
+aov
+aov
+aAe
+any
+aCt
+aDI
+aFa
+aGE
+aHv
+aIC
+aJG
+aGD
+aep
+aep
+aep
+cLv
+cLD
+aVI
+afE
+adP
+afE
+aep
+aep
+alv
+alv
+aep
+amI
+alc
+alc
+alc
+amI
+amI
+amI
+alc
aaa
aaa
aaa
@@ -160204,52 +146542,52 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbq
-bgp
-bhh
-bir
-bgr
-bjW
-bjW
-bjW
-dfc
-bnL
-dfc
-dfc
-brS
-bjY
-buQ
-bwp
-byb
-dfW
-bkC
-bkB
-bkB
-dgG
-bkB
-bGk
-bHv
-bIK
-bHv
-bHv
-bHv
-bHv
-bGk
-bgq
-bIO
-diz
-bUg
-bgr
-bbo
-bbq
-bbq
-bbq
-bbq
-bbo
-bbo
-bbo
+aZN
+aZN
+aZP
+beG
+bfy
+bgI
+beI
+bik
+bik
+bik
+cPy
+blS
+cPy
+cPy
+bpP
+bim
+bsJ
+bue
+bvM
+cQf
+biP
+biO
+biO
+cQy
+biO
+bDE
+bEM
+bGb
+bEM
+bEM
+bEM
+bEM
+bDE
+beH
+bGf
+cRD
+bRj
+beI
+aZN
+aZP
+aZP
+aZP
+aZP
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -160273,30 +146611,30 @@ aaa
aaa
aaa
aaa
-cfJ
-cfI
-cfI
-cfI
+ccH
+ccG
+ccG
+ccG
aaa
aaa
-cjz
-ckg
-cjz
-ckg
-cjz
-cfI
-cfI
-cfI
-cjz
-ckg
-cjz
-ckg
-cjz
+cgb
+cgH
+cgb
+cgH
+cgb
+ccG
+ccG
+ccG
+cgb
+cgH
+cgb
+cgH
+cgb
aaa
aaa
-cfI
-cfI
-cKF
+ccG
+ccG
+cGc
aaa
aaa
aaa
@@ -160304,21 +146642,21 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-cfI
+ccG
abC
aaa
aaa
abC
-cHB
-caQ
+cDs
+bXP
abC
aaa
aaa
@@ -160395,54 +146733,54 @@ aaa
aaa
aaa
aaa
-akR
-akR
-alx
-alx
-anV
-apb
-aoU
-aoU
-aoU
-asG
-atH
-aoW
-aoW
-aoW
-aoW
-azy
-aoW
-aBY
-aDd
-aEs
-aFM
-aHq
-aIl
-aJu
-aKA
-aHp
-adZ
-aez
-aez
-apx
-cOz
-afV
-adZ
-afS
-afV
-afS
-aWo
-afK
-afV
-afS
-afS
-afV
-alx
-alx
-alx
-alx
-alx
-akR
+akx
+akx
+alc
+alc
+any
+aoC
+aov
+aov
+aov
+asc
+atb
+aox
+aox
+aox
+aox
+ayQ
+aox
+aBq
+aCu
+aDI
+aFb
+aGE
+aHw
+aID
+aJH
+aGD
+adP
+aep
+aep
+aoX
+cIF
+afH
+adP
+afE
+afH
+afE
+aUS
+afw
+afH
+afE
+afE
+afH
+alc
+alc
+alc
+alc
+alc
+akx
aaa
aaa
aaa
@@ -160462,51 +146800,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbq
-bgs
-bhd
-bip
-bgr
-bgq
-bgq
-bgq
+aZN
+aZP
+beJ
+bfu
+bgG
+beI
+beH
+beH
+beH
+bim
+blW
bjY
-bnQ
-blN
-bnQ
-bjY
-bth
-buR
-bwq
-bjY
-boU
-dgi
-bmz
-bCD
-dgH
-dgR
-bGk
-cWy
-bHv
-bHv
-cWy
-bIK
-cWy
-bGk
-bgq
-bIO
-bTb
-bhb
-diT
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
-bbq
-bbo
+blW
+bim
+bre
+bsK
+buf
+bim
+bmX
+cQm
+bkI
+bAi
+cQz
+cQD
+bDE
+cKW
+bEM
+bEM
+cKW
+bGb
+cKW
+bDE
+beH
+bGf
+bQf
+bfs
+cRI
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
+aZP
+aZN
aaa
aaa
aaa
@@ -160532,40 +146870,40 @@ aaa
aaa
aaa
aaa
-cfI
+ccG
aaa
aaa
aaa
-cjz
-ckg
-cjz
-ckg
-cjz
-cfI
+cgb
+cgH
+cgb
+cgH
+cgb
+ccG
aaa
aaa
-cjz
-ckg
-cjz
-ckg
-cjz
+cgb
+cgH
+cgb
+cgH
+cgb
aaa
aaa
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -160575,7 +146913,7 @@ aaa
aaa
abC
abC
-cHA
+cDr
abC
aaa
aaa
@@ -160652,53 +146990,53 @@ aaa
aaa
aaa
aaa
-akR
-akR
+akx
+akx
+alc
+alc
+any
+aoD
+aps
+aps
+arj
+arj
+cGV
+arj
+arj
+aps
+aps
+ayR
+aps
+aBr
+aCv
+aDK
+aFc
+aGE
+aHx
+aID
+aJI
+aGD
+adP
+afH
+afH
+alw
+amp
alx
-alx
-anV
-apc
-apS
-apS
-arN
-arN
-cLU
-arN
-arN
-apS
-apS
-azz
-apS
-aBZ
-aDe
-aEu
-aFN
-aHq
-aIm
-aJu
-aKB
-aHp
-adZ
-afV
-afV
-alR
-amK
-alS
-afV
-akp
-akp
-akp
-akq
-avh
-awu
-alr
-aOF
-afS
-afV
-afS
-afV
-akR
-akR
+afH
+ajW
+ajW
+ajW
+ajX
+auB
+avO
+akW
+aNy
+afE
+afH
+afE
+afH
+akx
+akx
aaa
aaa
aaa
@@ -160718,51 +147056,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbq
-bgr
-bhb
-bip
-bgs
-bgp
-bgp
-bgp
-bjY
-dfl
-blP
-blP
-bjY
-bti
-bqp
-bpr
-bjY
-boU
-bmz
-bmz
-bmz
-dgH
-dgS
-bGk
-cWz
-bHv
-bHv
-bHv
-bHv
-bHv
-bGk
-bgp
-bOn
-bTb
-diQ
-bgr
-bbo
-bbo
-bbq
-bbq
-bbq
-bbq
-bbq
+aZN
+aZN
+aZP
+beI
+bfs
+bgG
+beJ
+beG
+beG
+beG
+bim
+cPF
+bjZ
+bjZ
+bim
+brf
+bop
+bns
+bim
+bmX
+bkI
+bkI
+bkI
+cQz
+cQE
+bDE
+cKX
+bEM
+bEM
+bEM
+bEM
+bEM
+bDE
+beG
+bLv
+bQf
+cRG
+beI
+aZN
+aZN
+aZP
+aZP
+aZP
+aZP
+aZP
aaa
aaa
aaa
@@ -160793,36 +147131,36 @@ aaa
aaa
aaa
aaa
-chX
-ckf
-chX
-clx
-chX
+ceF
+cgG
+ceF
+chW
+ceF
aaa
aaa
aaa
-chX
-clx
-chX
-clx
-chX
+ceF
+chW
+ceF
+chW
+ceF
aaa
aaa
aaa
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -160832,7 +147170,7 @@ aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
aaa
@@ -160909,53 +147247,53 @@ aaa
aaa
aaa
aaa
-akR
+akx
+alc
+alc
+alc
+any
+aoE
+aov
+aov
+ark
+ark
+aov
+ark
+ark
+aov
+axn
+ayS
+aov
+aBp
+aov
+aDD
+aFd
+aGE
+aHx
+aID
+aJJ
+aGD
+aGD
+aMs
+afE
alx
-alx
-alx
-anV
-apd
-aoU
-aoU
-arO
-arO
-aoU
-arO
-arO
-aoU
-axU
-azA
-aoU
-aBX
-aoU
-aEn
-aFO
-aHq
-aIm
-aJu
-aKC
-aHp
-aHp
-aNw
-afS
-alS
-amK
-akp
-aOH
-akp
-akp
-cYl
-akp
-afp
-afV
-akq
-akp
-afS
-akp
-akp
-ajo
-akR
-akR
+amp
+ajW
+aNA
+ajW
+ajW
+cLx
+ajW
+afb
+afH
+ajX
+ajW
+afE
+ajW
+ajW
+aiW
+akx
+akx
aaa
aaa
aaa
@@ -160974,52 +147312,52 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-bbo
-bgr
-bQS
-ddo
-bgs
-bgs
-bgp
-bgp
-bjY
-dfm
-dfz
-dfE
-bjY
-btj
-bqp
-bpr
-bjY
-boU
-dgi
-dgo
-dgi
-dgJ
-dgi
-bGk
-bGk
-bHv
-cWB
-bHv
-bHv
-bGk
-bGk
-bjg
-bPS
-diz
-bhd
-bgr
-bgq
-bbo
-bbo
-bbo
-bbo
-bbq
-bbq
+aZN
+aZN
+aZN
+aZN
+beI
+bNX
+cOp
+beJ
+beJ
+beG
+beG
+bim
+cPG
+cPR
+cPV
+bim
+brg
+bop
+bns
+bim
+bmX
+cQm
+cQp
+cQm
+cQA
+cQm
+bDE
+bDE
+bEM
+cKZ
+bEM
+bEM
+bDE
+bDE
+bhv
+bMZ
+cRD
+bfu
+beI
+beH
+aZN
+aZN
+aZN
+aZN
+aZP
+aZP
aaa
aaa
aaa
@@ -161038,48 +147376,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-chm
-chm
-chm
-chm
-chm
-chm
-ckh
-chm
-cly
-chm
-cKF
-cKF
-cKF
-chm
-cpu
-chm
-cpu
-chm
-cKF
-cKF
-chm
-chm
-chn
-chn
-chn
-chn
-chn
-chm
-chm
-chm
-chm
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+ced
+ced
+ced
+ced
+ced
+ced
+cgI
+ced
+chX
+ced
+cGc
+cGc
+cGc
+ced
+clM
+ced
+clM
+ced
+cGc
+cGc
+ced
+ced
+cee
+cee
+cee
+cee
+cee
+ced
+ced
+ced
+ced
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -161089,7 +147427,7 @@ aaa
aaa
aaa
abC
-cHA
+cDr
abC
aaa
aaa
@@ -161166,51 +147504,51 @@ aaa
aaa
aaa
aaa
-akR
-akR
-alx
-alx
-anV
-ape
-ape
-aqQ
-arP
-asH
-atI
-auN
-cZe
-apQ
-axV
-azB
-aAS
-aBW
-aDf
-aEv
-aFP
-aHq
-aIn
-aJv
-aKD
-cNU
-cOb
-cOf
-aOE
-cOs
-cYK
-afS
-afV
-afV
-afV
-aez
-afS
-afV
-afS
-akp
-aXg
-akp
-akp
-akp
-ajo
+akx
+akx
+alc
+alc
+any
+aoF
+aoF
+aqq
+arl
+asd
+atc
+auh
+cLR
+apq
+axo
+ayT
+aAk
+aBo
+aCw
+aDL
+aFe
+aGE
+aHy
+aIE
+aJK
+cId
+cIj
+cIn
+aNx
+cIz
+cLJ
+afE
+afH
+afH
+afH
+aep
+afE
+afH
+afE
+ajW
+aVH
+ajW
+ajW
+ajW
+aiW
aaa
aaa
aaa
@@ -161232,51 +147570,51 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-bgs
-bhb
-bis
-bjj
-bgr
-bgp
-bgp
-bjY
-dfn
-blP
-dfF
-bjY
-btk
-buS
-bwr
-bjY
-dfX
-bmz
-bmz
-bmz
-bmz
-bmz
-bkB
-bGk
-bGk
-bGk
-bGk
-bGk
-bGk
-dhJ
-bhd
-bOn
-bTb
-bhd
-bhd
-bgs
-bgs
-bgr
-bgs
-bbq
-bbo
-bbo
+aZN
+aZN
+aZN
+beJ
+bfs
+bgJ
+bhy
+beI
+beG
+beG
+bim
+cPH
+bjZ
+cPW
+bim
+brh
+bsL
+bug
+bim
+cQg
+bkI
+bkI
+bkI
+bkI
+bkI
+biO
+bDE
+bDE
+bDE
+bDE
+bDE
+bDE
+cRg
+bfu
+bLv
+bQf
+bfu
+bfu
+beJ
+beJ
+beI
+beJ
+aZP
+aZN
+aZN
aaa
aaa
aaa
@@ -161295,48 +147633,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-chm
-chm
-chm
-chm
-cja
-dGD
-ciZ
-cjA
-cjB
-chm
-dHE
-ckK
-chn
-chn
-chn
-ckK
-clz
-dIO
-clz
-ckK
-chm
-chm
-ckK
-dJq
-dJB
-dJL
-dJV
-dKf
-dKp
-chm
-dKC
-dKO
-ckK
-chm
-chm
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+ced
+ced
+ced
+ced
+cfE
+dbf
+dbf
+cgc
+cgd
+ced
+dbb
+chk
+cee
+cee
+cee
+chk
+dbb
+dbN
+dbb
+chk
+ced
+ced
+chk
+dca
+dca
+dcm
+dcm
+dca
+dca
+ced
+dcG
+dcM
+chk
+ced
+ced
+cGc
+cGc
aaa
aaa
aaa
@@ -161346,12 +147684,12 @@ aaa
aaa
aaa
abC
-cHA
+cDr
abC
abC
-cHf
-cIX
-cHf
+cCW
+cEO
+cCW
aaa
aaa
aaa
@@ -161424,50 +147762,50 @@ aaa
aaa
aaa
aaa
-akR
-akR
-ank
-ank
-apf
-apf
-aqR
-ank
-ank
-ank
-ank
-ank
-ank
-ank
-azC
-ank
-ank
-anV
-anV
-anV
-aHp
-aHp
-aHp
-aHp
-aHp
-aHp
-cYn
-aCr
-apu
-dbk
-afS
-alx
-and
-and
-and
-alx
-alx
-afS
-akp
-aXh
-afV
-aXQ
-akp
-ajo
+akx
+akx
+amP
+amP
+aoG
+aoG
+aqr
+amP
+amP
+amP
+amP
+amP
+amP
+amP
+ayU
+amP
+amP
+any
+any
+any
+aGD
+aGD
+aGD
+aGD
+aGD
+aGD
+cLz
+aBJ
+aoU
+cMW
+afE
+alc
+amI
+amI
+amI
+alc
+alc
+afE
+ajW
+aVI
+afH
+aWr
+ajW
+aiW
aaa
aaa
aaa
@@ -161489,50 +147827,50 @@ aaa
aaa
aaa
aaa
-baW
-bbo
-bbq
-bgp
-bhd
-bhb
-ddK
-bgr
-bgp
-bgp
-bjY
-dfo
-bnN
-dfG
-bjY
-bjY
-buQ
-bws
-bjY
-dfY
-bmz
-bmz
-bmz
-bmz
-dgi
-bkB
-bhg
-bhd
-bKu
-bhc
-dem
-bhd
-bPQ
-bQT
-bRY
-bTk
-bhd
-bhf
-bhg
-bhd
-bXk
-bgr
-bbq
-bbo
+aZv
+aZN
+aZP
+beG
+bfu
+bfs
+cOE
+beI
+beG
+beG
+bim
+cPI
+blU
+cPX
+bim
+bim
+bsJ
+buh
+bim
+cQh
+bkI
+bkI
+bkI
+bkI
+cQm
+biO
+bfx
+bfu
+bHK
+bft
+cOW
+bfu
+bMX
+bNY
+bPd
+bQo
+bfu
+bfw
+bfx
+bfu
+bUl
+beI
+aZP
+aZN
aaa
aaa
aaa
@@ -161552,48 +147890,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-chZ
-cjB
-cjB
-cjB
-cjB
-chm
-clz
-dHT
-clz
-clz
-clz
-dIt
-clz
-clz
-clz
-cra
-csY
-csY
-dJg
-cmb
-cmb
-cmb
-cmb
-cmb
-cmb
-chn
-dKD
-dKP
-dLb
-ckK
-chm
-chm
-chm
+cGc
+cGc
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+ceH
+cgd
+cgd
+cgd
+cgd
+ced
+dbb
+dbG
+dbb
+dbb
+dbb
+dbG
+dbb
+dbb
+dbb
+dbG
+cpg
+cpg
+dbS
+daY
+daY
+daY
+daY
+daY
+daY
+cee
+dcH
+dcN
+dcU
+chk
+ced
+ced
+ced
aaa
aaa
aaa
@@ -161602,13 +147940,13 @@ abC
aaa
aaa
aaa
-cHf
-cHO
-cHf
-cHf
-cHC
-cIY
-cHf
+cCW
+cDF
+cCW
+cCW
+cDt
+cEP
+cCW
aaa
aaa
aaa
@@ -161683,112 +148021,112 @@ aaa
aaa
aaa
aaa
-ank
-anW
-apg
-apT
-aqS
-aph
-ank
-atJ
-atJ
-avV
-axd
-axW
-azD
-aAT
-ank
-adZ
-afS
-afV
-adZ
-adZ
-aJw
-aCr
-day
-aCr
-aNx
-aus
-afq
-afV
-aez
-alx
-and
-and
-and
-and
-alx
-afS
-aRj
-aXi
-afS
-ala
-ajr
-ajo
+amP
+anz
+aoH
+apt
+aqs
+aoI
+amP
+atd
+atd
+avp
+aww
+axp
+ayV
+aAl
+amP
+adP
+afE
+afH
+adP
+adP
+aIF
+aBJ
+cMH
+aBJ
+aMt
+atM
+afc
+afH
+aep
+alc
+amI
+amI
+amI
+amI
+alc
+afE
+aPQ
+aVJ
+afE
+akG
+aiZ
+aiW
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-bbo
-bbo
-bbq
-bgp
-bgq
-bhb
-ddo
-bgr
-bgs
-bgr
-bjY
-bpr
-dfl
-dfH
-brT
-bnM
-buT
-bwt
-bjY
-dfZ
-dgk
-dgp
-dgt
-dgt
-dgt
-dha
-bHw
-bjZ
-bjZ
-bjZ
-bjZ
-bOm
-bPR
-dhY
-bQU
-bTl
-bjZ
-bkR
-bhd
-bhd
-bgr
-bgr
-bgs
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aZN
+aZN
+aZP
+beG
+beH
+bfs
+cOp
+beI
+beJ
+beI
+bim
+bns
+cPF
+cPY
+bpQ
+blT
+bsM
+bui
+bim
+cQi
+cQn
+cQq
+cQr
+cQr
+cQr
+cQG
+bEN
+bin
+bin
+bin
+bin
+bLu
+bMY
+cRp
+bNZ
+bQp
+bin
+bjd
+bfu
+bfu
+beI
+beI
+beJ
abC
abC
abC
@@ -161809,48 +148147,48 @@ aaa
aaa
aaa
aaa
-cKF
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-cja
-dGE
-dGT
-cjB
-cki
-chm
-dHF
-clz
-clz
-dHZ
-dIj
-dIu
-dIE
-cqm
-cqm
-cqm
-clz
-clz
-cqm
-cqm
-cqm
-cqm
-cqm
-cqm
-clz
-chn
-dKE
-clz
-dLc
-dLe
-chm
-ctV
-cuO
+cGc
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+cfE
+dbg
+dbk
+cgd
+dbk
+ced
+daZ
+dbb
+dbb
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+dbb
+dbb
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+dbb
+cee
+dcH
+dbb
+dcN
+dcW
+ced
+cqa
+cqT
aaa
aaa
aaa
@@ -161859,13 +148197,13 @@ abC
aaa
aaa
aaa
-cHf
-cHP
-cHC
-cIw
-cIH
-cIZ
-cHf
+cCW
+cDG
+cDt
+cEn
+cEy
+cEQ
+cCW
aaa
aaa
aaa
@@ -161940,48 +148278,48 @@ aaa
aaa
aaa
aaa
-ank
-anX
-aph
-apU
-aqT
-arQ
-asI
-atK
-auO
-auO
-auO
-avW
-azE
-avW
-ank
-cZB
-cYl
-aoR
-ahr
-aqj
+amP
+anA
+aoI
apu
-akq
-alS
-akp
-aNy
-afS
-adZ
-aez
-and
+aqt
+arm
+ase
+ate
+aui
+aui
+aui
+avq
+ayW
+avq
+amP
+cMa
+cLx
+aos
+ahd
+apJ
+aoU
+ajX
alx
-and
-and
-and
-and
-alx
-afV
-afV
-afV
-afV
-afV
-afV
-afV
+ajW
+aMu
+afE
+adP
+aep
+amI
+alc
+amI
+amI
+amI
+amI
+alc
+afH
+afH
+afH
+afH
+afH
+afH
+afH
abC
abC
abC
@@ -162003,53 +148341,53 @@ abC
abC
abC
abC
-bbp
-bbo
-bbq
-bbq
-bgq
-ddq
-ddo
-bgs
-bkO
-bkO
-bjY
-bpr
-bpr
-bqp
-brU
-btl
-bqp
-bpr
-bjY
-bjY
-bjY
-bjY
-bkB
-bkB
-bkB
-bkB
-blR
-dcZ
-bgr
-bgs
-bhd
-bOn
-bOn
-bhd
-blS
-bhd
-bgq
-bVf
-bjZ
-bjZ
-bXl
-bYc
-bYO
+aZO
+aZN
+aZP
+aZP
+beH
+cOq
+cOp
+beJ
+bja
+bja
+bim
+bns
+bns
+bop
+bpR
+bri
+bop
+bns
+bim
+bim
+bim
+bim
+biO
+biO
+biO
+biO
+bka
+cOd
+beI
+beJ
+bfu
+bLv
+bLv
+bfu
+bkb
+bfu
+beH
+bSi
+bin
+bin
+bUm
+bVd
+bVP
acI
acI
acI
-caQ
+bXP
abC
aaa
aaa
@@ -162066,48 +148404,48 @@ aaa
aaa
aaa
aaa
-chm
-chm
-chm
-ckK
-dEs
-dER
-dFo
-chz
-chm
-chm
-chm
-chn
-cjC
-chn
-chm
-dHG
-cma
-dHV
-dIa
-dIk
-dIv
-dIF
-dIP
-cqn
-cqn
-cma
-clZ
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-dKq
-chm
-dKF
-clz
-clz
-dLf
-chm
-ctV
-cuO
+ced
+ced
+ced
+chk
+dae
+dat
+daD
+dae
+ced
+ced
+ced
+cee
+cge
+cee
+ced
+dbw
+cix
+dbI
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+cix
+dbI
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+dbP
+ced
+dcI
+dbb
+dbb
+dcX
+ced
+cqa
+cqT
aaa
aaa
aaa
@@ -162116,13 +148454,13 @@ abC
aaa
aaa
aaa
-cHf
-cHO
-cHC
-cIx
-cII
-cJa
-cHf
+cCW
+cDF
+cDt
+cEo
+cEz
+cER
+cCW
aaa
aaa
aaa
@@ -162195,48 +148533,48 @@ aaa
aaa
aaa
aaa
-akR
-akR
-ank
-anY
-api
-apV
-apV
-apV
-asJ
-atL
-atL
-avX
-atL
-atL
-azF
-aAU
-ank
-aDg
-auE
-apu
-aqH
-afq
-afq
-aKE
-adZ
-adZ
-afV
-adZ
-alx
-alx
-alx
-alx
-and
-and
-and
-and
-alx
-alx
-akR
-akR
-alx
-alx
+akx
+akx
+amP
+anB
+aoJ
+apv
+apv
+apv
+asf
+atf
+atf
+avr
+atf
+atf
+ayX
+aAm
+amP
+aCx
+atY
+aoU
+aqh
+afc
+afc
+aJL
+adP
+adP
+afH
+adP
+alc
+alc
+alc
+alc
+amI
+amI
+amI
+amI
+alc
+alc
+akx
+akx
+alc
+alc
aaa
aaa
aaa
@@ -162260,54 +148598,54 @@ aaa
aaa
aaa
aaa
-baW
-baW
-bbq
-bbo
-bgq
-btq
-ddo
-bgr
-bkP
-bkP
-bjY
-dfp
-bpm
-bqp
-bkQ
-bkQ
-buU
-bpr
-bnM
-blP
-bzr
-bjY
-bgp
-bgp
-bgp
-bjg
-bip
-bgs
-bgr
-bgr
-bgs
-dhz
-bOn
-bgq
-bgs
-bgq
-bgq
-bgr
-bhd
-diZ
-bgr
-bgs
-bgs
+aZv
+aZv
+aZP
+aZN
+beH
+brn
+cOp
+beI
+bjb
+bjb
+bim
+cPJ
+bnn
+bop
+bjc
+bjc
+bsN
+bns
+blT
+bjZ
+bwZ
+bim
+beG
+beG
+beG
+bhv
+bgG
+beJ
+beI
+beI
+beJ
+cQZ
+bLv
+beH
+beJ
+beH
+beH
+beI
+bfu
+cRN
+beI
+beJ
+beJ
abC
abC
-bZT
-caR
-bZT
+bWT
+bXQ
+bWT
aaa
aaa
abC
@@ -162323,48 +148661,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chm
-dDU
-dEt
-dES
-dFp
-chA
-chm
-cic
-dGF
-cjb
-cjb
-ckj
-chm
-dHH
-cma
-dHW
-dIb
-dIl
-dIw
-dIG
-dIQ
-dIU
-dIY
-cma
-clZ
-dJh
-dJr
-dJC
-dJM
-dJW
-dKg
-cma
-chn
-dKG
-clz
-clz
-dLg
-chm
-ctV
-cuO
+cGc
+cGc
+ced
+cZT
+daf
+daf
+daE
+cen
+ced
+ceI
+dbh
+cfF
+cfF
+cgJ
+ced
+dbx
+cix
+dbI
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+cix
+dbI
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+cix
+cee
+dcH
+dbb
+dbb
+dcY
+ced
+cqa
+cqT
aaa
aaa
aaa
@@ -162372,14 +148710,14 @@ aaa
abC
aaa
aaa
-cHf
-cHC
-cHQ
-cIe
-cHS
-cIg
-cIz
-cHf
+cCW
+cDt
+cDH
+cDV
+cDJ
+cDX
+cEq
+cCW
aaa
aaa
aaa
@@ -162452,48 +148790,48 @@ aaa
aaa
aaa
aaa
-akR
-alx
-ank
+akx
+alc
+amP
+anC
+aoK
+apw
+aqu
+arn
+amP
+atg
+auj
+avq
+avq
+axq
+ayY
+aAn
+amP
+afw
+aTA
anZ
-apj
-apW
-aqU
-arR
-ank
-atM
-auP
-avW
-avW
-axX
-azG
-aAV
-ank
-afK
-aUW
-aoy
-apx
-anN
-afV
-afS
-adZ
-alx
-alx
-alx
-alx
-and
-and
-and
-and
-and
-and
-and
-alx
-akR
-akR
-akR
-akR
-akR
+aoX
+ans
+afH
+afE
+adP
+alc
+alc
+alc
+alc
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+alc
+akx
+akx
+akx
+akx
+akx
aaa
aaa
aaa
@@ -162517,54 +148855,54 @@ aaa
aaa
aaa
aaa
-baW
-baW
-bbq
-bbo
-bgs
-btq
-ddO
-del
-dex
-bvb
-bjY
-dfq
-bpn
-bqq
-brV
-btm
-buV
-bwu
-bnO
-bzp
-blP
-bjY
-bgp
-bgs
-bgr
-bhd
-bir
-bgq
-bgq
-bgq
-bgs
-bOo
-bPS
-bgp
-bbq
-bbq
-bgq
-bgq
-bgs
-bgs
-bgr
-bgq
+aZv
+aZv
+aZP
+aZN
+beJ
+brn
+cOF
+cOV
+cPa
+bsT
+bim
+cPK
+bno
+boq
+bpS
+brj
+bsO
+buj
+blV
+bwX
+bjZ
+bim
+beG
+beJ
+beI
+bfu
+bgI
+beH
+beH
+beH
+beJ
+bLw
+bMZ
+beG
+aZP
+aZP
+beH
+beH
+beJ
+beJ
+beI
+beH
aaa
aaa
aaa
-bZT
-caS
-bZT
+bWT
+bXR
+bWT
aaa
aaa
abC
@@ -162580,48 +148918,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dDV
-dEu
-dET
-dFq
-dFL
-chm
-chJ
-ciB
-cjb
-dHc
-ckk
-chn
-dHI
-cma
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-cma
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-cma
-dKt
-dKH
-clz
-clz
-dLh
-chm
-ctV
-cuO
+cGc
+cGc
+cee
+cZU
+dag
+daf
+daF
+daO
+ced
+cet
+cfg
+cfF
+dbn
+cgK
+cee
+dby
+cix
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+cix
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+cix
+dcC
+dcH
+dbb
+dbb
+dcZ
+ced
+cqa
+cqT
aaa
aaa
aaa
@@ -162629,14 +148967,14 @@ aaa
abC
aaa
aaa
-cHf
-cHD
-cHR
-cIf
-cIy
-cIh
-cIA
-cHf
+cCW
+cDu
+cDI
+cDW
+cEp
+cDY
+cEr
+cCW
aaa
aaa
aad
@@ -162708,49 +149046,49 @@ aaa
aaa
aaa
aaa
-akR
-akR
-alx
-ank
-ank
-ank
-ank
-ank
-ank
-ank
-ank
-auQ
-avY
-auQ
-ank
-ank
-ank
-ank
-afV
-afS
-afS
-adZ
-adZ
-adZ
-adZ
-adZ
-alx
-alx
-alx
-alx
-and
-and
-and
-and
-and
-and
-and
-alx
-alx
-akR
-akR
-akR
-akR
+akx
+akx
+alc
+amP
+amP
+amP
+amP
+amP
+amP
+amP
+amP
+auk
+avs
+auk
+amP
+amP
+amP
+amP
+afH
+afE
+afE
+adP
+adP
+adP
+adP
+adP
+alc
+alc
+alc
+alc
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+alc
+alc
+akx
+akx
+akx
+akx
aaa
aaa
aaa
@@ -162775,56 +149113,56 @@ aaa
aaa
aaa
aaa
-baW
-bbq
-bbo
-bgr
-ddr
-ddo
-bgs
-bkP
-bkP
-bjY
-blP
-bpr
-bqr
-brW
-bmK
-buW
-bmK
-byc
-bzq
-bAx
-bjY
-bgq
-bgs
-bhe
-bhd
-bip
-bgs
-bgq
-bgq
-bgs
-dhz
-dhz
-bgp
-bbq
-bbq
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
+aZv
+aZP
+aZN
+beI
+cOr
+cOp
+beJ
+bjb
+bjb
+bim
+bjZ
+bns
+bor
+bpT
+bkS
+bsP
+bkS
+bvN
+bwY
+bye
+bim
+beH
+beJ
+bfv
+bfu
+bgG
+beJ
+beH
+beH
+beJ
+cQZ
+cQZ
+beG
+aZP
+aZP
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
-bZT
-caR
-cam
-bZT
-bZT
-bZT
+bWT
+bXQ
+bXl
+bWT
+bWT
+bWT
aaa
aaa
aaa
@@ -162837,63 +149175,63 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dDW
-dEv
-dEU
-dFr
-chB
-chm
-cid
-ciB
-cjc
-dHd
-ckl
-chn
-dHJ
-cma
-clZ
-dIc
-dIm
-dIx
-dIH
-cqn
-cqn
-cqn
-cma
-clZ
-cqn
-cqn
-cqn
-cqn
-cqn
-cqn
-cma
-chn
-dKI
-dKQ
-clz
-dLi
-chm
-ctV
-cuO
+cGc
+cGc
+cee
+cZV
+dah
+dau
+daw
+daw
+ced
+ceJ
+cfg
+cfG
+dbn
+cgL
+cee
+dbz
+cix
+dbI
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+cix
+dbI
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+cix
+cee
+dcJ
+dcO
+dbb
+dda
+ced
+cqa
+cqT
aaa
aaa
aaa
aaa
aaP
abC
-cHf
-cHf
-cHE
-cHS
-cIg
-cIz
-cHC
-cHf
-cHf
+cCW
+cCW
+cDv
+cDJ
+cDX
+cEq
+cDt
+cCW
+cCW
aaa
aaa
aaa
@@ -162965,49 +149303,49 @@ aaa
aaa
aaa
aaa
-akR
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-akR
-akR
-atN
-auR
-avW
-avW
-atN
-akR
-akR
-alx
-alx
-and
-and
-and
-alx
-alx
-alx
-alx
-and
-and
-and
-and
-and
-and
-and
-and
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-akR
-akR
+akx
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+akx
+akx
+ath
+aul
+avq
+avq
+ath
+akx
+akx
+alc
+alc
+amI
+amI
+amI
+alc
+alc
+alc
+alc
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+akx
+akx
aaa
aaa
aaa
@@ -163032,56 +149370,56 @@ aaa
aaa
aaa
aaa
-baW
-bbq
-bbo
-bgq
-btq
-ddo
-bgs
-dey
-dey
-bjY
-blP
-bpr
-bqp
-blP
-btn
-buX
-blP
-bnM
-bzr
-blP
-bjY
-bgq
-bgq
-bhd
-bEa
-bEb
-bgr
-bgq
-bgq
-bgq
-bOp
-bOp
-bgp
-bbq
-bbq
-bbo
-bbo
-bbo
-bbo
-bbo
-bbo
+aZv
+aZP
+aZN
+beH
+brn
+cOp
+beJ
+cPb
+cPb
+bim
+bjZ
+bns
+bop
+bjZ
+brk
+bsQ
+bjZ
+blT
+bwZ
+bjZ
+bim
+beH
+beH
+bfu
+bBA
+bBB
+beI
+beH
+beH
+beH
+bLx
+bLx
+beG
+aZP
+aZP
+aZN
+aZN
+aZN
+aZN
+aZN
+aZN
aaa
aaa
aaa
-bZT
-caT
-cbt
-cbW
-ccq
-ccI
+bWT
+bXS
+bYs
+bYV
+bZp
+bZH
aaa
aaa
aaa
@@ -163094,61 +149432,61 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dDX
-dEw
-dEV
-dFs
-chB
-chm
-cie
-ciB
-cjd
-dHe
-ckk
-chn
-dHK
-cma
-clZ
-dId
-dIn
-dIy
-dII
-dIR
-dIV
-dIZ
-cma
-clZ
-dJi
-dJs
-dJD
-dJN
-dJX
-dKh
-dKr
-ckK
-ckK
-dKR
-clz
-dLj
-chm
-ctV
-cuO
+cGc
+cGc
+cee
+cZW
+dai
+dav
+daw
+daw
+ced
+ceK
+cfg
+dbi
+dbn
+cgK
+cee
+dbA
+cix
+dbI
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+cix
+dbI
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+dcB
+chk
+chk
+dcP
+dbb
+dda
+ced
+cqa
+cqT
aaa
aaa
aaa
aaa
aaa
aaa
-cHg
-cHo
-cHF
-cHT
-cIh
-cIA
-cHf
+cCX
+cDf
+cDw
+cDK
+cDY
+cEr
+cCW
aaa
aaa
aaa
@@ -163223,48 +149561,48 @@ aaa
aaa
aaa
aaa
-alF
-akR
-alF
-alx
-alx
-alx
-alx
+alk
+akx
+alk
+alc
+alc
+alc
+alc
aaa
-akR
-atN
-auS
-avW
-axe
-atN
+akx
+ath
+aum
+avq
+awx
+ath
aaa
-akR
-akR
-alx
-and
-and
-and
-and
-and
-and
-and
-and
-and
-and
-and
-and
-and
-and
-and
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
+akx
+akx
+alc
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+amI
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -163289,43 +149627,43 @@ aaa
aaa
aaa
aaa
-baW
-bbo
-bbq
-bgp
-ddq
-ddo
-bgs
-bgr
-bgr
-bjY
-dfr
-bpo
-bqt
-brX
-bto
-buY
-bwv
-bnM
-blP
-bzr
-bjY
-bgq
-bgq
-bhc
-bip
-bgs
-bgs
-bgr
-bgr
-bgr
-bIO
-bIO
-bgr
-bgs
-bbo
-bbo
-bbo
+aZv
+aZN
+aZP
+beG
+cOq
+cOp
+beJ
+beI
+beI
+bim
+cPL
+bnp
+bos
+bpU
+brl
+bsR
+buk
+blT
+bjZ
+bwZ
+bim
+beH
+beH
+bft
+bgG
+beJ
+beJ
+beI
+beI
+beI
+bGf
+bGf
+beI
+beJ
+aZN
+aZN
+aZN
aaa
aaa
aaa
@@ -163333,12 +149671,12 @@ aaa
aaa
aaa
aaa
-bZT
-caU
-cbu
-cbX
-bZT
-bZT
+bWT
+bXT
+bYt
+bYW
+bWT
+bWT
aaa
aaa
aaa
@@ -163351,61 +149689,61 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dDY
-dEx
-dEW
-dFt
-chB
-chm
-dGm
-dGG
-cjd
-cjd
-dHn
-chm
-clA
-cma
-clz
-cmb
-cmb
-cmb
-cmb
-cmb
-cmb
-cmb
-clz
-clz
-cmb
-cmb
-cmb
-cmb
-cmb
-cmb
-clz
-csY
-chm
-dKS
-clz
-dLk
-chm
-ckK
-ckK
+cGc
+cGc
+cee
+cZX
+daj
+daw
+daw
+daw
+ced
+daX
+dbi
+dbi
+dbi
+dbr
+ced
+chY
+cix
+dbb
+daY
+daY
+daY
+daY
+daY
+daY
+daY
+dbb
+dbb
+daY
+daY
+daY
+daY
+daY
+daY
+dbb
+cpg
+ced
+dcQ
+dbb
+ddb
+ced
+chk
+chk
aaa
aaa
aaa
aaa
aaa
aaa
-cHf
-cHf
-cHf
-cHf
-cHf
-cHf
-cHf
+cCW
+cCW
+cCW
+cCW
+cCW
+cCW
+cCW
aaa
aaa
aaa
@@ -163489,38 +149827,38 @@ aaa
aaa
aaa
aaa
-atN
-atN
-avZ
-atN
-atN
+ath
+ath
+avt
+ath
+ath
aaa
aaa
-akR
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
+akx
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -163546,40 +149884,40 @@ aaa
aaa
aaa
aaa
-baW
-bbo
-bbq
-bgs
-bhb
-ddo
-bgr
-bgs
-bgq
-bjY
-bjY
-bpp
-bqu
-bkQ
-bjY
-bjY
-bjY
-bjY
-bjY
-bjY
-bjY
-bgq
-bgs
-bhd
-bip
-bgs
-bIL
-dhk
-bLY
-bNd
-bOr
-bPT
-bQV
-bgs
+aZv
+aZN
+aZP
+beJ
+bfs
+cOp
+beI
+beJ
+beH
+bim
+bim
+bnq
+bot
+bjc
+bim
+bim
+bim
+bim
+bim
+bim
+bim
+beH
+beJ
+bfu
+bgG
+beJ
+bGc
+cQO
+bJl
+bKo
+bLz
+bNa
+bOa
+beJ
aaa
aaa
aaa
@@ -163590,11 +149928,11 @@ aaa
aaa
aaa
aaa
-bZT
-caV
-caW
-cbY
-bZT
+bWT
+bXU
+bXV
+bYX
+bWT
aaa
aaa
aaa
@@ -163608,48 +149946,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dDZ
-dEy
-dEX
-dFu
-dFM
-chm
-chm
-chn
-dGU
-dHf
-chn
-ckK
-dHL
-clz
-clz
-dIe
-dIo
-dIz
-dIJ
-cqm
-cqm
-cqm
-dJc
-clz
-dJj
-clz
-clz
-clz
-clz
-clz
-dKs
-clz
-chm
-dKT
-dLd
-dLl
-chm
-ckK
-ckK
+cGc
+cGc
+cee
+cZY
+daj
+daw
+daw
+daP
+ced
+ced
+cee
+dbl
+dbl
+cee
+chk
+daY
+dbb
+dbb
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+dbO
+dbb
+dbT
+dbb
+dbb
+dbb
+dbb
+dbb
+dbT
+dbb
+ced
+dcR
+dcV
+ddc
+ced
+chk
+chk
aaa
aaa
aaa
@@ -163745,99 +150083,99 @@ aaa
aaa
aaa
aaa
-asK
-asK
-asL
-awa
-asL
-asK
-asK
+asg
+asg
+ash
+avu
+ash
+asg
+asg
aaa
aaa
aaa
aaa
aaa
aaa
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-bbo
-bbo
-bbq
-bgs
-bhb
-bis
-bjZ
-bkR
-bgq
-bjY
-bnQ
-bpq
-bqv
-bqn
-bjY
-cWu
-bjY
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+aZN
+aZN
+aZP
+beJ
+bfs
+bgJ
+bin
+bjd
+beH
+bim
+blW
+bnr
+bou
+boo
+bim
+cKS
+bim
+bvO
+bfu
byd
-bhd
-bAw
-bgr
-bgp
-bgr
-bhg
-bip
-bgr
-bIM
-bKv
-bLZ
-bNe
-bOs
-bPU
-bQW
-bgs
-bgs
+beI
+beG
+beI
+bfx
+bgG
+beI
+bGd
+bHL
+bJm
+bKp
+bLA
+bNb
+bOb
+beJ
+beJ
aaa
aaa
aaa
@@ -163846,12 +150184,12 @@ aaa
aaa
aaa
aaa
-bZT
-cam
-caW
-cbv
-cam
-bZT
+bWT
+bXl
+bXV
+bYu
+bXl
+bWT
aaa
aaa
aaa
@@ -163865,48 +150203,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dEa
-dEz
-dEY
-dFv
-chB
-dGb
-dGn
-dGH
-dGV
-dHg
-dHo
-dHw
-dHM
-clz
-clZ
-dIf
-dIp
-dIA
-dIK
-cqn
-cqn
-cqn
-cma
-ckK
-chm
-dJt
-chm
-chm
-chm
-chm
-chm
-dKu
-chm
-chm
-chm
-dLm
-ckK
-ctV
-cuO
+cGc
+cGc
+cee
+cZZ
+dak
+dax
+daw
+daw
+daT
+daY
+daY
+daY
+daY
+daY
+daY
+dbB
+dbb
+dbI
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+cix
+chk
+ced
+dbR
+ced
+ced
+ced
+ced
+ced
+dcD
+ced
+ced
+ced
+ddd
+chk
+cqa
+cqT
aaa
aaa
aaa
@@ -164002,13 +150340,13 @@ aaa
aaa
aaa
aaa
-asK
-atO
-auT
-auT
-auU
-axY
-asK
+asg
+ati
+aun
+aun
+auo
+axr
+asg
aaa
aaa
aaa
@@ -164019,18 +150357,18 @@ aaa
aaa
aaa
aaa
-alx
-alx
-alx
-alx
-alx
-and
-alx
-alx
-alx
-and
-alx
-alF
+alc
+alc
+alc
+alc
+alc
+amI
+alc
+alc
+alc
+amI
+alc
+alk
abC
abC
abC
@@ -164061,40 +150399,40 @@ abC
abC
abC
abC
-bbp
-bbq
-bgp
-bit
-bhd
-bhd
-bkS
-bkR
-bjY
-blP
-bpr
-bqw
-blP
-cWt
-cWv
-bjY
-bip
-buZ
-bgs
-bgp
-bgp
-bgr
-bhd
-bip
-bgr
-bIN
-bKw
-bMa
-bNf
-bOt
-bPV
-bQX
-bRZ
-bTm
+aZO
+aZP
+beG
+bgK
+bfu
+bfu
+bje
+bjd
+bim
+bjZ
+bns
+bov
+bjZ
+cKR
+cKT
+bim
+bgG
+bsS
+beJ
+beG
+beG
+beI
+bfu
+bgG
+beI
+bGe
+bHM
+bJn
+bKq
+bLB
+bNc
+bOc
+bPe
+bQq
aaa
aaa
aaa
@@ -164103,11 +150441,11 @@ aaa
aaa
aaa
aaa
-bZU
-can
-caX
-bZT
-bZT
+bWU
+bXm
+bXW
+bWT
+bWT
aaa
aaa
aaa
@@ -164122,48 +150460,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dEb
-dEA
-dEZ
-dFw
-chB
-dGc
-dGo
-dGI
-dGW
-dHh
-dHp
-dHx
-dHN
-dHU
-clZ
-dIg
-dIq
-dIB
-dIL
-dIS
-dIW
-dJa
-dJd
-chm
-dJk
-dJu
-dJE
-dJO
-dJY
-dKi
-chm
-dKv
-dKJ
-dKU
-chm
-dLn
-dLs
-ctV
-cuO
+cGc
+cGc
+cee
+daa
+dal
+day
+daw
+daw
+daT
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+daZ
+dbH
+dbI
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+dbP
+ced
+dbU
+dcb
+dci
+dcn
+dcr
+dcu
+ced
+dcE
+dcK
+dcK
+ced
+dde
+ddi
+cqa
+cqT
aaa
aaa
aaa
@@ -164259,13 +150597,13 @@ aaa
aaa
aaa
aaa
-asL
-atP
-auU
-auT
-auU
-axZ
-azH
+ash
+atj
+auo
+aun
+auo
+axs
+ayZ
aaa
aaa
aaa
@@ -164279,15 +150617,15 @@ aaa
aaa
aaa
aaa
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
-alx
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -164319,39 +150657,39 @@ aaa
aaa
aaa
aaa
-bbo
-bgq
-bgr
-ddT
-bhd
-bhd
-blR
-bjY
-blP
-bps
-bqx
-blP
-bjY
-bjY
-bjY
-bir
-bhc
-bgp
-bgp
-bgs
-bgr
-bhd
-bip
-bgr
-dhg
-bKx
-bMb
-bgr
-bOu
-bOu
-bOu
-bgs
-bgs
+aZN
+beH
+beI
+cOG
+bfu
+bfu
+bka
+bim
+bjZ
+bnt
+bow
+bjZ
+bim
+bim
+bim
+bgI
+bft
+beG
+beG
+beJ
+beI
+bfu
+bgG
+beI
+cQL
+bHN
+bJo
+beI
+bLC
+bLC
+bLC
+beJ
+beJ
abC
abC
abC
@@ -164360,10 +150698,10 @@ abC
abC
abC
abC
-bZT
-bZT
-bZT
-bZT
+bWT
+bWT
+bWT
+bWT
aaa
aaa
aaa
@@ -164379,48 +150717,48 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chn
-dEc
-dEB
-dFa
-dFx
-dFN
-chm
-chm
-chm
-chm
-chm
-dHq
-dHy
-chm
-ckK
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-clZ
-cma
-dJf
-dJl
-dJv
-dJF
-dJP
-dJZ
-dKj
-chm
-dKw
-dKK
-dKV
-chm
-dLo
-dLt
-ctV
-cuO
+cGc
+cGc
+cee
+dab
+dam
+dan
+daG
+daO
+ced
+ced
+ced
+ced
+ced
+dbs
+dbs
+ced
+chk
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+dbI
+cix
+dbR
+dbV
+dcc
+dcj
+dco
+dco
+dcv
+ced
+dcE
+dcE
+dcS
+ced
+dde
+ddj
+cqa
+cqT
aaa
aaa
aaa
@@ -164516,13 +150854,13 @@ aaa
aaa
aaa
aaa
-asK
-atQ
-auT
-auT
-auU
-aya
-asK
+asg
+atk
+aun
+aun
+auo
+axt
+asg
aaa
aaa
aaa
@@ -164537,10 +150875,10 @@ aaa
aaa
aaa
aaa
-alx
-alx
-alx
-alx
+alc
+alc
+alc
+alc
aaa
aaa
aaa
@@ -164576,34 +150914,34 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bgq
-bgq
-bhg
-bhd
-bip
-bjY
-bnR
-bpt
-bqy
-brY
-bjY
-bgq
-bjg
-bye
-dem
-bgs
-bgr
-bgs
-bEa
-bjZ
-bGl
-bgs
-bIP
-bKy
-bMc
-bgs
+aZN
+aZN
+beH
+beH
+bfx
+bfu
+bgG
+bim
+blX
+bnu
+box
+bpV
+bim
+beH
+bhv
+bvP
+cOW
+beJ
+beI
+beJ
+bBA
+bin
+bDF
+beJ
+bGg
+bHO
+bJp
+beJ
aaa
aaa
aaa
@@ -164636,50 +150974,50 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chm
-dEd
-dEC
-dFb
-dFy
-dFO
-chm
-dGp
-dGJ
-dGX
-dHi
-dHr
-dHz
-dHO
-chm
-clZ
-dIh
-dIr
-dIC
-dIM
-cqn
-cqn
-cqn
-cma
-chn
-dJm
-dJw
-dJG
-dJQ
-dKa
-dKk
-chm
-dKx
-dKL
-dKW
-chm
-dLp
-dLu
-ctV
-cuO
-cKF
-cKF
+cGc
+cGc
+ced
+dac
+dan
+dan
+daH
+daQ
+ced
+dba
+dbj
+dbm
+dbo
+dbt
+dbt
+dbC
+ced
+dbI
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+dbL
+cix
+cee
+dbW
+dcd
+dcj
+dcp
+dcs
+dcw
+ced
+dcE
+dcE
+dcS
+ced
+ddf
+ddk
+cqa
+cqT
+cGc
+cGc
aaa
aaa
aaa
@@ -164773,13 +151111,13 @@ aaa
aaa
aaa
aaa
-asK
-asK
-asL
-awb
-asL
-asK
-asK
+asg
+asg
+ash
+avv
+ash
+asg
+asg
aaa
aaa
aaa
@@ -164833,34 +151171,34 @@ aaa
aaa
aaa
aaa
-bbo
-bbq
-bbq
-bgs
-dem
-bhd
-bip
-bjY
-bjY
-bjY
-bqz
-bjY
-bjY
-bgq
-bhd
-bip
-bhd
-bhd
-bhc
-bhd
-bip
-bhd
-bgr
-bgs
-bIQ
-bgs
-bgs
-bgs
+aZN
+aZP
+aZP
+beJ
+cOW
+bfu
+bgG
+bim
+bim
+bim
+boy
+bim
+bim
+beH
+bfu
+bgG
+bfu
+bfu
+bft
+bfu
+bgG
+bfu
+beI
+beJ
+bGh
+beJ
+beJ
+beJ
aaa
aaa
aaa
@@ -164893,50 +151231,50 @@ aaa
aaa
aaa
aaa
-chm
-chm
-chm
-ckK
-dED
-dFc
-dFz
-dFP
-chm
-dGq
-dGK
-dGY
-dHj
-dHs
-dHA
-dHP
-chm
-clZ
-dIi
-dIs
-dID
-dIN
-dIT
-dIX
-dJb
-cma
-chm
-dJn
-dJx
-dJH
-dJR
-dKb
-dKl
-chm
-dKy
-dKM
-dKX
-chm
-dLq
-dLv
-ctV
-cuO
-cKF
-cKF
+ced
+ced
+ced
+chk
+dao
+daz
+daI
+daR
+ced
+dbb
+dbb
+dbb
+dbp
+dbb
+dbb
+dbD
+ced
+dbI
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+dbM
+cix
+ced
+dbX
+dce
+dck
+dcb
+dcb
+dcx
+ced
+dcE
+dcE
+dcS
+ced
+ddg
+ddg
+cqa
+cqT
+cGc
+cGc
aaa
aaa
aaa
@@ -165005,7 +151343,7 @@ aab
aac
aac
aac
-cYd
+cLq
aac
aac
aac
@@ -165091,31 +151429,31 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bgp
-bgq
-bhd
-bVf
-bjZ
-bjZ
-bjZ
-bqA
-dnJ
-bjZ
-dnK
-bjZ
-byf
-bjZ
-bjZ
-bjZ
-bjZ
-bEb
-dfA
-bgs
-bgs
-bIR
-bgs
+aZP
+aZP
+beG
+beH
+bfu
+bSi
+bin
+bin
+bin
+boz
+cUi
+bin
+cUj
+bin
+bvQ
+bin
+bin
+bin
+bin
+bBB
+cPS
+beJ
+beJ
+bGi
+beJ
aaa
aaa
aaa
@@ -165150,50 +151488,50 @@ aaa
aaa
aaa
aaa
-cKF
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-dGr
-dGL
-dGZ
-dHk
-dHt
-dHB
-dHQ
-chm
-dHX
-cmb
-cmb
-cmb
-cmb
-cmb
-cmb
-cmb
-clz
-chn
-dJo
-dJy
-dJI
-dJS
-dKc
-dKm
-chm
-dKz
-dKN
-dKY
-chm
-dLr
-dLw
-ctV
-cuO
-cKF
-cKF
+cGc
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+dba
+dbj
+dbm
+dbp
+dbu
+dbu
+dbE
+ced
+dbJ
+daY
+daY
+daY
+daY
+daY
+daY
+daY
+dbb
+cee
+dbY
+dcf
+dcc
+dcc
+dcc
+dcy
+ced
+dcE
+dcL
+dcE
+ced
+ddh
+ddh
+cqa
+cqT
+cGc
+cGc
aaa
aaa
aaa
@@ -165349,27 +151687,27 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bgr
-bgs
-deO
-bhd
-bhd
-dfA
-dfI
-bgs
-btp
-bgs
-bgs
-bhd
-bhd
-blS
-bhc
-bhd
-bhd
-bgs
-bgs
+aZP
+aZP
+beI
+beJ
+cPn
+bfu
+bfu
+cPS
+cPZ
+beJ
+brm
+beJ
+beJ
+bfu
+bfu
+bkb
+bft
+bfu
+bfu
+beJ
+beJ
aaa
aaa
abC
@@ -165407,50 +151745,50 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-dGs
-dGM
-dHa
-dHl
-dHu
-dHC
-dHR
-chm
-dHY
-clz
-clz
-clz
-clz
-clz
-clz
-clz
-dJe
-chm
-dJp
-dJz
-dJJ
-dJT
-dKd
-dKn
-chm
-dKA
-chm
-dKZ
-chm
-chm
-chm
-chm
-chm
-cKF
-cKF
+cGc
+cGc
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+dbb
+dbb
+dbb
+dbp
+dbb
+dbb
+dbD
+ced
+dbK
+dbb
+dbb
+dbb
+dbb
+dbb
+dbb
+dbb
+dbQ
+ced
+dbZ
+dcg
+dcc
+dcc
+dcc
+dcz
+ced
+dcD
+ced
+dcD
+ced
+ced
+ced
+ced
+ced
+cGc
+cGc
aaa
aaa
aaa
@@ -165606,27 +151944,27 @@ aaa
aaa
aaa
aaa
-bbq
-bbq
-bbq
-bgq
-bgr
-bgq
-bgq
-bpu
-bqD
-brZ
-btq
-bvb
-bgr
-bgq
-bgq
-bgs
-bgq
-bgr
-bgs
-bgs
-bbo
+aZP
+aZP
+aZP
+beH
+beI
+beH
+beH
+bnv
+boA
+bpW
+brn
+bsT
+beI
+beH
+beH
+beJ
+beH
+beI
+beJ
+beJ
+aZN
aaa
aaa
abC
@@ -165664,50 +152002,50 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-chm
-chm
-chm
-chm
-dGt
-dGN
-dHb
-dHm
-dHv
-dHD
-dHS
-chm
-chm
-chn
-chn
-chn
-chn
-chn
-chn
-chn
-chm
-chm
-ckK
-dJA
-dJK
-dJU
-dKe
-dKo
-chm
-dKB
-chm
-dLa
-chm
-chm
-chm
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+ced
+ced
+ced
+ced
+dba
+dbj
+dbm
+dbq
+dbv
+dbv
+dbF
+ced
+ced
+cee
+cee
+cee
+cee
+cee
+cee
+cee
+ced
+ced
+chk
+dch
+dcl
+dcq
+dct
+dcA
+ced
+dcF
+ced
+dcT
+ced
+ced
+ced
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -165865,25 +152203,25 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbq
-bbq
-bgp
-dfB
-bgr
-bgs
-btr
-bgs
-bgr
-bgp
-bbq
-bbo
-bbq
-bbq
-bbq
-bbq
-bbo
+aZN
+aZN
+aZP
+aZP
+beG
+cPT
+beI
+beJ
+bro
+beJ
+beI
+beG
+aZP
+aZN
+aZP
+aZP
+aZP
+aZP
+aZN
aaa
aaa
abC
@@ -165921,50 +152259,50 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-chm
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-chm
-chm
-chn
-chn
-chn
-chm
-chm
-chm
-chm
-chm
-chm
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+ced
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+ced
+ced
+cee
+cee
+cee
+ced
+ced
+ced
+ced
+ced
+ced
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -166123,23 +152461,23 @@ aaa
aaa
aaa
aaa
-bbo
-bbq
-bbq
-bbq
-bpv
-bgs
-bsa
-bts
-bsa
-bww
-bbq
-bbq
-bbo
-bbo
-bbo
-bbp
-bbo
+aZN
+aZP
+aZP
+aZP
+bnw
+beJ
+bpX
+brp
+bpX
+bul
+aZP
+aZP
+aZN
+aZN
+aZN
+aZO
+aZN
aaa
aaa
aaa
@@ -166184,44 +152522,44 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -166305,7 +152643,7 @@ aaa
aaa
aaa
aaP
-akk
+ajR
aaP
abC
aaa
@@ -166381,25 +152719,25 @@ aaa
aaa
aaa
aaa
-bbo
-bbo
-bbo
-bpw
-bgs
-bsb
-btt
-bsb
-bgs
-bbq
-bbo
-bbo
-bbo
-bbo
+aZN
+aZN
+aZN
+bnx
+beJ
+bpY
+brq
+bpY
+beJ
+aZP
+aZN
+aZN
+aZN
+aZN
abC
aaa
aaa
aaP
-bIS
+bGj
aaP
aaa
aaa
@@ -166441,44 +152779,44 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -166640,14 +152978,14 @@ aaa
aaa
aaa
aaa
-bbo
+aZN
aaa
-bgs
-bsb
-btu
-bsb
-bgs
-bbq
+beJ
+bpY
+brr
+bpY
+beJ
+aZP
aaa
aaa
aaa
@@ -166655,8 +152993,8 @@ aaa
abC
aaa
aaP
-bEZ
-bIT
+bCy
+bGk
aaP
aaa
aaa
@@ -166698,44 +153036,44 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -166819,8 +153157,8 @@ aaa
aaa
aaa
aaP
-akl
-akX
+ajS
+akD
aaP
aaP
abC
@@ -166891,19 +153229,19 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-bgs
-bsb
-btv
-bsb
-bgs
+beJ
+bpY
+brs
+bpY
+beJ
aaa
aaa
aaa
@@ -166911,8 +153249,8 @@ aaa
aaa
abC
aaP
-bEZ
-bHx
+bCy
+bEO
abb
aaP
aaa
@@ -166955,44 +153293,44 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -167076,9 +153414,9 @@ aaa
aaa
aaa
aaP
-akm
-akY
-alG
+ajT
+akE
+all
aaP
aaP
aaa
@@ -167148,17 +153486,17 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-btw
+brt
aaa
aaa
aaa
@@ -167167,8 +153505,8 @@ aaa
aaa
aaa
aaP
-bEZ
-bGm
+bCy
+bDG
abs
abb
aaP
@@ -167212,44 +153550,44 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-dLx
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+ddl
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -167333,11 +153671,11 @@ aaa
aaa
aaa
aaP
-akn
-akZ
+ajU
+akF
abr
abV
-anl
+amQ
aaa
aaa
aaa
@@ -167405,29 +153743,29 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
aaa
-bEc
+bBC
abV
abr
abr
-bIU
+bGl
aaP
aaa
aaa
@@ -167469,44 +153807,44 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -167662,19 +154000,19 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -167726,39 +154064,39 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -167919,11 +154257,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -167951,45 +154289,45 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aag
aaa
aaa
@@ -168004,18 +154342,18 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168176,11 +154514,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168208,45 +154546,45 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168261,38 +154599,38 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168433,11 +154771,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168465,45 +154803,45 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168528,28 +154866,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168690,11 +155028,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168722,45 +155060,45 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168785,28 +155123,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168947,11 +155285,11 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -168979,33 +155317,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169042,28 +155380,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169236,33 +155574,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169299,28 +155637,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169493,33 +155831,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169556,28 +155894,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169750,33 +156088,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -169813,28 +156151,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170007,33 +156345,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170070,28 +156408,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170264,33 +156602,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170327,28 +156665,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170521,33 +156859,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170584,28 +156922,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170778,33 +157116,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -170841,28 +157179,28 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
@@ -171035,33 +157373,33 @@ aaa
aaa
aaa
aaa
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
-cKF
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
+cGc
aaa
aaa
aaa
diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm
index 2989cc2df3..0fa6a0f8d2 100644
--- a/code/__DEFINES/atmospherics.dm
+++ b/code/__DEFINES/atmospherics.dm
@@ -15,8 +15,8 @@
#define META_GAS_SPECIFIC_HEAT 1
#define META_GAS_NAME 2
#define META_GAS_MOLES_VISIBLE 3
-#define META_GAS_OVERLAY 4
-#define META_GAS_DANGER 5
+#define META_GAS_OVERLAY 4
+#define META_GAS_DANGER 5
//stuff you should probably leave well alone!
//ATMOS
@@ -170,4 +170,4 @@
#define ATMOS_PASS_NO 0
#define ATMOS_PASS_PROC -1 //ask CanAtmosPass()
#define ATMOS_PASS_DENSITY -2 //just check density
-#define CANATMOSPASS(A, O) ( A.CanAtmosPass == ATMOS_PASS_PROC ? A.CanAtmosPass(O) : ( A.CanAtmosPass == ATMOS_PASS_DENSITY ? !A.density : A.CanAtmosPass ) )
+#define CANATMOSPASS(A, O) ( A.CanAtmosPass == ATMOS_PASS_PROC ? A.CanAtmosPass(O) : ( A.CanAtmosPass == ATMOS_PASS_DENSITY ? !A.density : A.CanAtmosPass ) )
diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm
index e808b03ac7..e9bdeca880 100644
--- a/code/controllers/configuration.dm
+++ b/code/controllers/configuration.dm
@@ -1,931 +1,931 @@
-//Configuraton defines //TODO: Move all yes/no switches into bitflags
-
-//Used by jobs_have_maint_access
-#define ASSISTANTS_HAVE_MAINT_ACCESS 1
-#define SECURITY_HAS_MAINT_ACCESS 2
-#define EVERYONE_HAS_MAINT_ACCESS 4
-
-/datum/configuration/can_vv_get(var_name)
- var/static/list/banned_gets = list("autoadmin", "autoadmin_rank")
- if (var_name in banned_gets)
- return FALSE
- return ..()
-
-/datum/configuration/vv_edit_var(var_name, var_value)
- var/static/list/banned_edits = list("cross_address", "cross_allowed", "autoadmin", "autoadmin_rank")
- if(var_name in banned_edits)
- return FALSE
- return ..()
-
-/datum/configuration
- var/name = "Configuration" // datum name
-
- var/autoadmin = 0
- var/autoadmin_rank = "Game Admin"
-
- var/server_name = null // server name (the name of the game window)
- var/server_sql_name = null // short form server name used for the DB
- var/station_name = null // station name (the name of the station in-game)
- var/lobby_countdown = 120 // In between round countdown.
- var/round_end_countdown = 25 // Post round murder death kill countdown
- var/hub = 0
-
- var/log_ooc = 0 // log OOC channel
- var/log_access = 0 // log login/logout
- var/log_say = 0 // log client say
- var/log_admin = 0 // log admin actions
- var/log_game = 0 // log game events
- var/log_vote = 0 // log voting
- var/log_whisper = 0 // log client whisper
- var/log_prayer = 0 // log prayers
- var/log_law = 0 // log lawchanges
- var/log_emote = 0 // log emotes
- var/log_attack = 0 // log attack messages
- var/log_adminchat = 0 // log admin chat messages
- var/log_pda = 0 // log pda messages
- var/log_twitter = 0 // log certain expliotable parrots and other such fun things in a JSON file of twitter valid phrases.
- var/log_world_topic = 0 // log all world.Topic() calls
- var/sql_enabled = 0 // for sql switching
- var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour
- var/allow_vote_restart = 0 // allow votes to restart
- var/allow_vote_mode = 0 // allow votes to change mode
- var/vote_delay = 6000 // minimum time between voting sessions (deciseconds, 10 minute default)
- var/vote_period = 600 // length of voting period (deciseconds, default 1 minute)
- var/vote_no_default = 0 // vote does not default to nochange/norestart (tbi)
- var/vote_no_dead = 0 // dead people can't vote (tbi)
- var/del_new_on_log = 1 // del's new players if they log before they spawn in
- var/allow_Metadata = 0 // Metadata is supported.
- var/popup_admin_pm = 0 //adminPMs to non-admins show in a pop-up 'reply' window when set to 1.
- var/fps = 20
- var/allow_holidays = 0 //toggles whether holiday-specific content should be used
- var/tick_limit_mc_init = TICK_LIMIT_MC_INIT_DEFAULT //SSinitialization throttling
-
- var/hostedby = null
- var/respawn = 1
- var/guest_jobban = 1
- var/usewhitelist = 0
- var/inactivity_period = 3000 //time in ds until a player is considered inactive
- var/afk_period = 6000 //time in ds until a player is considered afk and kickable
- var/kick_inactive = FALSE //force disconnect for inactive players
- var/load_jobs_from_txt = 0
- var/automute_on = 0 //enables automuting/spam prevention
- var/minimal_access_threshold = 0 //If the number of players is larger than this threshold, minimal access will be turned on.
- var/jobs_have_minimal_access = 0 //determines whether jobs use minimal access or expanded access.
- var/jobs_have_maint_access = 0 //Who gets maint access? See defines above.
- var/sec_start_brig = 0 //makes sec start in brig or dept sec posts
-
- var/server
- var/banappeals
- var/wikiurl = "http://www.tgstation13.org/wiki" // Default wiki link.
- 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
-
- var/check_randomizer = 0
-
- var/allow_panic_bunker_bounce = 0 //Send new players somewhere else
- var/panic_server_name = "somewhere else"
- var/panic_address = "byond://" //Reconnect a player this linked server if this server isn't accepting new players
-
- //IP Intel vars
- var/ipintel_email
- var/ipintel_rating_bad = 1
- var/ipintel_save_good = 12
- var/ipintel_save_bad = 1
- var/ipintel_domain = "check.getipintel.net"
-
- var/admin_legacy_system = 0 //Defines whether the server uses the legacy admin system with admins.txt or the SQL system. Config option in config.txt
- var/ban_legacy_system = 0 //Defines whether the server uses the legacy banning system with the files in /data or the SQL system. Config option in config.txt
- var/use_age_restriction_for_jobs = 0 //Do jobs use account age restrictions? --requires database
- var/use_account_age_for_jobs = 0 //Uses the time they made the account for the job restriction stuff. New player joining alerts should be unaffected.
- var/see_own_notes = 0 //Can players see their own admin notes (read-only)? Config option in config.txt
-
- //Population cap vars
- var/soft_popcap = 0
- var/hard_popcap = 0
- var/extreme_popcap = 0
- var/soft_popcap_message = "Be warned that the server is currently serving a high number of users, consider using alternative game servers."
- var/hard_popcap_message = "The server is currently serving a high number of users, You cannot currently join. You may wait for the number of living crew to decline, observe, or find alternative servers."
- var/extreme_popcap_message = "The server is currently serving a high number of users, find alternative servers."
-
- //game_options.txt configs
- var/force_random_names = 0
- var/list/mode_names = list()
- var/list/modes = list() // allowed modes
- var/list/votable_modes = list() // votable modes
- var/list/probabilities = list() // relative probability of each mode
- var/list/min_pop = list() // overrides for acceptible player counts in a mode
- var/list/max_pop = list()
-
- var/humans_need_surnames = 0
- var/allow_ai = 0 // allow ai job
- var/forbid_secborg = 0 // disallow secborg module to be chosen.
- var/forbid_peaceborg = 0
- var/panic_bunker = 0 // prevents new people it hasn't seen before from connecting
- var/notify_new_player_age = 0 // how long do we notify admins of a new player
- var/notify_new_player_account_age = 0 // how long do we notify admins of a new byond account
- var/irc_first_connection_alert = 0 // do we notify the irc channel when somebody is connecting for the first time?
-
- var/traitor_scaling_coeff = 6 //how much does the amount of players get divided by to determine traitors
- var/changeling_scaling_coeff = 6 //how much does the amount of players get divided by to determine changelings
- var/security_scaling_coeff = 8 //how much does the amount of players get divided by to determine open security officer positions
- var/abductor_scaling_coeff = 15 //how many players per abductor team
-
- var/traitor_objectives_amount = 2
- var/protect_roles_from_antagonist = 0 //If security and such can be traitor/cult/other
- var/protect_assistant_from_antagonist = 0 //If assistants can be traitor/cult/other
- var/enforce_human_authority = 0 //If non-human species are barred from joining as a head of staff
- var/allow_latejoin_antagonists = 0 // If late-joining players can be traitor/changeling
- var/list/continuous = list() // which roundtypes continue if all antagonists die
- var/list/midround_antag = list() // which roundtypes use the midround antagonist system
- var/midround_antag_time_check = 60 // How late (in minutes) you want the midround antag system to stay on, setting this to 0 will disable the system
- var/midround_antag_life_check = 0.7 // A ratio of how many people need to be alive in order for the round not to immediately end in midround antagonist
- var/shuttle_refuel_delay = 12000
- var/show_game_type_odds = 0 //if set this allows players to see the odds of each roundtype on the get revision screen
- var/mutant_races = 0 //players can choose their mutant race before joining the game
- var/list/roundstart_races = list() //races you can play as from the get go. If left undefined the game's roundstart var for species is used
- var/mutant_humans = 0 //players can pick mutant bodyparts for humans before joining the game
-
- var/no_summon_guns //No
- var/no_summon_magic //Fun
- var/no_summon_events //Allowed
-
- var/intercept = 1 //Whether or not to send a communications intercept report roundstart. This may be overriden by gamemodes.
- var/alert_desc_green = "All threats to the station have passed. Security may not have weapons visible, privacy laws are once again fully enforced."
- var/alert_desc_blue_upto = "The station has received reliable information about possible hostile activity on the station. Security staff may have weapons visible, random searches are permitted."
- var/alert_desc_blue_downto = "The immediate threat has passed. Security may no longer have weapons drawn at all times, but may continue to have them visible. Random searches are still allowed."
- var/alert_desc_red_upto = "There is an immediate serious threat to the station. Security may have weapons unholstered at all times. Random searches are allowed and advised."
- var/alert_desc_red_downto = "The station's destruction has been averted. There is still however an immediate serious threat to the station. Security may have weapons unholstered at all times, random searches are allowed and advised."
- var/alert_desc_delta = "Destruction of the station is imminent. All crew are instructed to obey all instructions given by heads of staff. Any violations of these orders can be punished by death. This is not a drill."
-
- var/revival_pod_plants = FALSE
- var/revival_cloning = FALSE
- var/revival_brain_life = -1
-
- var/rename_cyborg = 0
- var/ooc_during_round = 0
- var/emojis = 0
-
- //Used for modifying movement speed for mobs.
- //Unversal modifiers
- var/run_speed = 0
- var/walk_speed = 0
-
- //Mob specific modifiers. NOTE: These will affect different mob types in different ways
- var/human_delay = 0
- var/robot_delay = 0
- var/monkey_delay = 0
- var/alien_delay = 0
- var/slime_delay = 0
- var/animal_delay = 0
-
- var/gateway_delay = 18000 //How long the gateway takes before it activates. Default is half an hour.
- var/ghost_interaction = 0
-
- var/silent_ai = 0
- var/silent_borg = 0
-
- var/damage_multiplier = 1 //Modifier for damage to all mobs. Impacts healing as well.
-
- var/allowwebclient = 0
- var/webclientmembersonly = 0
-
- var/sandbox_autoclose = 0 // close the sandbox panel after spawning an item, potentially reducing griff
-
- var/default_laws = 0 //Controls what laws the AI spawns with.
- var/silicon_max_law_amount = 12
- var/list/lawids = list()
-
- var/list/law_weights = list()
-
- var/assistant_cap = -1
-
- var/starlight = 0
- var/generate_minimaps = 0
- var/grey_assistants = 0
-
- var/lavaland_budget = 60
- var/space_budget = 16
-
- var/aggressive_changelog = 0
-
- var/reactionary_explosions = 0 //If we use reactionary explosions, explosions that react to walls and doors
-
- var/autoconvert_notes = 0 //if all connecting player's notes should attempt to be converted to the database
-
- var/announce_admin_logout = 0
- var/announce_admin_login = 0
-
- var/list/datum/map_config/maplist = list()
- var/datum/map_config/defaultmap = null
- var/maprotation = 1
- var/maprotatechancedelta = 0.75
- var/allow_map_voting = TRUE
-
- // Enables random events mid-round when set to 1
- var/allow_random_events = 0
-
- // Multipliers for random events minimal starting time and minimal players amounts
- var/events_min_time_mul = 1
- var/events_min_players_mul = 1
-
- // The object used for the clickable stat() button.
- var/obj/effect/statclick/statclick
-
- var/client_warn_version = 0
- var/client_warn_message = "Your version of byond may have issues or be blocked from accessing this server in the future."
- var/client_error_version = 0
- var/client_error_message = "Your version of byond is too old, may have issues, and is blocked from accessing this server."
-
- var/cross_name = "Other server"
- var/cross_address = "byond://"
- var/cross_allowed = FALSE
- var/showircname = 0
-
- var/list/gamemode_cache = null
-
- var/minutetopiclimit
- var/secondtopiclimit
-
- var/error_cooldown = 600 // The "cooldown" time for each occurrence of a unique error
- var/error_limit = 50 // How many occurrences before the next will silence them
- 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/arrivals_shuttle_dock_window = 55 //Time from when a player late joins on the arrivals shuttle to when the shuttle docks on the station
- var/arrivals_shuttle_require_safe_latejoin = FALSE //Require the arrivals shuttle to be operational in order for latejoiners to join
-
- var/mice_roundstart = 10 // how many wire chewing rodents spawn at roundstart.
-
-/datum/configuration/New()
- gamemode_cache = typecacheof(/datum/game_mode,TRUE)
- for(var/T in gamemode_cache)
- // I wish I didn't have to instance the game modes in order to look up
- // their information, but it is the only way (at least that I know of).
- var/datum/game_mode/M = new T()
-
- if(M.config_tag)
- if(!(M.config_tag in modes)) // ensure each mode is added only once
- GLOB.config_error_log << "Adding game mode [M.name] ([M.config_tag]) to configuration."
- modes += M.config_tag
- mode_names[M.config_tag] = M.name
- probabilities[M.config_tag] = M.probability
- if(M.votable)
- votable_modes += M.config_tag
- qdel(M)
- votable_modes += "secret"
-
- Reload()
-
-/datum/configuration/proc/Reload()
- load("config/config.txt")
- load("config/game_options.txt","game_options")
- loadsql("config/dbconfig.txt")
- if (maprotation)
- loadmaplist("config/maps.txt")
-
- // apply some settings from config..
- GLOB.abandon_allowed = respawn
-
-/datum/configuration/proc/load(filename, type = "config") //the type can also be game_options, in which case it uses a different switch. not making it separate to not copypaste code - Urist
- var/list/Lines = world.file2list(filename)
-
- for(var/t in Lines)
- if(!t)
- continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/name = null
- var/value = null
-
- if(pos)
- name = lowertext(copytext(t, 1, pos))
- value = copytext(t, pos + 1)
- else
- name = lowertext(t)
-
- if(!name)
- continue
-
- if(type == "config")
- switch(name)
- if("hub")
- hub = 1
- if("admin_legacy_system")
- admin_legacy_system = 1
- if("ban_legacy_system")
- ban_legacy_system = 1
- if("use_age_restriction_for_jobs")
- use_age_restriction_for_jobs = 1
- if("use_account_age_for_jobs")
- use_account_age_for_jobs = 1
- if("lobby_countdown")
- lobby_countdown = text2num(value)
- if("round_end_countdown")
- round_end_countdown = text2num(value)
- if("log_ooc")
- log_ooc = 1
- if("log_access")
- log_access = 1
- if("log_say")
- log_say = 1
- if("log_admin")
- log_admin = 1
- if("log_prayer")
- log_prayer = 1
- if("log_law")
- log_law = 1
- if("log_game")
- log_game = 1
- if("log_vote")
- log_vote = 1
- if("log_whisper")
- log_whisper = 1
- if("log_attack")
- log_attack = 1
- if("log_emote")
- log_emote = 1
- if("log_adminchat")
- log_adminchat = 1
- if("log_pda")
- log_pda = 1
- if("log_twitter")
- log_twitter = 1
- if("log_world_topic")
- log_world_topic = 1
- if("allow_admin_ooccolor")
- allow_admin_ooccolor = 1
- if("allow_vote_restart")
- allow_vote_restart = 1
- if("allow_vote_mode")
- allow_vote_mode = 1
- if("no_dead_vote")
- vote_no_dead = 1
- if("default_no_vote")
- vote_no_default = 1
- if("vote_delay")
- vote_delay = text2num(value)
- if("vote_period")
- vote_period = text2num(value)
- if("norespawn")
- respawn = 0
- if("servername")
- server_name = value
- if("serversqlname")
- server_sql_name = value
- if("stationname")
- station_name = value
- if("hostedby")
- hostedby = value
- if("server")
- server = value
- if("banappeals")
- banappeals = value
- if("wikiurl")
- wikiurl = value
- if("forumurl")
- forumurl = value
- if("rulesurl")
- rulesurl = value
- if("githuburl")
- githuburl = value
- if("githubrepoid")
- githubrepoid = value
- if("guest_jobban")
- guest_jobban = 1
- if("guest_ban")
- GLOB.guests_allowed = 0
- if("usewhitelist")
- usewhitelist = TRUE
- if("allow_metadata")
- allow_Metadata = 1
- if("inactivity_period")
- inactivity_period = text2num(value) * 10 //documented as seconds in config.txt
- if("afk_period")
- afk_period = text2num(value) * 10 // ^^^
- if("kick_inactive")
- kick_inactive = TRUE
- if("load_jobs_from_txt")
- load_jobs_from_txt = 1
- if("forbid_singulo_possession")
- forbid_singulo_possession = 1
- if("popup_admin_pm")
- popup_admin_pm = 1
- if("allow_holidays")
- allow_holidays = 1
- if("useircbot")
- useircbot = 1
- if("ticklag")
- var/ticklag = text2num(value)
- if(ticklag > 0)
- fps = 10 / ticklag
- if("tick_limit_mc_init")
- tick_limit_mc_init = text2num(value)
- if("fps")
- fps = text2num(value)
- if("automute_on")
- automute_on = 1
- if("comms_key")
- global.comms_key = value
- if(value != "default_pwd" && length(value) > 6) //It's the default value or less than 6 characters long, warn badmins
- global.comms_allowed = 1
- if("cross_server_address")
- cross_address = value
- if(value != "byond:\\address:port")
- cross_allowed = 1
- if("cross_comms_name")
- cross_name = value
- if("panic_server_name")
- panic_server_name = value
- if("panic_server_address")
- panic_address = value
- if(value != "byond:\\address:port")
- allow_panic_bunker_bounce = 1
- if("medal_hub_address")
- global.medal_hub = value
- if("medal_hub_password")
- global.medal_pass = value
- if("show_irc_name")
- showircname = 1
- if("see_own_notes")
- see_own_notes = 1
- if("soft_popcap")
- soft_popcap = text2num(value)
- if("hard_popcap")
- hard_popcap = text2num(value)
- if("extreme_popcap")
- extreme_popcap = text2num(value)
- if("soft_popcap_message")
- soft_popcap_message = value
- if("hard_popcap_message")
- hard_popcap_message = value
- if("extreme_popcap_message")
- extreme_popcap_message = value
- if("panic_bunker")
- panic_bunker = 1
- if("notify_new_player_age")
- notify_new_player_age = text2num(value)
- if("notify_new_player_account_age")
- notify_new_player_account_age = text2num(value)
- if("irc_first_connection_alert")
- irc_first_connection_alert = 1
- if("check_randomizer")
- check_randomizer = 1
- if("ipintel_email")
- if (value != "ch@nge.me")
- ipintel_email = value
- if("ipintel_rating_bad")
- ipintel_rating_bad = text2num(value)
- if("ipintel_domain")
- ipintel_domain = value
- if("ipintel_save_good")
- ipintel_save_good = text2num(value)
- if("ipintel_save_bad")
- ipintel_save_bad = text2num(value)
- if("aggressive_changelog")
- aggressive_changelog = 1
- if("autoconvert_notes")
- autoconvert_notes = 1
- if("allow_webclient")
- allowwebclient = 1
- if("webclient_only_byond_members")
- webclientmembersonly = 1
- if("announce_admin_logout")
- announce_admin_logout = 1
- if("announce_admin_login")
- announce_admin_login = 1
- if("maprotation")
- maprotation = 1
- if("allow_map_voting")
- allow_map_voting = text2num(value)
- if("maprotationchancedelta")
- maprotatechancedelta = text2num(value)
- if("autoadmin")
- autoadmin = 1
- if(value)
- autoadmin_rank = ckeyEx(value)
- if("generate_minimaps")
- generate_minimaps = 1
- if("client_warn_version")
- client_warn_version = text2num(value)
- if("client_warn_message")
- client_warn_message = value
- if("client_error_version")
- client_error_version = text2num(value)
- if("client_error_message")
- client_error_message = value
- if("minute_topic_limit")
- minutetopiclimit = text2num(value)
- if("second_topic_limit")
- secondtopiclimit = text2num(value)
- if("error_cooldown")
- error_cooldown = text2num(value)
- if("error_limit")
- error_limit = text2num(value)
- if("error_silence_time")
- error_silence_time = text2num(value)
- if("error_msg_delay")
- error_msg_delay = text2num(value)
- else
- GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
-
- else if(type == "game_options")
- switch(name)
- if("damage_multiplier")
- damage_multiplier = text2num(value)
- if("revival_pod_plants")
- revival_pod_plants = TRUE
- if("revival_cloning")
- revival_cloning = TRUE
- if("revival_brain_life")
- revival_brain_life = text2num(value)
- if("rename_cyborg")
- rename_cyborg = 1
- if("ooc_during_round")
- ooc_during_round = 1
- if("emojis")
- emojis = 1
- if("run_delay")
- run_speed = text2num(value)
- if("walk_delay")
- walk_speed = text2num(value)
- if("human_delay")
- human_delay = text2num(value)
- if("robot_delay")
- robot_delay = text2num(value)
- if("monkey_delay")
- monkey_delay = text2num(value)
- if("alien_delay")
- alien_delay = text2num(value)
- if("slime_delay")
- slime_delay = text2num(value)
- if("animal_delay")
- animal_delay = text2num(value)
- if("alert_red_upto")
- alert_desc_red_upto = value
- if("alert_red_downto")
- alert_desc_red_downto = value
- if("alert_blue_downto")
- alert_desc_blue_downto = value
- if("alert_blue_upto")
- alert_desc_blue_upto = value
- if("alert_green")
- alert_desc_green = value
- if("alert_delta")
- alert_desc_delta = value
- if("no_intercept_report")
- intercept = 0
- if("assistants_have_maint_access")
- jobs_have_maint_access |= ASSISTANTS_HAVE_MAINT_ACCESS
- if("security_has_maint_access")
- jobs_have_maint_access |= SECURITY_HAS_MAINT_ACCESS
- if("everyone_has_maint_access")
- jobs_have_maint_access |= EVERYONE_HAS_MAINT_ACCESS
- if("sec_start_brig")
- sec_start_brig = 1
- if("gateway_delay")
- gateway_delay = text2num(value)
- if("continuous")
- var/mode_name = lowertext(value)
- if(mode_name in modes)
- continuous[mode_name] = 1
- else
- GLOB.config_error_log << "Unknown continuous configuration definition: [mode_name]."
- if("midround_antag")
- var/mode_name = lowertext(value)
- if(mode_name in modes)
- midround_antag[mode_name] = 1
- else
- GLOB.config_error_log << "Unknown midround antagonist configuration definition: [mode_name]."
- if("midround_antag_time_check")
- midround_antag_time_check = text2num(value)
- if("midround_antag_life_check")
- midround_antag_life_check = text2num(value)
- if("min_pop")
- var/pop_pos = findtext(value, " ")
- var/mode_name = null
- var/mode_value = null
-
- if(pop_pos)
- mode_name = lowertext(copytext(value, 1, pop_pos))
- mode_value = copytext(value, pop_pos + 1)
- if(mode_name in modes)
- min_pop[mode_name] = text2num(mode_value)
- else
- GLOB.config_error_log << "Unknown minimum population configuration definition: [mode_name]."
- else
- GLOB.config_error_log << "Incorrect minimum population configuration definition: [mode_name] [mode_value]."
- if("max_pop")
- var/pop_pos = findtext(value, " ")
- var/mode_name = null
- var/mode_value = null
-
- if(pop_pos)
- mode_name = lowertext(copytext(value, 1, pop_pos))
- mode_value = copytext(value, pop_pos + 1)
- if(mode_name in modes)
- max_pop[mode_name] = text2num(mode_value)
- else
- GLOB.config_error_log << "Unknown maximum population configuration definition: [mode_name]."
- else
- GLOB.config_error_log << "Incorrect maximum population configuration definition: [mode_name] [mode_value]."
- if("shuttle_refuel_delay")
- shuttle_refuel_delay = text2num(value)
- if("show_game_type_odds")
- show_game_type_odds = 1
- if("ghost_interaction")
- ghost_interaction = 1
- if("traitor_scaling_coeff")
- traitor_scaling_coeff = text2num(value)
- if("changeling_scaling_coeff")
- changeling_scaling_coeff = text2num(value)
- if("security_scaling_coeff")
- security_scaling_coeff = text2num(value)
- if("abductor_scaling_coeff")
- abductor_scaling_coeff = text2num(value)
- if("traitor_objectives_amount")
- traitor_objectives_amount = text2num(value)
- if("probability")
- var/prob_pos = findtext(value, " ")
- var/prob_name = null
- var/prob_value = null
-
- if(prob_pos)
- prob_name = lowertext(copytext(value, 1, prob_pos))
- prob_value = copytext(value, prob_pos + 1)
- if(prob_name in modes)
- probabilities[prob_name] = text2num(prob_value)
- else
- GLOB.config_error_log << "Unknown game mode probability configuration definition: [prob_name]."
- else
- GLOB.config_error_log << "Incorrect probability configuration definition: [prob_name] [prob_value]."
-
- if("protect_roles_from_antagonist")
- protect_roles_from_antagonist = 1
- if("protect_assistant_from_antagonist")
- protect_assistant_from_antagonist = 1
- if("enforce_human_authority")
- enforce_human_authority = 1
- if("allow_latejoin_antagonists")
- allow_latejoin_antagonists = 1
- if("allow_random_events")
- allow_random_events = 1
-
- if("events_min_time_mul")
- events_min_time_mul = text2num(value)
- if("events_min_players_mul")
- events_min_players_mul = text2num(value)
-
- if("minimal_access_threshold")
- minimal_access_threshold = text2num(value)
- if("jobs_have_minimal_access")
- jobs_have_minimal_access = 1
- if("humans_need_surnames")
- humans_need_surnames = 1
- if("force_random_names")
- force_random_names = 1
- if("allow_ai")
- allow_ai = 1
- if("disable_secborg")
- forbid_secborg = 1
- if("disable_peaceborg")
- forbid_peaceborg = 1
- if("silent_ai")
- silent_ai = 1
- if("silent_borg")
- silent_borg = 1
- if("sandbox_autoclose")
- sandbox_autoclose = 1
- if("default_laws")
- default_laws = text2num(value)
- if("random_laws")
- var/law_id = lowertext(value)
- lawids += law_id
- if("law_weight")
- // Value is in the form "LAWID,NUMBER"
- var/list/L = splittext(value, ",")
- if(L.len != 2)
- GLOB.config_error_log << "Invalid LAW_WEIGHT: " + t
- continue
- var/lawid = L[1]
- var/weight = text2num(L[2])
- law_weights[lawid] = weight
-
- if("silicon_max_law_amount")
- silicon_max_law_amount = text2num(value)
- if("join_with_mutant_race")
- mutant_races = 1
- if("roundstart_races")
- var/race_id = lowertext(value)
- for(var/species_id in GLOB.species_list)
- if(species_id == race_id)
- roundstart_races += GLOB.species_list[species_id]
- GLOB.roundstart_species[species_id] = GLOB.species_list[species_id]
- if("join_with_mutant_humans")
- mutant_humans = 1
- if("assistant_cap")
- assistant_cap = text2num(value)
- if("starlight")
- starlight = 1
- if("grey_assistants")
- grey_assistants = 1
- if("lavaland_budget")
- lavaland_budget = text2num(value)
- if("space_budget")
- space_budget = text2num(value)
- if("no_summon_guns")
- no_summon_guns = 1
- if("no_summon_magic")
- no_summon_magic = 1
- if("no_summon_events")
- no_summon_events = 1
- if("reactionary_explosions")
- reactionary_explosions = 1
- if("bombcap")
- var/BombCap = text2num(value)
- if (!BombCap)
- continue
- if (BombCap < 4)
- BombCap = 4
-
- GLOB.MAX_EX_DEVESTATION_RANGE = round(BombCap/4)
- GLOB.MAX_EX_HEAVY_RANGE = round(BombCap/2)
- GLOB.MAX_EX_LIGHT_RANGE = BombCap
- GLOB.MAX_EX_FLASH_RANGE = BombCap
- GLOB.MAX_EX_FLAME_RANGE = BombCap
- if("arrivals_shuttle_dock_window")
- arrivals_shuttle_dock_window = max(PARALLAX_LOOP_TIME, text2num(value))
- if("arrivals_shuttle_require_safe_latejoin")
- arrivals_shuttle_require_safe_latejoin = TRUE
- if("mice_roundstart")
- mice_roundstart = text2num(value)
- if ("mentor_mobname_only")
- mentors_mobname_only = 1
- if ("mentor_legacy_system")
- mentor_legacy_system = 1
- else
- GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
-
- fps = round(fps)
- if(fps <= 0)
- fps = initial(fps)
-
-
-/datum/configuration/proc/loadmaplist(filename)
- var/list/Lines = world.file2list(filename)
-
- var/datum/map_config/currentmap = null
- for(var/t in Lines)
- if(!t)
- continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/command = null
- var/data = null
-
- if(pos)
- command = lowertext(copytext(t, 1, pos))
- data = copytext(t, pos + 1)
- else
- command = lowertext(t)
-
- if(!command)
- continue
-
- if (!currentmap && command != "map")
- continue
-
- switch (command)
- if ("map")
- currentmap = new ("_maps/[data].json")
- if(currentmap.defaulted)
- log_world("Failed to load map config for [data]!")
- if ("minplayers","minplayer")
- currentmap.config_min_users = text2num(data)
- if ("maxplayers","maxplayer")
- currentmap.config_max_users = text2num(data)
- if ("weight","voteweight")
- currentmap.voteweight = text2num(data)
- if ("default","defaultmap")
- defaultmap = currentmap
- if ("endmap")
- maplist[currentmap.map_name] = currentmap
- currentmap = null
- else
- GLOB.config_error_log << "Unknown command in map vote config: '[command]'"
-
-
-/datum/configuration/proc/loadsql(filename)
- var/list/Lines = world.file2list(filename)
- for(var/t in Lines)
- if(!t)
- continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/name = null
- var/value = null
-
- if(pos)
- name = lowertext(copytext(t, 1, pos))
- value = copytext(t, pos + 1)
- else
- name = lowertext(t)
-
- if(!name)
- continue
-
- switch(name)
- if("sql_enabled")
- sql_enabled = 1
- if("address")
- global.sqladdress = value
- if("port")
- global.sqlport = value
- if("feedback_database")
- global.sqlfdbkdb = value
- if("feedback_login")
- global.sqlfdbklogin = value
- if("feedback_password")
- global.sqlfdbkpass = value
- if("feedback_tableprefix")
- global.sqlfdbktableprefix = value
- else
- GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
-
-/datum/configuration/proc/pick_mode(mode_name)
- // I wish I didn't have to instance the game modes in order to look up
- // their information, but it is the only way (at least that I know of).
- for(var/T in gamemode_cache)
- var/datum/game_mode/M = new T()
- if(M.config_tag && M.config_tag == mode_name)
- return M
- qdel(M)
- return new /datum/game_mode/extended()
-
-/datum/configuration/proc/get_runnable_modes()
- var/list/datum/game_mode/runnable_modes = new
- for(var/T in gamemode_cache)
- var/datum/game_mode/M = new T()
- //to_chat(world, "DEBUG: [T], tag=[M.config_tag], prob=[probabilities[M.config_tag]]")
- if(!(M.config_tag in modes))
- qdel(M)
- continue
- if(probabilities[M.config_tag]<=0)
- qdel(M)
- continue
- if(min_pop[M.config_tag])
- M.required_players = min_pop[M.config_tag]
- if(max_pop[M.config_tag])
- M.maximum_players = max_pop[M.config_tag]
- if(M.can_start())
- runnable_modes[M] = probabilities[M.config_tag]
- //to_chat(world, "DEBUG: runnable_mode\[[runnable_modes.len]\] = [M.config_tag]")
- return runnable_modes
-
-/datum/configuration/proc/get_runnable_midround_modes(crew)
- var/list/datum/game_mode/runnable_modes = new
- for(var/T in (gamemode_cache - SSticker.mode.type))
- var/datum/game_mode/M = new T()
- if(!(M.config_tag in modes))
- qdel(M)
- continue
- if(probabilities[M.config_tag]<=0)
- qdel(M)
- continue
- if(min_pop[M.config_tag])
- M.required_players = min_pop[M.config_tag]
- if(max_pop[M.config_tag])
- M.maximum_players = max_pop[M.config_tag]
- if(M.required_players <= crew)
- if(M.maximum_players >= 0 && M.maximum_players < crew)
- continue
- runnable_modes[M] = probabilities[M.config_tag]
- return runnable_modes
-
-/datum/configuration/proc/stat_entry()
- if(!statclick)
- statclick = new/obj/effect/statclick/debug(null, "Edit", src)
-
- stat("[name]:", statclick)
+//Configuraton defines //TODO: Move all yes/no switches into bitflags
+
+//Used by jobs_have_maint_access
+#define ASSISTANTS_HAVE_MAINT_ACCESS 1
+#define SECURITY_HAS_MAINT_ACCESS 2
+#define EVERYONE_HAS_MAINT_ACCESS 4
+
+/datum/configuration/can_vv_get(var_name)
+ var/static/list/banned_gets = list("autoadmin", "autoadmin_rank")
+ if (var_name in banned_gets)
+ return FALSE
+ return ..()
+
+/datum/configuration/vv_edit_var(var_name, var_value)
+ var/static/list/banned_edits = list("cross_address", "cross_allowed", "autoadmin", "autoadmin_rank")
+ if(var_name in banned_edits)
+ return FALSE
+ return ..()
+
+/datum/configuration
+ var/name = "Configuration" // datum name
+
+ var/autoadmin = 0
+ var/autoadmin_rank = "Game Admin"
+
+ var/server_name = null // server name (the name of the game window)
+ var/server_sql_name = null // short form server name used for the DB
+ var/station_name = null // station name (the name of the station in-game)
+ var/lobby_countdown = 120 // In between round countdown.
+ var/round_end_countdown = 25 // Post round murder death kill countdown
+ var/hub = 0
+
+ var/log_ooc = 0 // log OOC channel
+ var/log_access = 0 // log login/logout
+ var/log_say = 0 // log client say
+ var/log_admin = 0 // log admin actions
+ var/log_game = 0 // log game events
+ var/log_vote = 0 // log voting
+ var/log_whisper = 0 // log client whisper
+ var/log_prayer = 0 // log prayers
+ var/log_law = 0 // log lawchanges
+ var/log_emote = 0 // log emotes
+ var/log_attack = 0 // log attack messages
+ var/log_adminchat = 0 // log admin chat messages
+ var/log_pda = 0 // log pda messages
+ var/log_twitter = 0 // log certain expliotable parrots and other such fun things in a JSON file of twitter valid phrases.
+ var/log_world_topic = 0 // log all world.Topic() calls
+ var/sql_enabled = 0 // for sql switching
+ var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour
+ var/allow_vote_restart = 0 // allow votes to restart
+ var/allow_vote_mode = 0 // allow votes to change mode
+ var/vote_delay = 6000 // minimum time between voting sessions (deciseconds, 10 minute default)
+ var/vote_period = 600 // length of voting period (deciseconds, default 1 minute)
+ var/vote_no_default = 0 // vote does not default to nochange/norestart (tbi)
+ var/vote_no_dead = 0 // dead people can't vote (tbi)
+ var/del_new_on_log = 1 // del's new players if they log before they spawn in
+ var/allow_Metadata = 0 // Metadata is supported.
+ var/popup_admin_pm = 0 //adminPMs to non-admins show in a pop-up 'reply' window when set to 1.
+ var/fps = 20
+ var/allow_holidays = 0 //toggles whether holiday-specific content should be used
+ var/tick_limit_mc_init = TICK_LIMIT_MC_INIT_DEFAULT //SSinitialization throttling
+
+ var/hostedby = null
+ var/respawn = 1
+ var/guest_jobban = 1
+ var/usewhitelist = 0
+ var/inactivity_period = 3000 //time in ds until a player is considered inactive
+ var/afk_period = 6000 //time in ds until a player is considered afk and kickable
+ var/kick_inactive = FALSE //force disconnect for inactive players
+ var/load_jobs_from_txt = 0
+ var/automute_on = 0 //enables automuting/spam prevention
+ var/minimal_access_threshold = 0 //If the number of players is larger than this threshold, minimal access will be turned on.
+ var/jobs_have_minimal_access = 0 //determines whether jobs use minimal access or expanded access.
+ var/jobs_have_maint_access = 0 //Who gets maint access? See defines above.
+ var/sec_start_brig = 0 //makes sec start in brig or dept sec posts
+
+ var/server
+ var/banappeals
+ var/wikiurl = "http://www.tgstation13.org/wiki" // Default wiki link.
+ 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
+
+ var/check_randomizer = 0
+
+ var/allow_panic_bunker_bounce = 0 //Send new players somewhere else
+ var/panic_server_name = "somewhere else"
+ var/panic_address = "byond://" //Reconnect a player this linked server if this server isn't accepting new players
+
+ //IP Intel vars
+ var/ipintel_email
+ var/ipintel_rating_bad = 1
+ var/ipintel_save_good = 12
+ var/ipintel_save_bad = 1
+ var/ipintel_domain = "check.getipintel.net"
+
+ var/admin_legacy_system = 0 //Defines whether the server uses the legacy admin system with admins.txt or the SQL system. Config option in config.txt
+ var/ban_legacy_system = 0 //Defines whether the server uses the legacy banning system with the files in /data or the SQL system. Config option in config.txt
+ var/use_age_restriction_for_jobs = 0 //Do jobs use account age restrictions? --requires database
+ var/use_account_age_for_jobs = 0 //Uses the time they made the account for the job restriction stuff. New player joining alerts should be unaffected.
+ var/see_own_notes = 0 //Can players see their own admin notes (read-only)? Config option in config.txt
+
+ //Population cap vars
+ var/soft_popcap = 0
+ var/hard_popcap = 0
+ var/extreme_popcap = 0
+ var/soft_popcap_message = "Be warned that the server is currently serving a high number of users, consider using alternative game servers."
+ var/hard_popcap_message = "The server is currently serving a high number of users, You cannot currently join. You may wait for the number of living crew to decline, observe, or find alternative servers."
+ var/extreme_popcap_message = "The server is currently serving a high number of users, find alternative servers."
+
+ //game_options.txt configs
+ var/force_random_names = 0
+ var/list/mode_names = list()
+ var/list/modes = list() // allowed modes
+ var/list/votable_modes = list() // votable modes
+ var/list/probabilities = list() // relative probability of each mode
+ var/list/min_pop = list() // overrides for acceptible player counts in a mode
+ var/list/max_pop = list()
+
+ var/humans_need_surnames = 0
+ var/allow_ai = 0 // allow ai job
+ var/forbid_secborg = 0 // disallow secborg module to be chosen.
+ var/forbid_peaceborg = 0
+ var/panic_bunker = 0 // prevents new people it hasn't seen before from connecting
+ var/notify_new_player_age = 0 // how long do we notify admins of a new player
+ var/notify_new_player_account_age = 0 // how long do we notify admins of a new byond account
+ var/irc_first_connection_alert = 0 // do we notify the irc channel when somebody is connecting for the first time?
+
+ var/traitor_scaling_coeff = 6 //how much does the amount of players get divided by to determine traitors
+ var/changeling_scaling_coeff = 6 //how much does the amount of players get divided by to determine changelings
+ var/security_scaling_coeff = 8 //how much does the amount of players get divided by to determine open security officer positions
+ var/abductor_scaling_coeff = 15 //how many players per abductor team
+
+ var/traitor_objectives_amount = 2
+ var/protect_roles_from_antagonist = 0 //If security and such can be traitor/cult/other
+ var/protect_assistant_from_antagonist = 0 //If assistants can be traitor/cult/other
+ var/enforce_human_authority = 0 //If non-human species are barred from joining as a head of staff
+ var/allow_latejoin_antagonists = 0 // If late-joining players can be traitor/changeling
+ var/list/continuous = list() // which roundtypes continue if all antagonists die
+ var/list/midround_antag = list() // which roundtypes use the midround antagonist system
+ var/midround_antag_time_check = 60 // How late (in minutes) you want the midround antag system to stay on, setting this to 0 will disable the system
+ var/midround_antag_life_check = 0.7 // A ratio of how many people need to be alive in order for the round not to immediately end in midround antagonist
+ var/shuttle_refuel_delay = 12000
+ var/show_game_type_odds = 0 //if set this allows players to see the odds of each roundtype on the get revision screen
+ var/mutant_races = 0 //players can choose their mutant race before joining the game
+ var/list/roundstart_races = list() //races you can play as from the get go. If left undefined the game's roundstart var for species is used
+ var/mutant_humans = 0 //players can pick mutant bodyparts for humans before joining the game
+
+ var/no_summon_guns //No
+ var/no_summon_magic //Fun
+ var/no_summon_events //Allowed
+
+ var/intercept = 1 //Whether or not to send a communications intercept report roundstart. This may be overriden by gamemodes.
+ var/alert_desc_green = "All threats to the station have passed. Security may not have weapons visible, privacy laws are once again fully enforced."
+ var/alert_desc_blue_upto = "The station has received reliable information about possible hostile activity on the station. Security staff may have weapons visible, random searches are permitted."
+ var/alert_desc_blue_downto = "The immediate threat has passed. Security may no longer have weapons drawn at all times, but may continue to have them visible. Random searches are still allowed."
+ var/alert_desc_red_upto = "There is an immediate serious threat to the station. Security may have weapons unholstered at all times. Random searches are allowed and advised."
+ var/alert_desc_red_downto = "The station's destruction has been averted. There is still however an immediate serious threat to the station. Security may have weapons unholstered at all times, random searches are allowed and advised."
+ var/alert_desc_delta = "Destruction of the station is imminent. All crew are instructed to obey all instructions given by heads of staff. Any violations of these orders can be punished by death. This is not a drill."
+
+ var/revival_pod_plants = FALSE
+ var/revival_cloning = FALSE
+ var/revival_brain_life = -1
+
+ var/rename_cyborg = 0
+ var/ooc_during_round = 0
+ var/emojis = 0
+
+ //Used for modifying movement speed for mobs.
+ //Unversal modifiers
+ var/run_speed = 0
+ var/walk_speed = 0
+
+ //Mob specific modifiers. NOTE: These will affect different mob types in different ways
+ var/human_delay = 0
+ var/robot_delay = 0
+ var/monkey_delay = 0
+ var/alien_delay = 0
+ var/slime_delay = 0
+ var/animal_delay = 0
+
+ var/gateway_delay = 18000 //How long the gateway takes before it activates. Default is half an hour.
+ var/ghost_interaction = 0
+
+ var/silent_ai = 0
+ var/silent_borg = 0
+
+ var/damage_multiplier = 1 //Modifier for damage to all mobs. Impacts healing as well.
+
+ var/allowwebclient = 0
+ var/webclientmembersonly = 0
+
+ var/sandbox_autoclose = 0 // close the sandbox panel after spawning an item, potentially reducing griff
+
+ var/default_laws = 0 //Controls what laws the AI spawns with.
+ var/silicon_max_law_amount = 12
+ var/list/lawids = list()
+
+ var/list/law_weights = list()
+
+ var/assistant_cap = -1
+
+ var/starlight = 0
+ var/generate_minimaps = 0
+ var/grey_assistants = 0
+
+ var/lavaland_budget = 60
+ var/space_budget = 16
+
+ var/aggressive_changelog = 0
+
+ var/reactionary_explosions = 0 //If we use reactionary explosions, explosions that react to walls and doors
+
+ var/autoconvert_notes = 0 //if all connecting player's notes should attempt to be converted to the database
+
+ var/announce_admin_logout = 0
+ var/announce_admin_login = 0
+
+ var/list/datum/map_config/maplist = list()
+ var/datum/map_config/defaultmap = null
+ var/maprotation = 1
+ var/maprotatechancedelta = 0.75
+ var/allow_map_voting = TRUE
+
+ // Enables random events mid-round when set to 1
+ var/allow_random_events = 0
+
+ // Multipliers for random events minimal starting time and minimal players amounts
+ var/events_min_time_mul = 1
+ var/events_min_players_mul = 1
+
+ // The object used for the clickable stat() button.
+ var/obj/effect/statclick/statclick
+
+ var/client_warn_version = 0
+ var/client_warn_message = "Your version of byond may have issues or be blocked from accessing this server in the future."
+ var/client_error_version = 0
+ var/client_error_message = "Your version of byond is too old, may have issues, and is blocked from accessing this server."
+
+ var/cross_name = "Other server"
+ var/cross_address = "byond://"
+ var/cross_allowed = FALSE
+ var/showircname = 0
+
+ var/list/gamemode_cache = null
+
+ var/minutetopiclimit
+ var/secondtopiclimit
+
+ var/error_cooldown = 600 // The "cooldown" time for each occurrence of a unique error
+ var/error_limit = 50 // How many occurrences before the next will silence them
+ 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/arrivals_shuttle_dock_window = 55 //Time from when a player late joins on the arrivals shuttle to when the shuttle docks on the station
+ var/arrivals_shuttle_require_safe_latejoin = FALSE //Require the arrivals shuttle to be operational in order for latejoiners to join
+
+ var/mice_roundstart = 10 // how many wire chewing rodents spawn at roundstart.
+
+/datum/configuration/New()
+ gamemode_cache = typecacheof(/datum/game_mode,TRUE)
+ for(var/T in gamemode_cache)
+ // I wish I didn't have to instance the game modes in order to look up
+ // their information, but it is the only way (at least that I know of).
+ var/datum/game_mode/M = new T()
+
+ if(M.config_tag)
+ if(!(M.config_tag in modes)) // ensure each mode is added only once
+ GLOB.config_error_log << "Adding game mode [M.name] ([M.config_tag]) to configuration."
+ modes += M.config_tag
+ mode_names[M.config_tag] = M.name
+ probabilities[M.config_tag] = M.probability
+ if(M.votable)
+ votable_modes += M.config_tag
+ qdel(M)
+ votable_modes += "secret"
+
+ Reload()
+
+/datum/configuration/proc/Reload()
+ load("config/config.txt")
+ load("config/game_options.txt","game_options")
+ loadsql("config/dbconfig.txt")
+ if (maprotation)
+ loadmaplist("config/maps.txt")
+
+ // apply some settings from config..
+ GLOB.abandon_allowed = respawn
+
+/datum/configuration/proc/load(filename, type = "config") //the type can also be game_options, in which case it uses a different switch. not making it separate to not copypaste code - Urist
+ var/list/Lines = world.file2list(filename)
+
+ for(var/t in Lines)
+ if(!t)
+ continue
+
+ t = trim(t)
+ if(length(t) == 0)
+ continue
+ else if(copytext(t, 1, 2) == "#")
+ continue
+
+ var/pos = findtext(t, " ")
+ var/name = null
+ var/value = null
+
+ if(pos)
+ name = lowertext(copytext(t, 1, pos))
+ value = copytext(t, pos + 1)
+ else
+ name = lowertext(t)
+
+ if(!name)
+ continue
+
+ if(type == "config")
+ switch(name)
+ if("hub")
+ hub = 1
+ if("admin_legacy_system")
+ admin_legacy_system = 1
+ if("ban_legacy_system")
+ ban_legacy_system = 1
+ if("use_age_restriction_for_jobs")
+ use_age_restriction_for_jobs = 1
+ if("use_account_age_for_jobs")
+ use_account_age_for_jobs = 1
+ if("lobby_countdown")
+ lobby_countdown = text2num(value)
+ if("round_end_countdown")
+ round_end_countdown = text2num(value)
+ if("log_ooc")
+ log_ooc = 1
+ if("log_access")
+ log_access = 1
+ if("log_say")
+ log_say = 1
+ if("log_admin")
+ log_admin = 1
+ if("log_prayer")
+ log_prayer = 1
+ if("log_law")
+ log_law = 1
+ if("log_game")
+ log_game = 1
+ if("log_vote")
+ log_vote = 1
+ if("log_whisper")
+ log_whisper = 1
+ if("log_attack")
+ log_attack = 1
+ if("log_emote")
+ log_emote = 1
+ if("log_adminchat")
+ log_adminchat = 1
+ if("log_pda")
+ log_pda = 1
+ if("log_twitter")
+ log_twitter = 1
+ if("log_world_topic")
+ log_world_topic = 1
+ if("allow_admin_ooccolor")
+ allow_admin_ooccolor = 1
+ if("allow_vote_restart")
+ allow_vote_restart = 1
+ if("allow_vote_mode")
+ allow_vote_mode = 1
+ if("no_dead_vote")
+ vote_no_dead = 1
+ if("default_no_vote")
+ vote_no_default = 1
+ if("vote_delay")
+ vote_delay = text2num(value)
+ if("vote_period")
+ vote_period = text2num(value)
+ if("norespawn")
+ respawn = 0
+ if("servername")
+ server_name = value
+ if("serversqlname")
+ server_sql_name = value
+ if("stationname")
+ station_name = value
+ if("hostedby")
+ hostedby = value
+ if("server")
+ server = value
+ if("banappeals")
+ banappeals = value
+ if("wikiurl")
+ wikiurl = value
+ if("forumurl")
+ forumurl = value
+ if("rulesurl")
+ rulesurl = value
+ if("githuburl")
+ githuburl = value
+ if("githubrepoid")
+ githubrepoid = value
+ if("guest_jobban")
+ guest_jobban = 1
+ if("guest_ban")
+ GLOB.guests_allowed = 0
+ if("usewhitelist")
+ usewhitelist = TRUE
+ if("allow_metadata")
+ allow_Metadata = 1
+ if("inactivity_period")
+ inactivity_period = text2num(value) * 10 //documented as seconds in config.txt
+ if("afk_period")
+ afk_period = text2num(value) * 10 // ^^^
+ if("kick_inactive")
+ kick_inactive = TRUE
+ if("load_jobs_from_txt")
+ load_jobs_from_txt = 1
+ if("forbid_singulo_possession")
+ forbid_singulo_possession = 1
+ if("popup_admin_pm")
+ popup_admin_pm = 1
+ if("allow_holidays")
+ allow_holidays = 1
+ if("useircbot")
+ useircbot = 1
+ if("ticklag")
+ var/ticklag = text2num(value)
+ if(ticklag > 0)
+ fps = 10 / ticklag
+ if("tick_limit_mc_init")
+ tick_limit_mc_init = text2num(value)
+ if("fps")
+ fps = text2num(value)
+ if("automute_on")
+ automute_on = 1
+ if("comms_key")
+ global.comms_key = value
+ if(value != "default_pwd" && length(value) > 6) //It's the default value or less than 6 characters long, warn badmins
+ global.comms_allowed = 1
+ if("cross_server_address")
+ cross_address = value
+ if(value != "byond:\\address:port")
+ cross_allowed = 1
+ if("cross_comms_name")
+ cross_name = value
+ if("panic_server_name")
+ panic_server_name = value
+ if("panic_server_address")
+ panic_address = value
+ if(value != "byond:\\address:port")
+ allow_panic_bunker_bounce = 1
+ if("medal_hub_address")
+ global.medal_hub = value
+ if("medal_hub_password")
+ global.medal_pass = value
+ if("show_irc_name")
+ showircname = 1
+ if("see_own_notes")
+ see_own_notes = 1
+ if("soft_popcap")
+ soft_popcap = text2num(value)
+ if("hard_popcap")
+ hard_popcap = text2num(value)
+ if("extreme_popcap")
+ extreme_popcap = text2num(value)
+ if("soft_popcap_message")
+ soft_popcap_message = value
+ if("hard_popcap_message")
+ hard_popcap_message = value
+ if("extreme_popcap_message")
+ extreme_popcap_message = value
+ if("panic_bunker")
+ panic_bunker = 1
+ if("notify_new_player_age")
+ notify_new_player_age = text2num(value)
+ if("notify_new_player_account_age")
+ notify_new_player_account_age = text2num(value)
+ if("irc_first_connection_alert")
+ irc_first_connection_alert = 1
+ if("check_randomizer")
+ check_randomizer = 1
+ if("ipintel_email")
+ if (value != "ch@nge.me")
+ ipintel_email = value
+ if("ipintel_rating_bad")
+ ipintel_rating_bad = text2num(value)
+ if("ipintel_domain")
+ ipintel_domain = value
+ if("ipintel_save_good")
+ ipintel_save_good = text2num(value)
+ if("ipintel_save_bad")
+ ipintel_save_bad = text2num(value)
+ if("aggressive_changelog")
+ aggressive_changelog = 1
+ if("autoconvert_notes")
+ autoconvert_notes = 1
+ if("allow_webclient")
+ allowwebclient = 1
+ if("webclient_only_byond_members")
+ webclientmembersonly = 1
+ if("announce_admin_logout")
+ announce_admin_logout = 1
+ if("announce_admin_login")
+ announce_admin_login = 1
+ if("maprotation")
+ maprotation = 1
+ if("allow_map_voting")
+ allow_map_voting = text2num(value)
+ if("maprotationchancedelta")
+ maprotatechancedelta = text2num(value)
+ if("autoadmin")
+ autoadmin = 1
+ if(value)
+ autoadmin_rank = ckeyEx(value)
+ if("generate_minimaps")
+ generate_minimaps = 1
+ if("client_warn_version")
+ client_warn_version = text2num(value)
+ if("client_warn_message")
+ client_warn_message = value
+ if("client_error_version")
+ client_error_version = text2num(value)
+ if("client_error_message")
+ client_error_message = value
+ if("minute_topic_limit")
+ minutetopiclimit = text2num(value)
+ if("second_topic_limit")
+ secondtopiclimit = text2num(value)
+ if("error_cooldown")
+ error_cooldown = text2num(value)
+ if("error_limit")
+ error_limit = text2num(value)
+ if("error_silence_time")
+ error_silence_time = text2num(value)
+ if("error_msg_delay")
+ error_msg_delay = text2num(value)
+ else
+ GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
+
+ else if(type == "game_options")
+ switch(name)
+ if("damage_multiplier")
+ damage_multiplier = text2num(value)
+ if("revival_pod_plants")
+ revival_pod_plants = TRUE
+ if("revival_cloning")
+ revival_cloning = TRUE
+ if("revival_brain_life")
+ revival_brain_life = text2num(value)
+ if("rename_cyborg")
+ rename_cyborg = 1
+ if("ooc_during_round")
+ ooc_during_round = 1
+ if("emojis")
+ emojis = 1
+ if("run_delay")
+ run_speed = text2num(value)
+ if("walk_delay")
+ walk_speed = text2num(value)
+ if("human_delay")
+ human_delay = text2num(value)
+ if("robot_delay")
+ robot_delay = text2num(value)
+ if("monkey_delay")
+ monkey_delay = text2num(value)
+ if("alien_delay")
+ alien_delay = text2num(value)
+ if("slime_delay")
+ slime_delay = text2num(value)
+ if("animal_delay")
+ animal_delay = text2num(value)
+ if("alert_red_upto")
+ alert_desc_red_upto = value
+ if("alert_red_downto")
+ alert_desc_red_downto = value
+ if("alert_blue_downto")
+ alert_desc_blue_downto = value
+ if("alert_blue_upto")
+ alert_desc_blue_upto = value
+ if("alert_green")
+ alert_desc_green = value
+ if("alert_delta")
+ alert_desc_delta = value
+ if("no_intercept_report")
+ intercept = 0
+ if("assistants_have_maint_access")
+ jobs_have_maint_access |= ASSISTANTS_HAVE_MAINT_ACCESS
+ if("security_has_maint_access")
+ jobs_have_maint_access |= SECURITY_HAS_MAINT_ACCESS
+ if("everyone_has_maint_access")
+ jobs_have_maint_access |= EVERYONE_HAS_MAINT_ACCESS
+ if("sec_start_brig")
+ sec_start_brig = 1
+ if("gateway_delay")
+ gateway_delay = text2num(value)
+ if("continuous")
+ var/mode_name = lowertext(value)
+ if(mode_name in modes)
+ continuous[mode_name] = 1
+ else
+ GLOB.config_error_log << "Unknown continuous configuration definition: [mode_name]."
+ if("midround_antag")
+ var/mode_name = lowertext(value)
+ if(mode_name in modes)
+ midround_antag[mode_name] = 1
+ else
+ GLOB.config_error_log << "Unknown midround antagonist configuration definition: [mode_name]."
+ if("midround_antag_time_check")
+ midround_antag_time_check = text2num(value)
+ if("midround_antag_life_check")
+ midround_antag_life_check = text2num(value)
+ if("min_pop")
+ var/pop_pos = findtext(value, " ")
+ var/mode_name = null
+ var/mode_value = null
+
+ if(pop_pos)
+ mode_name = lowertext(copytext(value, 1, pop_pos))
+ mode_value = copytext(value, pop_pos + 1)
+ if(mode_name in modes)
+ min_pop[mode_name] = text2num(mode_value)
+ else
+ GLOB.config_error_log << "Unknown minimum population configuration definition: [mode_name]."
+ else
+ GLOB.config_error_log << "Incorrect minimum population configuration definition: [mode_name] [mode_value]."
+ if("max_pop")
+ var/pop_pos = findtext(value, " ")
+ var/mode_name = null
+ var/mode_value = null
+
+ if(pop_pos)
+ mode_name = lowertext(copytext(value, 1, pop_pos))
+ mode_value = copytext(value, pop_pos + 1)
+ if(mode_name in modes)
+ max_pop[mode_name] = text2num(mode_value)
+ else
+ GLOB.config_error_log << "Unknown maximum population configuration definition: [mode_name]."
+ else
+ GLOB.config_error_log << "Incorrect maximum population configuration definition: [mode_name] [mode_value]."
+ if("shuttle_refuel_delay")
+ shuttle_refuel_delay = text2num(value)
+ if("show_game_type_odds")
+ show_game_type_odds = 1
+ if("ghost_interaction")
+ ghost_interaction = 1
+ if("traitor_scaling_coeff")
+ traitor_scaling_coeff = text2num(value)
+ if("changeling_scaling_coeff")
+ changeling_scaling_coeff = text2num(value)
+ if("security_scaling_coeff")
+ security_scaling_coeff = text2num(value)
+ if("abductor_scaling_coeff")
+ abductor_scaling_coeff = text2num(value)
+ if("traitor_objectives_amount")
+ traitor_objectives_amount = text2num(value)
+ if("probability")
+ var/prob_pos = findtext(value, " ")
+ var/prob_name = null
+ var/prob_value = null
+
+ if(prob_pos)
+ prob_name = lowertext(copytext(value, 1, prob_pos))
+ prob_value = copytext(value, prob_pos + 1)
+ if(prob_name in modes)
+ probabilities[prob_name] = text2num(prob_value)
+ else
+ GLOB.config_error_log << "Unknown game mode probability configuration definition: [prob_name]."
+ else
+ GLOB.config_error_log << "Incorrect probability configuration definition: [prob_name] [prob_value]."
+
+ if("protect_roles_from_antagonist")
+ protect_roles_from_antagonist = 1
+ if("protect_assistant_from_antagonist")
+ protect_assistant_from_antagonist = 1
+ if("enforce_human_authority")
+ enforce_human_authority = 1
+ if("allow_latejoin_antagonists")
+ allow_latejoin_antagonists = 1
+ if("allow_random_events")
+ allow_random_events = 1
+
+ if("events_min_time_mul")
+ events_min_time_mul = text2num(value)
+ if("events_min_players_mul")
+ events_min_players_mul = text2num(value)
+
+ if("minimal_access_threshold")
+ minimal_access_threshold = text2num(value)
+ if("jobs_have_minimal_access")
+ jobs_have_minimal_access = 1
+ if("humans_need_surnames")
+ humans_need_surnames = 1
+ if("force_random_names")
+ force_random_names = 1
+ if("allow_ai")
+ allow_ai = 1
+ if("disable_secborg")
+ forbid_secborg = 1
+ if("disable_peaceborg")
+ forbid_peaceborg = 1
+ if("silent_ai")
+ silent_ai = 1
+ if("silent_borg")
+ silent_borg = 1
+ if("sandbox_autoclose")
+ sandbox_autoclose = 1
+ if("default_laws")
+ default_laws = text2num(value)
+ if("random_laws")
+ var/law_id = lowertext(value)
+ lawids += law_id
+ if("law_weight")
+ // Value is in the form "LAWID,NUMBER"
+ var/list/L = splittext(value, ",")
+ if(L.len != 2)
+ GLOB.config_error_log << "Invalid LAW_WEIGHT: " + t
+ continue
+ var/lawid = L[1]
+ var/weight = text2num(L[2])
+ law_weights[lawid] = weight
+
+ if("silicon_max_law_amount")
+ silicon_max_law_amount = text2num(value)
+ if("join_with_mutant_race")
+ mutant_races = 1
+ if("roundstart_races")
+ var/race_id = lowertext(value)
+ for(var/species_id in GLOB.species_list)
+ if(species_id == race_id)
+ roundstart_races += GLOB.species_list[species_id]
+ GLOB.roundstart_species[species_id] = GLOB.species_list[species_id]
+ if("join_with_mutant_humans")
+ mutant_humans = 1
+ if("assistant_cap")
+ assistant_cap = text2num(value)
+ if("starlight")
+ starlight = 1
+ if("grey_assistants")
+ grey_assistants = 1
+ if("lavaland_budget")
+ lavaland_budget = text2num(value)
+ if("space_budget")
+ space_budget = text2num(value)
+ if("no_summon_guns")
+ no_summon_guns = 1
+ if("no_summon_magic")
+ no_summon_magic = 1
+ if("no_summon_events")
+ no_summon_events = 1
+ if("reactionary_explosions")
+ reactionary_explosions = 1
+ if("bombcap")
+ var/BombCap = text2num(value)
+ if (!BombCap)
+ continue
+ if (BombCap < 4)
+ BombCap = 4
+
+ GLOB.MAX_EX_DEVESTATION_RANGE = round(BombCap/4)
+ GLOB.MAX_EX_HEAVY_RANGE = round(BombCap/2)
+ GLOB.MAX_EX_LIGHT_RANGE = BombCap
+ GLOB.MAX_EX_FLASH_RANGE = BombCap
+ GLOB.MAX_EX_FLAME_RANGE = BombCap
+ if("arrivals_shuttle_dock_window")
+ arrivals_shuttle_dock_window = max(PARALLAX_LOOP_TIME, text2num(value))
+ if("arrivals_shuttle_require_safe_latejoin")
+ arrivals_shuttle_require_safe_latejoin = TRUE
+ if("mice_roundstart")
+ mice_roundstart = text2num(value)
+ if ("mentor_mobname_only")
+ mentors_mobname_only = 1
+ if ("mentor_legacy_system")
+ mentor_legacy_system = 1
+ else
+ GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
+
+ fps = round(fps)
+ if(fps <= 0)
+ fps = initial(fps)
+
+
+/datum/configuration/proc/loadmaplist(filename)
+ var/list/Lines = world.file2list(filename)
+
+ var/datum/map_config/currentmap = null
+ for(var/t in Lines)
+ if(!t)
+ continue
+
+ t = trim(t)
+ if(length(t) == 0)
+ continue
+ else if(copytext(t, 1, 2) == "#")
+ continue
+
+ var/pos = findtext(t, " ")
+ var/command = null
+ var/data = null
+
+ if(pos)
+ command = lowertext(copytext(t, 1, pos))
+ data = copytext(t, pos + 1)
+ else
+ command = lowertext(t)
+
+ if(!command)
+ continue
+
+ if (!currentmap && command != "map")
+ continue
+
+ switch (command)
+ if ("map")
+ currentmap = new ("_maps/[data].json")
+ if(currentmap.defaulted)
+ log_world("Failed to load map config for [data]!")
+ if ("minplayers","minplayer")
+ currentmap.config_min_users = text2num(data)
+ if ("maxplayers","maxplayer")
+ currentmap.config_max_users = text2num(data)
+ if ("weight","voteweight")
+ currentmap.voteweight = text2num(data)
+ if ("default","defaultmap")
+ defaultmap = currentmap
+ if ("endmap")
+ maplist[currentmap.map_name] = currentmap
+ currentmap = null
+ else
+ GLOB.config_error_log << "Unknown command in map vote config: '[command]'"
+
+
+/datum/configuration/proc/loadsql(filename)
+ var/list/Lines = world.file2list(filename)
+ for(var/t in Lines)
+ if(!t)
+ continue
+
+ t = trim(t)
+ if(length(t) == 0)
+ continue
+ else if(copytext(t, 1, 2) == "#")
+ continue
+
+ var/pos = findtext(t, " ")
+ var/name = null
+ var/value = null
+
+ if(pos)
+ name = lowertext(copytext(t, 1, pos))
+ value = copytext(t, pos + 1)
+ else
+ name = lowertext(t)
+
+ if(!name)
+ continue
+
+ switch(name)
+ if("sql_enabled")
+ sql_enabled = 1
+ if("address")
+ global.sqladdress = value
+ if("port")
+ global.sqlport = value
+ if("feedback_database")
+ global.sqlfdbkdb = value
+ if("feedback_login")
+ global.sqlfdbklogin = value
+ if("feedback_password")
+ global.sqlfdbkpass = value
+ if("feedback_tableprefix")
+ global.sqlfdbktableprefix = value
+ else
+ GLOB.config_error_log << "Unknown setting in configuration: '[name]'"
+
+/datum/configuration/proc/pick_mode(mode_name)
+ // I wish I didn't have to instance the game modes in order to look up
+ // their information, but it is the only way (at least that I know of).
+ for(var/T in gamemode_cache)
+ var/datum/game_mode/M = new T()
+ if(M.config_tag && M.config_tag == mode_name)
+ return M
+ qdel(M)
+ return new /datum/game_mode/extended()
+
+/datum/configuration/proc/get_runnable_modes()
+ var/list/datum/game_mode/runnable_modes = new
+ for(var/T in gamemode_cache)
+ var/datum/game_mode/M = new T()
+ //to_chat(world, "DEBUG: [T], tag=[M.config_tag], prob=[probabilities[M.config_tag]]")
+ if(!(M.config_tag in modes))
+ qdel(M)
+ continue
+ if(probabilities[M.config_tag]<=0)
+ qdel(M)
+ continue
+ if(min_pop[M.config_tag])
+ M.required_players = min_pop[M.config_tag]
+ if(max_pop[M.config_tag])
+ M.maximum_players = max_pop[M.config_tag]
+ if(M.can_start())
+ runnable_modes[M] = probabilities[M.config_tag]
+ //to_chat(world, "DEBUG: runnable_mode\[[runnable_modes.len]\] = [M.config_tag]")
+ return runnable_modes
+
+/datum/configuration/proc/get_runnable_midround_modes(crew)
+ var/list/datum/game_mode/runnable_modes = new
+ for(var/T in (gamemode_cache - SSticker.mode.type))
+ var/datum/game_mode/M = new T()
+ if(!(M.config_tag in modes))
+ qdel(M)
+ continue
+ if(probabilities[M.config_tag]<=0)
+ qdel(M)
+ continue
+ if(min_pop[M.config_tag])
+ M.required_players = min_pop[M.config_tag]
+ if(max_pop[M.config_tag])
+ M.maximum_players = max_pop[M.config_tag]
+ if(M.required_players <= crew)
+ if(M.maximum_players >= 0 && M.maximum_players < crew)
+ continue
+ runnable_modes[M] = probabilities[M.config_tag]
+ return runnable_modes
+
+/datum/configuration/proc/stat_entry()
+ if(!statclick)
+ statclick = new/obj/effect/statclick/debug(null, "Edit", src)
+
+ stat("[name]:", statclick)
diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm
index 3c473e6f70..ac8162bc08 100644
--- a/code/modules/admin/admin.dm
+++ b/code/modules/admin/admin.dm
@@ -1,821 +1,821 @@
-////////////////////////////////
-/proc/message_admins(msg)
- msg = "ADMIN LOG: [msg]"
- to_chat(GLOB.admins, msg)
-
-/proc/relay_msg_admins(msg)
- msg = "RELAY: [msg]"
- to_chat(GLOB.admins, msg)
-
-
-///////////////////////////////////////////////////////////////////////////////////////////////Panels
-
-/datum/admins/proc/show_player_panel(mob/M in GLOB.mob_list)
- set category = "Admin"
- set name = "Show Player Panel"
- set desc="Edit player (respawn, ban, heal, etc)"
-
- if(!check_rights())
- return
-
- if(!isobserver(usr))
- log_game("[key_name_admin(usr)] checked the player panel while in game.")
-
- if(!M)
- to_chat(usr, "You seem to be selecting a mob that doesn't exist anymore.")
- return
-
- var/body = "Options for [M.key]"
- body += "Options panel for [M]"
- if(M.client)
- body += " played by [M.client] "
- body += "\[[M.client.holder ? M.client.holder.rank : "Player"]\]"
-
- if(isnewplayer(M))
- body += " Hasn't Entered Game "
- else
- body += " \[Heal\] "
-
- if(M.client)
- body += "
\[Player Age: [M.client.player_age]\]\[Byond Age: [M.client.account_age]\]"
- body += "
Show related accounts by: "
- body += "\[ CID | "
- body += "IP \]"
-
- body += "
\[ "
- body += "VV - "
- body += "TP - "
- body += "PM - "
- body += "SM - "
- body += "FLW - "
- body += "LOGS\]
"
-
- body += "Mob type = [M.type]
"
-
- body += "Kick | "
- body += "Ban | "
- body += "Jobban | "
- body += "Identity Ban | "
- if(jobban_isbanned(M, "OOC"))
- body+= "OOCBan | "
- else
- body+= "OOCBan | "
- if(jobban_isbanned(M, "emote"))
- body+= "EmoteBan | "
- else
- body+= "Emoteban | "
-
- body += "Notes | Messages | Watchlist | "
- if(M.client)
- body += "| Prison | "
- body += "\ Send back to Lobby | "
- var/muted = M.client.prefs.muted
- body += "
Mute: "
- body += "\[IC | "
- body += "OOC | "
- body += "PRAY | "
- body += "ADMINHELP | "
- body += "DEADCHAT\]"
- body += "(toggle all)"
-
- body += "
"
- body += "Jump to | "
- body += "Get | "
- body += "Send To"
-
- body += "
"
- body += "Traitor panel | "
- body += "Narrate to | "
- body += "Subtle message | "
- body += "Language Menu"
-
- if (M.client)
- if(!isnewplayer(M))
- body += "
"
- body += "Transformation:"
- body += "
"
-
- //Human
- if(ishuman(M))
- body += "Human | "
- else
- body += "Humanize | "
-
- //Monkey
- if(ismonkey(M))
- body += "Monkeyized | "
- else
- body += "Monkeyize | "
-
- //Corgi
- if(iscorgi(M))
- body += "Corgized | "
- else
- body += "Corgize | "
-
- //AI / Cyborg
- if(isAI(M))
- body += "Is an AI "
- else if(ishuman(M))
- body += "Make AI | "
- body += "Make Robot | "
- body += "Make Alien | "
- body += "Make Slime | "
- body += "Make Blob | "
-
- //Simple Animals
- if(isanimal(M))
- body += "Re-Animalize | "
- else
- body += "Animalize | "
-
- body += "
"
- body += "Rudimentary transformation:
These transformations only create a new mob type and copy stuff over. They do not take into account MMIs and similar mob-specific things. The buttons in 'Transformations' are preferred, when possible.
"
- body += "Observer | "
- body += "\[ Alien: Drone, "
- body += "Hunter, "
- body += "Sentinel, "
- body += "Praetorian, "
- body += "Queen, "
- body += "Larva \] "
- body += "Human "
- body += "\[ slime: Baby, "
- body += "Adult \] "
- body += "Monkey | "
- body += "Cyborg | "
- body += "Cat | "
- body += "Runtime | "
- body += "Corgi | "
- body += "Ian | "
- body += "Crab | "
- body += "Coffee | "
- //body += "Parrot | "
- //body += "Poly | "
- body += "\[ Construct: Juggernaut , "
- body += "Artificer , "
- body += "Wraith \] "
- body += "Shade"
- body += "
"
-
- if (M.client)
- body += "
"
- body += "Other actions:"
- body += "
"
- body += "Forcesay | "
- body += "Thunderdome 1 | "
- body += "Thunderdome 2 | "
- body += "Thunderdome Admin | "
- body += "Thunderdome Observer | "
-
- body += "
"
- body += ""
-
- usr << browse(body, "window=adminplayeropts-\ref[M];size=550x515")
- SSblackbox.add_details("admin_verb","Player Panel") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-
-/datum/admins/proc/access_news_network() //MARKER
- set category = "Fun"
- set name = "Access Newscaster Network"
- set desc = "Allows you to view, add and edit news feeds."
-
- if (!istype(src,/datum/admins))
- src = usr.client.holder
- if (!istype(src,/datum/admins))
- to_chat(usr, "Error: you are not an admin!")
- return
- var/dat
- dat = text("Admin NewscasterAdmin Newscaster Unit
")
-
- switch(admincaster_screen)
- if(0)
- dat += "Welcome to the admin newscaster.
Here you can add, edit and censor every newspiece on the network."
- dat += "
Feed channels and stories entered through here will be uneditable and handled as official news by the rest of the units."
- dat += "
Note that this panel allows full freedom over the news network, there are no constrictions except the few basic ones. Don't break things!"
- if(GLOB.news_network.wanted_issue.active)
- dat+= "
Read Wanted Issue"
- dat+= "
Create Feed Channel"
- dat+= "
View Feed Channels"
- dat+= "
Submit new Feed story"
- dat+= "
Exit"
- var/wanted_already = 0
- if(GLOB.news_network.wanted_issue.active)
- wanted_already = 1
- dat+="
Feed Security functions:
"
- dat+="
[(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue"
- dat+="
Censor Feed Stories"
- dat+="
Mark Feed Channel with Nanotrasen D-Notice (disables and locks the channel)."
- dat+="
The newscaster recognises you as:
[src.admin_signature]"
- if(1)
- dat+= "Station Feed Channels
"
- if( isemptylist(GLOB.news_network.network_channels) )
- dat+="No active channels found..."
- else
- for(var/datum/newscaster/feed_channel/CHANNEL in GLOB.news_network.network_channels)
- if(CHANNEL.is_admin_channel)
- dat+="[CHANNEL.channel_name]
"
- else
- dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
"
- dat+="
Refresh"
- dat+="
Back"
- if(2)
- dat+="Creating new Feed Channel..."
- dat+="
Channel Name: [src.admincaster_feed_channel.channel_name]
"
- dat+="Channel Author: [src.admin_signature]
"
- dat+="Will Accept Public Feeds: [(src.admincaster_feed_channel.locked) ? ("NO") : ("YES")]
"
- dat+="
Submit
Cancel
"
- if(3)
- dat+="Creating new Feed Message..."
- dat+="
Receiving Channel: [src.admincaster_feed_channel.channel_name]
" //MARK
- dat+="Message Author: [src.admin_signature]
"
- dat+="Message Body: [src.admincaster_feed_message.returnBody(-1)]
"
- dat+="
Submit
Cancel
"
- if(4)
- dat+="Feed story successfully submitted to [src.admincaster_feed_channel.channel_name].
"
- dat+="
Return
"
- if(5)
- dat+="Feed Channel [src.admincaster_feed_channel.channel_name] created successfully.
"
- dat+="
Return
"
- if(6)
- dat+="ERROR: Could not submit Feed story to Network.
"
- if(src.admincaster_feed_channel.channel_name=="")
- dat+="•Invalid receiving channel name.
"
- if(src.admincaster_feed_message.returnBody(-1) == "" || src.admincaster_feed_message.returnBody(-1) == "\[REDACTED\]")
- dat+="•Invalid message body.
"
- dat+="
Return
"
- if(7)
- dat+="ERROR: Could not submit Feed Channel to Network.
"
- if(src.admincaster_feed_channel.channel_name =="" || src.admincaster_feed_channel.channel_name == "\[REDACTED\]")
- dat+="•Invalid channel name.
"
- var/check = 0
- for(var/datum/newscaster/feed_channel/FC in GLOB.news_network.network_channels)
- if(FC.channel_name == src.admincaster_feed_channel.channel_name)
- check = 1
- break
- if(check)
- dat+="•Channel name already in use.
"
- dat+="
Return
"
- if(9)
- dat+="[admincaster_feed_channel.channel_name]: \[created by: [admincaster_feed_channel.returnAuthor(-1)]\]
"
- if(src.admincaster_feed_channel.censored)
- dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a Nanotrasen D-Notice.
"
- dat+="No further feed story additions are allowed while the D-Notice is in effect.
"
- else
- if( isemptylist(src.admincaster_feed_channel.messages) )
- dat+="No feed messages found in channel...
"
- else
- var/i = 0
- for(var/datum/newscaster/feed_message/MESSAGE in src.admincaster_feed_channel.messages)
- i++
- dat+="-[MESSAGE.returnBody(-1)]
"
- if(MESSAGE.img)
- usr << browse_rsc(MESSAGE.img, "tmp_photo[i].png")
- dat+="
"
- dat+="\[Story by [MESSAGE.returnAuthor(-1)]\]
"
- dat+="[MESSAGE.comments.len] comment[MESSAGE.comments.len > 1 ? "s" : ""]:
"
- for(var/datum/newscaster/feed_comment/comment in MESSAGE.comments)
- dat+="[comment.body]
[comment.author] [comment.time_stamp]
"
- dat+="
"
- dat+="
Refresh"
- dat+="
Back"
- if(10)
- dat+="Nanotrasen Feed Censorship Tool
"
- dat+="NOTE: Due to the nature of news Feeds, total deletion of a Feed Story is not possible.
"
- dat+="Keep in mind that users attempting to view a censored feed will instead see the \[REDACTED\] tag above it."
- dat+="
Select Feed channel to get Stories from:
"
- if(isemptylist(GLOB.news_network.network_channels))
- dat+="No feed channels found active...
"
- else
- for(var/datum/newscaster/feed_channel/CHANNEL in GLOB.news_network.network_channels)
- dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
"
- dat+="
Cancel"
- if(11)
- dat+="Nanotrasen D-Notice Handler
"
- dat+="A D-Notice is to be bestowed upon the channel if the handling Authority deems it as harmful for the station's"
- dat+="morale, integrity or disciplinary behaviour. A D-Notice will render a channel unable to be updated by anyone, without deleting any feed"
- dat+="stories it might contain at the time. You can lift a D-Notice if you have the required access at any time.
"
- if(isemptylist(GLOB.news_network.network_channels))
- dat+="No feed channels found active...
"
- else
- for(var/datum/newscaster/feed_channel/CHANNEL in GLOB.news_network.network_channels)
- dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
"
-
- dat+="
Back"
- if(12)
- dat+="[src.admincaster_feed_channel.channel_name]: \[ created by: [src.admincaster_feed_channel.returnAuthor(-1)] \]
"
- dat+="[(src.admincaster_feed_channel.authorCensor) ? ("Undo Author censorship") : ("Censor channel Author")]
"
-
- if( isemptylist(src.admincaster_feed_channel.messages) )
- dat+="No feed messages found in channel...
"
- else
- for(var/datum/newscaster/feed_message/MESSAGE in src.admincaster_feed_channel.messages)
- dat+="-[MESSAGE.returnBody(-1)]
\[Story by [MESSAGE.returnAuthor(-1)]\]
"
- dat+="[(MESSAGE.bodyCensor) ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.authorCensor) ? ("Undo Author Censorship") : ("Censor message Author")]
"
- dat+="[MESSAGE.comments.len] comment[MESSAGE.comments.len > 1 ? "s" : ""]: [MESSAGE.locked ? "Unlock" : "Lock"]
"
- for(var/datum/newscaster/feed_comment/comment in MESSAGE.comments)
- dat+="[comment.body] X
[comment.author] [comment.time_stamp]
"
- dat+="
Back"
- if(13)
- dat+="[src.admincaster_feed_channel.channel_name]: \[ created by: [src.admincaster_feed_channel.returnAuthor(-1)] \]
"
- dat+="Channel messages listed below. If you deem them dangerous to the station, you can Bestow a D-Notice upon the channel.
"
- if(src.admincaster_feed_channel.censored)
- dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a Nanotrasen D-Notice.
"
- dat+="No further feed story additions are allowed while the D-Notice is in effect.
"
- else
- if( isemptylist(src.admincaster_feed_channel.messages) )
- dat+="No feed messages found in channel...
"
- else
- for(var/datum/newscaster/feed_message/MESSAGE in src.admincaster_feed_channel.messages)
- dat+="-[MESSAGE.returnBody(-1)]
\[Story by [MESSAGE.returnAuthor(-1)]\]
"
- dat+="
Back"
- if(14)
- dat+="Wanted Issue Handler:"
- var/wanted_already = 0
- var/end_param = 1
- if(GLOB.news_network.wanted_issue.active)
- wanted_already = 1
- end_param = 2
- if(wanted_already)
- dat+="
A wanted issue is already in Feed Circulation. You can edit or cancel it below."
- dat+="
"
- dat+="Criminal Name: [src.admincaster_wanted_message.criminal]
"
- dat+="Description: [src.admincaster_wanted_message.body]
"
- if(wanted_already)
- dat+="Wanted Issue created by:[GLOB.news_network.wanted_issue.scannedUser]
"
- else
- dat+="Wanted Issue will be created under prosecutor:[src.admin_signature]
"
- dat+="
[(wanted_already) ? ("Edit Issue") : ("Submit")]"
- if(wanted_already)
- dat+="
Take down Issue"
- dat+="
Cancel"
- if(15)
- dat+="Wanted issue for [src.admincaster_wanted_message.criminal] is now in Network Circulation.
"
- dat+="
Return
"
- if(16)
- dat+="ERROR: Wanted Issue rejected by Network.
"
- if(src.admincaster_wanted_message.criminal =="" || src.admincaster_wanted_message.criminal == "\[REDACTED\]")
- dat+="•Invalid name for person wanted.
"
- if(src.admincaster_wanted_message.body == "" || src.admincaster_wanted_message.body == "\[REDACTED\]")
- dat+="•Invalid description.
"
- dat+="
Return
"
- if(17)
- dat+="Wanted Issue successfully deleted from Circulation
"
- dat+="
Return
"
- if(18)
- dat+="-- STATIONWIDE WANTED ISSUE --
\[Submitted by: [GLOB.news_network.wanted_issue.scannedUser]\]
"
- dat+="Criminal: [GLOB.news_network.wanted_issue.criminal]
"
- dat+="Description: [GLOB.news_network.wanted_issue.body]
"
- dat+="Photo:: "
- if(GLOB.news_network.wanted_issue.img)
- usr << browse_rsc(GLOB.news_network.wanted_issue.img, "tmp_photow.png")
- dat+="
"
- else
- dat+="None"
- dat+="
Back
"
- if(19)
- dat+="Wanted issue for [src.admincaster_wanted_message.criminal] successfully edited.
"
- dat+="
Return
"
- else
- dat+="I'm sorry to break your immersion. This shit's bugged. Report this bug to Agouri, polyxenitopalidou@gmail.com"
-
- //to_chat(world, "Channelname: [src.admincaster_feed_channel.channel_name] [src.admincaster_feed_channel.author]")
- //to_chat(world, "Msg: [src.admincaster_feed_message.author] [src.admincaster_feed_message.body]")
- usr << browse(dat, "window=admincaster_main;size=400x600")
- onclose(usr, "admincaster_main")
-
-
-/datum/admins/proc/Game()
- if(!check_rights(0))
- return
-
- var/dat = {"
- Game Panel
\n
- Change Game Mode
- "}
- if(GLOB.master_mode == "secret")
- dat += "(Force Secret Mode)
"
-
- dat += {"
-
- Create Object
- Quick Create Object
- Create Turf
- Create Mob
- "}
-
- if(marked_datum && istype(marked_datum, /atom))
- dat += "Duplicate Marked Datum
"
-
- usr << browse(dat, "window=admin2;size=210x200")
- return
-
-/////////////////////////////////////////////////////////////////////////////////////////////////admins2.dm merge
-//i.e. buttons/verbs
-
-
-/datum/admins/proc/restart()
- set category = "Server"
- set name = "Reboot World"
- set desc="Restarts the world immediately"
- if (!usr.client.holder)
- return
- var/confirm = alert("Restart the game world?", "Restart", "Yes", "Cancel")
- if(confirm == "Cancel")
- return
- if(confirm == "Yes")
- SSticker.delay_end = 0
- SSblackbox.add_details("admin_verb","Reboot World") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
- world.Reboot("Initiated by [usr.client.holder.fakekey ? "Admin" : usr.key].", "end_error", "admin reboot - by [usr.key] [usr.client.holder.fakekey ? "(stealth)" : ""]", 10)
-
-/datum/admins/proc/end_round()
- set category = "Server"
- set name = "End Round"
- set desc = "Attempts to produce a round end report and then restart the server organically."
-
- if (!usr.client.holder)
- return
- var/confirm = alert("End the round and restart the game world?", "End Round", "Yes", "Cancel")
- if(confirm == "Cancel")
- return
- if(confirm == "Yes")
- SSticker.force_ending = 1
- SSblackbox.add_details("admin_verb","End Round") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-
-/datum/admins/proc/announce()
- set category = "Special Verbs"
- set name = "Announce"
- set desc="Announce your desires to the world"
- if(!check_rights(0))
- return
-
- var/message = input("Global message to send:", "Admin Announce", null, null) as message
- if(message)
- if(!check_rights(R_SERVER,0))
- message = adminscrub(message,500)
- to_chat(world, "[usr.client.holder.fakekey ? "Administrator" : usr.key] Announces:\n \t [message]")
- log_admin("Announce: [key_name(usr)] : [message]")
- SSblackbox.add_details("admin_verb","Announce") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/set_admin_notice()
- set category = "Special Verbs"
- set name = "Set Admin Notice"
- set desc ="Set an announcement that appears to everyone who joins the server. Only lasts this round"
- if(!check_rights(0))
- return
-
- var/new_admin_notice = input(src,"Set a public notice for this round. Everyone who joins the server will see it.\n(Leaving it blank will delete the current notice):","Set Notice",GLOB.admin_notice) as message|null
- if(new_admin_notice == null)
- return
- if(new_admin_notice == GLOB.admin_notice)
- return
- if(new_admin_notice == "")
- message_admins("[key_name(usr)] removed the admin notice.")
- log_admin("[key_name(usr)] removed the admin notice:\n[GLOB.admin_notice]")
- else
- message_admins("[key_name(usr)] set the admin notice.")
- log_admin("[key_name(usr)] set the admin notice:\n[new_admin_notice]")
- to_chat(world, "Admin Notice:\n \t [new_admin_notice]")
- SSblackbox.add_details("admin_verb","Set Admin Notice") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
- GLOB.admin_notice = new_admin_notice
- return
-
-/datum/admins/proc/toggleooc()
- set category = "Server"
- set desc="Toggle dis bitch"
- set name="Toggle OOC"
- toggle_ooc()
- log_admin("[key_name(usr)] toggled OOC.")
- message_admins("[key_name_admin(usr)] toggled OOC.")
- SSblackbox.add_details("admin_toggle","Toggle OOC|[GLOB.ooc_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/toggleoocdead()
- set category = "Server"
- set desc="Toggle dis bitch"
- set name="Toggle Dead OOC"
- GLOB.dooc_allowed = !( GLOB.dooc_allowed )
-
- log_admin("[key_name(usr)] toggled OOC.")
- message_admins("[key_name_admin(usr)] toggled Dead OOC.")
- SSblackbox.add_details("admin_toggle","Toggle Dead OOC|[GLOB.dooc_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/startnow()
- set category = "Server"
- set desc="Start the round RIGHT NOW"
- set name="Start Now"
- if(SSticker.current_state == GAME_STATE_PREGAME || SSticker.current_state == GAME_STATE_STARTUP)
- SSticker.start_immediately = TRUE
- log_admin("[usr.key] has started the game.")
- var/msg = ""
- if(SSticker.current_state == GAME_STATE_STARTUP)
- msg = " (The server is still setting up, but the round will be \
- started as soon as possible.)"
- message_admins("\
- [usr.key] has started the game.[msg]")
- SSblackbox.add_details("admin_verb","Start Now") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
- return 1
- else
- to_chat(usr, "Error: Start Now: Game has already started.")
-
- return 0
-
-/datum/admins/proc/toggleenter()
- set category = "Server"
- set desc="People can't enter"
- set name="Toggle Entering"
- GLOB.enter_allowed = !( GLOB.enter_allowed )
- if (!( GLOB.enter_allowed ))
- to_chat(world, "New players may no longer enter the game.")
- else
- to_chat(world, "New players may now enter the game.")
- log_admin("[key_name(usr)] toggled new player game entering.")
- message_admins("[key_name_admin(usr)] toggled new player game entering.")
- world.update_status()
- SSblackbox.add_details("admin_toggle","Toggle Entering|[GLOB.enter_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/toggleAI()
- set category = "Server"
- set desc="People can't be AI"
- set name="Toggle AI"
- config.allow_ai = !( config.allow_ai )
- if (!( config.allow_ai ))
- to_chat(world, "The AI job is no longer chooseable.")
- else
- to_chat(world, "The AI job is chooseable now.")
- log_admin("[key_name(usr)] toggled AI allowed.")
- world.update_status()
- SSblackbox.add_details("admin_toggle","Toggle AI|[config.allow_ai]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/toggleaban()
- set category = "Server"
- set desc="Respawn basically"
- set name="Toggle Respawn"
- GLOB.abandon_allowed = !( GLOB.abandon_allowed )
- if (GLOB.abandon_allowed)
- to_chat(world, "You may now respawn.")
- else
- to_chat(world, "You may no longer respawn :(")
- message_admins("[key_name_admin(usr)] toggled respawn to [GLOB.abandon_allowed ? "On" : "Off"].")
- log_admin("[key_name(usr)] toggled respawn to [GLOB.abandon_allowed ? "On" : "Off"].")
- world.update_status()
- SSblackbox.add_details("admin_toggle","Toggle Respawn|[GLOB.abandon_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/delay()
- set category = "Server"
- 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(SSticker.GetTimeLeft()/10)) as num|null
- if(SSticker.current_state > GAME_STATE_PREGAME)
- return alert("Too late... The game has already started!")
- if(newtime)
- SSticker.SetTimeLeft(newtime * 10)
- if(newtime < 0)
- to_chat(world, "The game start has been delayed.")
- log_admin("[key_name(usr)] delayed the round start.")
- else
- to_chat(world, "The game will start in [newtime] seconds.")
- world << 'sound/ai/attention.ogg'
- log_admin("[key_name(usr)] set the pre-game delay to [newtime] seconds.")
- SSblackbox.add_details("admin_verb","Delay Game Start") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/unprison(mob/M in GLOB.mob_list)
- set category = "Admin"
- set name = "Unprison"
- if (M.z == ZLEVEL_CENTCOM)
- M.loc = pick(GLOB.latejoin)
- message_admins("[key_name_admin(usr)] has unprisoned [key_name_admin(M)]")
- log_admin("[key_name(usr)] has unprisoned [key_name(M)]")
- else
- alert("[M.name] is not prisoned.")
- SSblackbox.add_details("admin_verb","Unprison") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-////////////////////////////////////////////////////////////////////////////////////////////////ADMIN HELPER PROCS
-
-/*
-/datum/admins/proc/get_sab_desc(var/target)
- switch(target)
- if(1)
- return "Destroy at least 70% of the plasma canisters on the station"
- if(2)
- return "Destroy the AI"
- if(3)
- var/count = 0
- for(var/mob/living/carbon/monkey/Monkey in world)
- if(Monkey.z == 1)
- count++
- return "Kill all [count] of the monkeys on the station"
- if(4)
- return "Cut power to at least 80% of the station"
- else
- return "Error: Invalid sabotage target: [target]"
-*/
-/datum/admins/proc/spawn_atom(object as text)
- set category = "Debug"
- set desc = "(atom path) Spawn an atom"
- set name = "Spawn"
-
- if(!check_rights(R_SPAWN))
- return
-
- var/chosen = pick_closest_path(object)
- if(!chosen)
- return
- if(ispath(chosen,/turf))
- var/turf/T = get_turf(usr.loc)
- T.ChangeTurf(chosen)
- else
- var/atom/A = new chosen(usr.loc)
- A.admin_spawned = TRUE
-
- log_admin("[key_name(usr)] spawned [chosen] at ([usr.x],[usr.y],[usr.z])")
- SSblackbox.add_details("admin_verb","Spawn Atom") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-
-/datum/admins/proc/show_traitor_panel(mob/M in GLOB.mob_list)
- set category = "Admin"
- set desc = "Edit mobs's memory and role"
- set name = "Show Traitor Panel"
-
- if(!istype(M))
- to_chat(usr, "This can only be used on instances of type /mob")
- return
- if(!M.mind)
- to_chat(usr, "This mob has no mind!")
- return
-
- M.mind.edit_memory()
- SSblackbox.add_details("admin_verb","Traitor Panel") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-
-/datum/admins/proc/toggletintedweldhelmets()
- set category = "Debug"
- set desc="Reduces view range when wearing welding helmets"
- set name="Toggle tinted welding helmes"
- GLOB.tinted_weldhelh = !( GLOB.tinted_weldhelh )
- if (GLOB.tinted_weldhelh)
- to_chat(world, "The tinted_weldhelh has been enabled!")
- else
- to_chat(world, "The tinted_weldhelh has been disabled!")
- log_admin("[key_name(usr)] toggled tinted_weldhelh.")
- message_admins("[key_name_admin(usr)] toggled tinted_weldhelh.")
- SSblackbox.add_details("admin_toggle","Toggle Tinted Welding Helmets|[GLOB.tinted_weldhelh]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/toggleguests()
- set category = "Server"
- set desc="Guests can't enter"
- set name="Toggle guests"
- GLOB.guests_allowed = !( GLOB.guests_allowed )
- if (!( GLOB.guests_allowed ))
- to_chat(world, "Guests may no longer enter the game.")
- else
- to_chat(world, "Guests may now enter the game.")
- log_admin("[key_name(usr)] toggled guests game entering [GLOB.guests_allowed?"":"dis"]allowed.")
- message_admins("[key_name_admin(usr)] toggled guests game entering [GLOB.guests_allowed?"":"dis"]allowed.")
- SSblackbox.add_details("admin_toggle","Toggle Guests|[GLOB.guests_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-/datum/admins/proc/output_ai_laws()
- var/ai_number = 0
- for(var/mob/living/silicon/S in GLOB.mob_list)
- ai_number++
- if(isAI(S))
- to_chat(usr, "AI [key_name(S, usr)]'s laws:")
- else if(iscyborg(S))
- var/mob/living/silicon/robot/R = S
- to_chat(usr, "CYBORG [key_name(S, usr)] [R.connected_ai?"(Slaved to: [R.connected_ai])":"(Independant)"]: laws:")
- else if (ispAI(S))
- to_chat(usr, "pAI [key_name(S, usr)]'s laws:")
- else
- to_chat(usr, "SOMETHING SILICON [key_name(S, usr)]'s laws:")
-
- if (S.laws == null)
- to_chat(usr, "[key_name(S, usr)]'s laws are null?? Contact a coder.")
- else
- S.laws.show_laws(usr)
- if(!ai_number)
- to_chat(usr, "No AIs located" )
-
-/datum/admins/proc/output_all_devil_info()
- var/devil_number = 0
- for(var/D in SSticker.mode.devils)
- devil_number++
- to_chat(usr, "Devil #[devil_number]:
" + SSticker.mode.printdevilinfo(D))
- if(!devil_number)
- to_chat(usr, "No Devils located" )
-
-/datum/admins/proc/output_devil_info(mob/living/M)
- if(is_devil(M))
- to_chat(usr, SSticker.mode.printdevilinfo(M.mind))
- else
- to_chat(usr, "[M] is not a devil.")
-
-/datum/admins/proc/manage_free_slots()
- if(!check_rights())
- return
- var/dat = "Manage Free Slots"
- var/count = 0
-
- if(SSticker && !SSticker.mode)
- alert(usr, "You cannot manage jobs before the round starts!")
- return
-
- if(SSjob)
- for(var/datum/job/job in SSjob.occupations)
- count++
- var/J_title = html_encode(job.title)
- var/J_opPos = html_encode(job.total_positions - (job.total_positions - job.current_positions))
- var/J_totPos = html_encode(job.total_positions)
- if(job.total_positions < 0)
- dat += "[J_title]: [J_opPos] (unlimited)"
- else
- dat += "[J_title]: [J_opPos]/[J_totPos]"
-
- if(job.title == "AI" || job.title == "Cyborg")
- dat += " (Cannot Late Join)
"
- continue
- if(job.total_positions >= 0)
- dat += " Add | "
- if(job.total_positions > job.current_positions)
- dat += "Remove | "
- else
- dat += "Remove | "
- dat += "Unlimit"
- else
- dat += " Limit"
- dat += "
"
-
- dat += ""
- var/winheight = 100 + (count * 20)
- winheight = min(winheight, 690)
- usr << browse(dat, "window=players;size=375x[winheight]")
-
-//
-//
-//ALL DONE
-//*********************************************************************************************************
-//TO-DO:
-//
-//
-
-//RIP ferry snowflakes
-
-//Kicks all the clients currently in the lobby. The second parameter (kick_only_afk) determins if an is_afk() check is ran, or if all clients are kicked
-//defaults to kicking everyone (afk + non afk clients in the lobby)
-//returns a list of ckeys of the kicked clients
-/proc/kick_clients_in_lobby(message, kick_only_afk = 0)
- var/list/kicked_client_names = list()
- for(var/client/C in GLOB.clients)
- if(isnewplayer(C.mob))
- if(kick_only_afk && !C.is_afk()) //Ignore clients who are not afk
- continue
- if(message)
- to_chat(C, message)
- kicked_client_names.Add("[C.ckey]")
- qdel(C)
- return kicked_client_names
-
-//returns 1 to let the dragdrop code know we are trapping this event
-//returns 0 if we don't plan to trap the event
-/datum/admins/proc/cmd_ghost_drag(mob/dead/observer/frommob, mob/living/tomob)
-
- //this is the exact two check rights checks required to edit a ckey with vv.
- if (!check_rights(R_VAREDIT,0) || !check_rights(R_SPAWN|R_DEBUG,0))
- return 0
-
- if (!frommob.ckey)
- return 0
-
- var/question = ""
- if (tomob.ckey)
- question = "This mob already has a user ([tomob.key]) in control of it! "
- question += "Are you sure you want to place [frommob.name]([frommob.key]) in control of [tomob.name]?"
-
- var/ask = alert(question, "Place ghost in control of mob?", "Yes", "No")
- if (ask != "Yes")
- return 1
-
- if (!frommob || !tomob) //make sure the mobs don't go away while we waited for a response
- return 1
-
- tomob.ghostize(0)
-
- message_admins("[key_name_admin(usr)] has put [frommob.ckey] in control of [tomob.name].")
- log_admin("[key_name(usr)] stuffed [frommob.ckey] into [tomob.name].")
- SSblackbox.add_details("admin_verb","Ghost Drag Control")
-
- tomob.ckey = frommob.ckey
- qdel(frommob)
-
- return 1
-
-/client/proc/adminGreet(logout)
- if(SSticker.HasRoundStarted())
- var/string
- if(logout && config && config.announce_admin_logout)
- string = pick(
- "Admin logout: [key_name(src)]")
- else if(!logout && config && config.announce_admin_login && (prefs.toggles & ANNOUNCE_LOGIN))
- string = pick(
- "Admin login: [key_name(src)]")
- if(string)
+////////////////////////////////
+/proc/message_admins(msg)
+ msg = "ADMIN LOG: [msg]"
+ to_chat(GLOB.admins, msg)
+
+/proc/relay_msg_admins(msg)
+ msg = "RELAY: [msg]"
+ to_chat(GLOB.admins, msg)
+
+
+///////////////////////////////////////////////////////////////////////////////////////////////Panels
+
+/datum/admins/proc/show_player_panel(mob/M in GLOB.mob_list)
+ set category = "Admin"
+ set name = "Show Player Panel"
+ set desc="Edit player (respawn, ban, heal, etc)"
+
+ if(!check_rights())
+ return
+
+ if(!isobserver(usr))
+ log_game("[key_name_admin(usr)] checked the player panel while in game.")
+
+ if(!M)
+ to_chat(usr, "You seem to be selecting a mob that doesn't exist anymore.")
+ return
+
+ var/body = "Options for [M.key]"
+ body += "Options panel for [M]"
+ if(M.client)
+ body += " played by [M.client] "
+ body += "\[[M.client.holder ? M.client.holder.rank : "Player"]\]"
+
+ if(isnewplayer(M))
+ body += " Hasn't Entered Game "
+ else
+ body += " \[Heal\] "
+
+ if(M.client)
+ body += "
\[Player Age: [M.client.player_age]\]\[Byond Age: [M.client.account_age]\]"
+ body += "
Show related accounts by: "
+ body += "\[ CID | "
+ body += "IP \]"
+
+ body += "
\[ "
+ body += "VV - "
+ body += "TP - "
+ body += "PM - "
+ body += "SM - "
+ body += "FLW - "
+ body += "LOGS\]
"
+
+ body += "Mob type = [M.type]
"
+
+ body += "Kick | "
+ body += "Ban | "
+ body += "Jobban | "
+ body += "Identity Ban | "
+ if(jobban_isbanned(M, "OOC"))
+ body+= "OOCBan | "
+ else
+ body+= "OOCBan | "
+ if(jobban_isbanned(M, "emote"))
+ body+= "EmoteBan | "
+ else
+ body+= "Emoteban | "
+
+ body += "Notes | Messages | Watchlist | "
+ if(M.client)
+ body += "| Prison | "
+ body += "\ Send back to Lobby | "
+ var/muted = M.client.prefs.muted
+ body += "
Mute: "
+ body += "\[IC | "
+ body += "OOC | "
+ body += "PRAY | "
+ body += "ADMINHELP | "
+ body += "DEADCHAT\]"
+ body += "(toggle all)"
+
+ body += "
"
+ body += "Jump to | "
+ body += "Get | "
+ body += "Send To"
+
+ body += "
"
+ body += "Traitor panel | "
+ body += "Narrate to | "
+ body += "Subtle message | "
+ body += "Language Menu"
+
+ if (M.client)
+ if(!isnewplayer(M))
+ body += "
"
+ body += "Transformation:"
+ body += "
"
+
+ //Human
+ if(ishuman(M))
+ body += "Human | "
+ else
+ body += "Humanize | "
+
+ //Monkey
+ if(ismonkey(M))
+ body += "Monkeyized | "
+ else
+ body += "Monkeyize | "
+
+ //Corgi
+ if(iscorgi(M))
+ body += "Corgized | "
+ else
+ body += "Corgize | "
+
+ //AI / Cyborg
+ if(isAI(M))
+ body += "Is an AI "
+ else if(ishuman(M))
+ body += "Make AI | "
+ body += "Make Robot | "
+ body += "Make Alien | "
+ body += "Make Slime | "
+ body += "Make Blob | "
+
+ //Simple Animals
+ if(isanimal(M))
+ body += "Re-Animalize | "
+ else
+ body += "Animalize | "
+
+ body += "
"
+ body += "Rudimentary transformation:
These transformations only create a new mob type and copy stuff over. They do not take into account MMIs and similar mob-specific things. The buttons in 'Transformations' are preferred, when possible.
"
+ body += "Observer | "
+ body += "\[ Alien: Drone, "
+ body += "Hunter, "
+ body += "Sentinel, "
+ body += "Praetorian, "
+ body += "Queen, "
+ body += "Larva \] "
+ body += "Human "
+ body += "\[ slime: Baby, "
+ body += "Adult \] "
+ body += "Monkey | "
+ body += "Cyborg | "
+ body += "Cat | "
+ body += "Runtime | "
+ body += "Corgi | "
+ body += "Ian | "
+ body += "Crab | "
+ body += "Coffee | "
+ //body += "Parrot | "
+ //body += "Poly | "
+ body += "\[ Construct: Juggernaut , "
+ body += "Artificer , "
+ body += "Wraith \] "
+ body += "Shade"
+ body += "
"
+
+ if (M.client)
+ body += "
"
+ body += "Other actions:"
+ body += "
"
+ body += "Forcesay | "
+ body += "Thunderdome 1 | "
+ body += "Thunderdome 2 | "
+ body += "Thunderdome Admin | "
+ body += "Thunderdome Observer | "
+
+ body += "
"
+ body += ""
+
+ usr << browse(body, "window=adminplayeropts-\ref[M];size=550x515")
+ SSblackbox.add_details("admin_verb","Player Panel") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+
+/datum/admins/proc/access_news_network() //MARKER
+ set category = "Fun"
+ set name = "Access Newscaster Network"
+ set desc = "Allows you to view, add and edit news feeds."
+
+ if (!istype(src,/datum/admins))
+ src = usr.client.holder
+ if (!istype(src,/datum/admins))
+ to_chat(usr, "Error: you are not an admin!")
+ return
+ var/dat
+ dat = text("Admin NewscasterAdmin Newscaster Unit
")
+
+ switch(admincaster_screen)
+ if(0)
+ dat += "Welcome to the admin newscaster.
Here you can add, edit and censor every newspiece on the network."
+ dat += "
Feed channels and stories entered through here will be uneditable and handled as official news by the rest of the units."
+ dat += "
Note that this panel allows full freedom over the news network, there are no constrictions except the few basic ones. Don't break things!"
+ if(GLOB.news_network.wanted_issue.active)
+ dat+= "
Read Wanted Issue"
+ dat+= "
Create Feed Channel"
+ dat+= "
View Feed Channels"
+ dat+= "
Submit new Feed story"
+ dat+= "
Exit"
+ var/wanted_already = 0
+ if(GLOB.news_network.wanted_issue.active)
+ wanted_already = 1
+ dat+="
Feed Security functions:
"
+ dat+="
[(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue"
+ dat+="
Censor Feed Stories"
+ dat+="
Mark Feed Channel with Nanotrasen D-Notice (disables and locks the channel)."
+ dat+="
The newscaster recognises you as:
[src.admin_signature]"
+ if(1)
+ dat+= "Station Feed Channels
"
+ if( isemptylist(GLOB.news_network.network_channels) )
+ dat+="No active channels found..."
+ else
+ for(var/datum/newscaster/feed_channel/CHANNEL in GLOB.news_network.network_channels)
+ if(CHANNEL.is_admin_channel)
+ dat+="[CHANNEL.channel_name]
"
+ else
+ dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
"
+ dat+="
Refresh"
+ dat+="
Back"
+ if(2)
+ dat+="Creating new Feed Channel..."
+ dat+="
Channel Name: [src.admincaster_feed_channel.channel_name]
"
+ dat+="Channel Author: [src.admin_signature]
"
+ dat+="Will Accept Public Feeds: [(src.admincaster_feed_channel.locked) ? ("NO") : ("YES")]
"
+ dat+="
Submit
Cancel
"
+ if(3)
+ dat+="Creating new Feed Message..."
+ dat+="
Receiving Channel: [src.admincaster_feed_channel.channel_name]
" //MARK
+ dat+="Message Author: [src.admin_signature]
"
+ dat+="Message Body: [src.admincaster_feed_message.returnBody(-1)]
"
+ dat+="
Submit
Cancel
"
+ if(4)
+ dat+="Feed story successfully submitted to [src.admincaster_feed_channel.channel_name].
"
+ dat+="
Return
"
+ if(5)
+ dat+="Feed Channel [src.admincaster_feed_channel.channel_name] created successfully.
"
+ dat+="
Return
"
+ if(6)
+ dat+="ERROR: Could not submit Feed story to Network.
"
+ if(src.admincaster_feed_channel.channel_name=="")
+ dat+="•Invalid receiving channel name.
"
+ if(src.admincaster_feed_message.returnBody(-1) == "" || src.admincaster_feed_message.returnBody(-1) == "\[REDACTED\]")
+ dat+="•Invalid message body.
"
+ dat+="
Return
"
+ if(7)
+ dat+="ERROR: Could not submit Feed Channel to Network.
"
+ if(src.admincaster_feed_channel.channel_name =="" || src.admincaster_feed_channel.channel_name == "\[REDACTED\]")
+ dat+="•Invalid channel name.
"
+ var/check = 0
+ for(var/datum/newscaster/feed_channel/FC in GLOB.news_network.network_channels)
+ if(FC.channel_name == src.admincaster_feed_channel.channel_name)
+ check = 1
+ break
+ if(check)
+ dat+="•Channel name already in use.
"
+ dat+="
Return
"
+ if(9)
+ dat+="[admincaster_feed_channel.channel_name]: \[created by: [admincaster_feed_channel.returnAuthor(-1)]\]
"
+ if(src.admincaster_feed_channel.censored)
+ dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a Nanotrasen D-Notice.
"
+ dat+="No further feed story additions are allowed while the D-Notice is in effect.
"
+ else
+ if( isemptylist(src.admincaster_feed_channel.messages) )
+ dat+="No feed messages found in channel...
"
+ else
+ var/i = 0
+ for(var/datum/newscaster/feed_message/MESSAGE in src.admincaster_feed_channel.messages)
+ i++
+ dat+="-[MESSAGE.returnBody(-1)]
"
+ if(MESSAGE.img)
+ usr << browse_rsc(MESSAGE.img, "tmp_photo[i].png")
+ dat+="
"
+ dat+="\[Story by [MESSAGE.returnAuthor(-1)]\]
"
+ dat+="[MESSAGE.comments.len] comment[MESSAGE.comments.len > 1 ? "s" : ""]:
"
+ for(var/datum/newscaster/feed_comment/comment in MESSAGE.comments)
+ dat+="[comment.body]
[comment.author] [comment.time_stamp]
"
+ dat+="
"
+ dat+="
Refresh"
+ dat+="
Back"
+ if(10)
+ dat+="Nanotrasen Feed Censorship Tool
"
+ dat+="NOTE: Due to the nature of news Feeds, total deletion of a Feed Story is not possible.
"
+ dat+="Keep in mind that users attempting to view a censored feed will instead see the \[REDACTED\] tag above it."
+ dat+="
Select Feed channel to get Stories from:
"
+ if(isemptylist(GLOB.news_network.network_channels))
+ dat+="No feed channels found active...
"
+ else
+ for(var/datum/newscaster/feed_channel/CHANNEL in GLOB.news_network.network_channels)
+ dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
"
+ dat+="
Cancel"
+ if(11)
+ dat+="Nanotrasen D-Notice Handler
"
+ dat+="A D-Notice is to be bestowed upon the channel if the handling Authority deems it as harmful for the station's"
+ dat+="morale, integrity or disciplinary behaviour. A D-Notice will render a channel unable to be updated by anyone, without deleting any feed"
+ dat+="stories it might contain at the time. You can lift a D-Notice if you have the required access at any time.
"
+ if(isemptylist(GLOB.news_network.network_channels))
+ dat+="No feed channels found active...
"
+ else
+ for(var/datum/newscaster/feed_channel/CHANNEL in GLOB.news_network.network_channels)
+ dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : ()]
"
+
+ dat+="
Back"
+ if(12)
+ dat+="[src.admincaster_feed_channel.channel_name]: \[ created by: [src.admincaster_feed_channel.returnAuthor(-1)] \]
"
+ dat+="[(src.admincaster_feed_channel.authorCensor) ? ("Undo Author censorship") : ("Censor channel Author")]
"
+
+ if( isemptylist(src.admincaster_feed_channel.messages) )
+ dat+="No feed messages found in channel...
"
+ else
+ for(var/datum/newscaster/feed_message/MESSAGE in src.admincaster_feed_channel.messages)
+ dat+="-[MESSAGE.returnBody(-1)]
\[Story by [MESSAGE.returnAuthor(-1)]\]
"
+ dat+="[(MESSAGE.bodyCensor) ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.authorCensor) ? ("Undo Author Censorship") : ("Censor message Author")]
"
+ dat+="[MESSAGE.comments.len] comment[MESSAGE.comments.len > 1 ? "s" : ""]: [MESSAGE.locked ? "Unlock" : "Lock"]
"
+ for(var/datum/newscaster/feed_comment/comment in MESSAGE.comments)
+ dat+="[comment.body] X
[comment.author] [comment.time_stamp]
"
+ dat+="
Back"
+ if(13)
+ dat+="[src.admincaster_feed_channel.channel_name]: \[ created by: [src.admincaster_feed_channel.returnAuthor(-1)] \]
"
+ dat+="Channel messages listed below. If you deem them dangerous to the station, you can Bestow a D-Notice upon the channel.
"
+ if(src.admincaster_feed_channel.censored)
+ dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a Nanotrasen D-Notice.
"
+ dat+="No further feed story additions are allowed while the D-Notice is in effect.
"
+ else
+ if( isemptylist(src.admincaster_feed_channel.messages) )
+ dat+="No feed messages found in channel...
"
+ else
+ for(var/datum/newscaster/feed_message/MESSAGE in src.admincaster_feed_channel.messages)
+ dat+="-[MESSAGE.returnBody(-1)]
\[Story by [MESSAGE.returnAuthor(-1)]\]
"
+ dat+="
Back"
+ if(14)
+ dat+="Wanted Issue Handler:"
+ var/wanted_already = 0
+ var/end_param = 1
+ if(GLOB.news_network.wanted_issue.active)
+ wanted_already = 1
+ end_param = 2
+ if(wanted_already)
+ dat+="
A wanted issue is already in Feed Circulation. You can edit or cancel it below."
+ dat+="
"
+ dat+="Criminal Name: [src.admincaster_wanted_message.criminal]
"
+ dat+="Description: [src.admincaster_wanted_message.body]
"
+ if(wanted_already)
+ dat+="Wanted Issue created by:[GLOB.news_network.wanted_issue.scannedUser]
"
+ else
+ dat+="Wanted Issue will be created under prosecutor:[src.admin_signature]
"
+ dat+="
[(wanted_already) ? ("Edit Issue") : ("Submit")]"
+ if(wanted_already)
+ dat+="
Take down Issue"
+ dat+="
Cancel"
+ if(15)
+ dat+="Wanted issue for [src.admincaster_wanted_message.criminal] is now in Network Circulation.
"
+ dat+="
Return
"
+ if(16)
+ dat+="ERROR: Wanted Issue rejected by Network.
"
+ if(src.admincaster_wanted_message.criminal =="" || src.admincaster_wanted_message.criminal == "\[REDACTED\]")
+ dat+="•Invalid name for person wanted.
"
+ if(src.admincaster_wanted_message.body == "" || src.admincaster_wanted_message.body == "\[REDACTED\]")
+ dat+="•Invalid description.
"
+ dat+="
Return
"
+ if(17)
+ dat+="Wanted Issue successfully deleted from Circulation
"
+ dat+="
Return
"
+ if(18)
+ dat+="-- STATIONWIDE WANTED ISSUE --
\[Submitted by: [GLOB.news_network.wanted_issue.scannedUser]\]
"
+ dat+="Criminal: [GLOB.news_network.wanted_issue.criminal]
"
+ dat+="Description: [GLOB.news_network.wanted_issue.body]
"
+ dat+="Photo:: "
+ if(GLOB.news_network.wanted_issue.img)
+ usr << browse_rsc(GLOB.news_network.wanted_issue.img, "tmp_photow.png")
+ dat+="
"
+ else
+ dat+="None"
+ dat+="
Back
"
+ if(19)
+ dat+="Wanted issue for [src.admincaster_wanted_message.criminal] successfully edited.
"
+ dat+="
Return
"
+ else
+ dat+="I'm sorry to break your immersion. This shit's bugged. Report this bug to Agouri, polyxenitopalidou@gmail.com"
+
+ //to_chat(world, "Channelname: [src.admincaster_feed_channel.channel_name] [src.admincaster_feed_channel.author]")
+ //to_chat(world, "Msg: [src.admincaster_feed_message.author] [src.admincaster_feed_message.body]")
+ usr << browse(dat, "window=admincaster_main;size=400x600")
+ onclose(usr, "admincaster_main")
+
+
+/datum/admins/proc/Game()
+ if(!check_rights(0))
+ return
+
+ var/dat = {"
+ Game Panel
\n
+ Change Game Mode
+ "}
+ if(GLOB.master_mode == "secret")
+ dat += "(Force Secret Mode)
"
+
+ dat += {"
+
+ Create Object
+ Quick Create Object
+ Create Turf
+ Create Mob
+ "}
+
+ if(marked_datum && istype(marked_datum, /atom))
+ dat += "Duplicate Marked Datum
"
+
+ usr << browse(dat, "window=admin2;size=210x200")
+ return
+
+/////////////////////////////////////////////////////////////////////////////////////////////////admins2.dm merge
+//i.e. buttons/verbs
+
+
+/datum/admins/proc/restart()
+ set category = "Server"
+ set name = "Reboot World"
+ set desc="Restarts the world immediately"
+ if (!usr.client.holder)
+ return
+ var/confirm = alert("Restart the game world?", "Restart", "Yes", "Cancel")
+ if(confirm == "Cancel")
+ return
+ if(confirm == "Yes")
+ SSticker.delay_end = 0
+ SSblackbox.add_details("admin_verb","Reboot World") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+ world.Reboot("Initiated by [usr.client.holder.fakekey ? "Admin" : usr.key].", "end_error", "admin reboot - by [usr.key] [usr.client.holder.fakekey ? "(stealth)" : ""]", 10)
+
+/datum/admins/proc/end_round()
+ set category = "Server"
+ set name = "End Round"
+ set desc = "Attempts to produce a round end report and then restart the server organically."
+
+ if (!usr.client.holder)
+ return
+ var/confirm = alert("End the round and restart the game world?", "End Round", "Yes", "Cancel")
+ if(confirm == "Cancel")
+ return
+ if(confirm == "Yes")
+ SSticker.force_ending = 1
+ SSblackbox.add_details("admin_verb","End Round") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+
+/datum/admins/proc/announce()
+ set category = "Special Verbs"
+ set name = "Announce"
+ set desc="Announce your desires to the world"
+ if(!check_rights(0))
+ return
+
+ var/message = input("Global message to send:", "Admin Announce", null, null) as message
+ if(message)
+ if(!check_rights(R_SERVER,0))
+ message = adminscrub(message,500)
+ to_chat(world, "[usr.client.holder.fakekey ? "Administrator" : usr.key] Announces:\n \t [message]")
+ log_admin("Announce: [key_name(usr)] : [message]")
+ SSblackbox.add_details("admin_verb","Announce") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/set_admin_notice()
+ set category = "Special Verbs"
+ set name = "Set Admin Notice"
+ set desc ="Set an announcement that appears to everyone who joins the server. Only lasts this round"
+ if(!check_rights(0))
+ return
+
+ var/new_admin_notice = input(src,"Set a public notice for this round. Everyone who joins the server will see it.\n(Leaving it blank will delete the current notice):","Set Notice",GLOB.admin_notice) as message|null
+ if(new_admin_notice == null)
+ return
+ if(new_admin_notice == GLOB.admin_notice)
+ return
+ if(new_admin_notice == "")
+ message_admins("[key_name(usr)] removed the admin notice.")
+ log_admin("[key_name(usr)] removed the admin notice:\n[GLOB.admin_notice]")
+ else
+ message_admins("[key_name(usr)] set the admin notice.")
+ log_admin("[key_name(usr)] set the admin notice:\n[new_admin_notice]")
+ to_chat(world, "Admin Notice:\n \t [new_admin_notice]")
+ SSblackbox.add_details("admin_verb","Set Admin Notice") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+ GLOB.admin_notice = new_admin_notice
+ return
+
+/datum/admins/proc/toggleooc()
+ set category = "Server"
+ set desc="Toggle dis bitch"
+ set name="Toggle OOC"
+ toggle_ooc()
+ log_admin("[key_name(usr)] toggled OOC.")
+ message_admins("[key_name_admin(usr)] toggled OOC.")
+ SSblackbox.add_details("admin_toggle","Toggle OOC|[GLOB.ooc_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/toggleoocdead()
+ set category = "Server"
+ set desc="Toggle dis bitch"
+ set name="Toggle Dead OOC"
+ GLOB.dooc_allowed = !( GLOB.dooc_allowed )
+
+ log_admin("[key_name(usr)] toggled OOC.")
+ message_admins("[key_name_admin(usr)] toggled Dead OOC.")
+ SSblackbox.add_details("admin_toggle","Toggle Dead OOC|[GLOB.dooc_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/startnow()
+ set category = "Server"
+ set desc="Start the round RIGHT NOW"
+ set name="Start Now"
+ if(SSticker.current_state == GAME_STATE_PREGAME || SSticker.current_state == GAME_STATE_STARTUP)
+ SSticker.start_immediately = TRUE
+ log_admin("[usr.key] has started the game.")
+ var/msg = ""
+ if(SSticker.current_state == GAME_STATE_STARTUP)
+ msg = " (The server is still setting up, but the round will be \
+ started as soon as possible.)"
+ message_admins("\
+ [usr.key] has started the game.[msg]")
+ SSblackbox.add_details("admin_verb","Start Now") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+ return 1
+ else
+ to_chat(usr, "Error: Start Now: Game has already started.")
+
+ return 0
+
+/datum/admins/proc/toggleenter()
+ set category = "Server"
+ set desc="People can't enter"
+ set name="Toggle Entering"
+ GLOB.enter_allowed = !( GLOB.enter_allowed )
+ if (!( GLOB.enter_allowed ))
+ to_chat(world, "New players may no longer enter the game.")
+ else
+ to_chat(world, "New players may now enter the game.")
+ log_admin("[key_name(usr)] toggled new player game entering.")
+ message_admins("[key_name_admin(usr)] toggled new player game entering.")
+ world.update_status()
+ SSblackbox.add_details("admin_toggle","Toggle Entering|[GLOB.enter_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/toggleAI()
+ set category = "Server"
+ set desc="People can't be AI"
+ set name="Toggle AI"
+ config.allow_ai = !( config.allow_ai )
+ if (!( config.allow_ai ))
+ to_chat(world, "The AI job is no longer chooseable.")
+ else
+ to_chat(world, "The AI job is chooseable now.")
+ log_admin("[key_name(usr)] toggled AI allowed.")
+ world.update_status()
+ SSblackbox.add_details("admin_toggle","Toggle AI|[config.allow_ai]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/toggleaban()
+ set category = "Server"
+ set desc="Respawn basically"
+ set name="Toggle Respawn"
+ GLOB.abandon_allowed = !( GLOB.abandon_allowed )
+ if (GLOB.abandon_allowed)
+ to_chat(world, "You may now respawn.")
+ else
+ to_chat(world, "You may no longer respawn :(")
+ message_admins("[key_name_admin(usr)] toggled respawn to [GLOB.abandon_allowed ? "On" : "Off"].")
+ log_admin("[key_name(usr)] toggled respawn to [GLOB.abandon_allowed ? "On" : "Off"].")
+ world.update_status()
+ SSblackbox.add_details("admin_toggle","Toggle Respawn|[GLOB.abandon_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/delay()
+ set category = "Server"
+ 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(SSticker.GetTimeLeft()/10)) as num|null
+ if(SSticker.current_state > GAME_STATE_PREGAME)
+ return alert("Too late... The game has already started!")
+ if(newtime)
+ SSticker.SetTimeLeft(newtime * 10)
+ if(newtime < 0)
+ to_chat(world, "The game start has been delayed.")
+ log_admin("[key_name(usr)] delayed the round start.")
+ else
+ to_chat(world, "The game will start in [newtime] seconds.")
+ world << 'sound/ai/attention.ogg'
+ log_admin("[key_name(usr)] set the pre-game delay to [newtime] seconds.")
+ SSblackbox.add_details("admin_verb","Delay Game Start") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/unprison(mob/M in GLOB.mob_list)
+ set category = "Admin"
+ set name = "Unprison"
+ if (M.z == ZLEVEL_CENTCOM)
+ M.loc = pick(GLOB.latejoin)
+ message_admins("[key_name_admin(usr)] has unprisoned [key_name_admin(M)]")
+ log_admin("[key_name(usr)] has unprisoned [key_name(M)]")
+ else
+ alert("[M.name] is not prisoned.")
+ SSblackbox.add_details("admin_verb","Unprison") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+////////////////////////////////////////////////////////////////////////////////////////////////ADMIN HELPER PROCS
+
+/*
+/datum/admins/proc/get_sab_desc(var/target)
+ switch(target)
+ if(1)
+ return "Destroy at least 70% of the plasma canisters on the station"
+ if(2)
+ return "Destroy the AI"
+ if(3)
+ var/count = 0
+ for(var/mob/living/carbon/monkey/Monkey in world)
+ if(Monkey.z == 1)
+ count++
+ return "Kill all [count] of the monkeys on the station"
+ if(4)
+ return "Cut power to at least 80% of the station"
+ else
+ return "Error: Invalid sabotage target: [target]"
+*/
+/datum/admins/proc/spawn_atom(object as text)
+ set category = "Debug"
+ set desc = "(atom path) Spawn an atom"
+ set name = "Spawn"
+
+ if(!check_rights(R_SPAWN))
+ return
+
+ var/chosen = pick_closest_path(object)
+ if(!chosen)
+ return
+ if(ispath(chosen,/turf))
+ var/turf/T = get_turf(usr.loc)
+ T.ChangeTurf(chosen)
+ else
+ var/atom/A = new chosen(usr.loc)
+ A.admin_spawned = TRUE
+
+ log_admin("[key_name(usr)] spawned [chosen] at ([usr.x],[usr.y],[usr.z])")
+ SSblackbox.add_details("admin_verb","Spawn Atom") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+
+/datum/admins/proc/show_traitor_panel(mob/M in GLOB.mob_list)
+ set category = "Admin"
+ set desc = "Edit mobs's memory and role"
+ set name = "Show Traitor Panel"
+
+ if(!istype(M))
+ to_chat(usr, "This can only be used on instances of type /mob")
+ return
+ if(!M.mind)
+ to_chat(usr, "This mob has no mind!")
+ return
+
+ M.mind.edit_memory()
+ SSblackbox.add_details("admin_verb","Traitor Panel") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+
+/datum/admins/proc/toggletintedweldhelmets()
+ set category = "Debug"
+ set desc="Reduces view range when wearing welding helmets"
+ set name="Toggle tinted welding helmes"
+ GLOB.tinted_weldhelh = !( GLOB.tinted_weldhelh )
+ if (GLOB.tinted_weldhelh)
+ to_chat(world, "The tinted_weldhelh has been enabled!")
+ else
+ to_chat(world, "The tinted_weldhelh has been disabled!")
+ log_admin("[key_name(usr)] toggled tinted_weldhelh.")
+ message_admins("[key_name_admin(usr)] toggled tinted_weldhelh.")
+ SSblackbox.add_details("admin_toggle","Toggle Tinted Welding Helmets|[GLOB.tinted_weldhelh]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/toggleguests()
+ set category = "Server"
+ set desc="Guests can't enter"
+ set name="Toggle guests"
+ GLOB.guests_allowed = !( GLOB.guests_allowed )
+ if (!( GLOB.guests_allowed ))
+ to_chat(world, "Guests may no longer enter the game.")
+ else
+ to_chat(world, "Guests may now enter the game.")
+ log_admin("[key_name(usr)] toggled guests game entering [GLOB.guests_allowed?"":"dis"]allowed.")
+ message_admins("[key_name_admin(usr)] toggled guests game entering [GLOB.guests_allowed?"":"dis"]allowed.")
+ SSblackbox.add_details("admin_toggle","Toggle Guests|[GLOB.guests_allowed]") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+
+/datum/admins/proc/output_ai_laws()
+ var/ai_number = 0
+ for(var/mob/living/silicon/S in GLOB.mob_list)
+ ai_number++
+ if(isAI(S))
+ to_chat(usr, "AI [key_name(S, usr)]'s laws:")
+ else if(iscyborg(S))
+ var/mob/living/silicon/robot/R = S
+ to_chat(usr, "CYBORG [key_name(S, usr)] [R.connected_ai?"(Slaved to: [R.connected_ai])":"(Independant)"]: laws:")
+ else if (ispAI(S))
+ to_chat(usr, "pAI [key_name(S, usr)]'s laws:")
+ else
+ to_chat(usr, "SOMETHING SILICON [key_name(S, usr)]'s laws:")
+
+ if (S.laws == null)
+ to_chat(usr, "[key_name(S, usr)]'s laws are null?? Contact a coder.")
+ else
+ S.laws.show_laws(usr)
+ if(!ai_number)
+ to_chat(usr, "No AIs located" )
+
+/datum/admins/proc/output_all_devil_info()
+ var/devil_number = 0
+ for(var/D in SSticker.mode.devils)
+ devil_number++
+ to_chat(usr, "Devil #[devil_number]:
" + SSticker.mode.printdevilinfo(D))
+ if(!devil_number)
+ to_chat(usr, "No Devils located" )
+
+/datum/admins/proc/output_devil_info(mob/living/M)
+ if(is_devil(M))
+ to_chat(usr, SSticker.mode.printdevilinfo(M.mind))
+ else
+ to_chat(usr, "[M] is not a devil.")
+
+/datum/admins/proc/manage_free_slots()
+ if(!check_rights())
+ return
+ var/dat = "Manage Free Slots"
+ var/count = 0
+
+ if(SSticker && !SSticker.mode)
+ alert(usr, "You cannot manage jobs before the round starts!")
+ return
+
+ if(SSjob)
+ for(var/datum/job/job in SSjob.occupations)
+ count++
+ var/J_title = html_encode(job.title)
+ var/J_opPos = html_encode(job.total_positions - (job.total_positions - job.current_positions))
+ var/J_totPos = html_encode(job.total_positions)
+ if(job.total_positions < 0)
+ dat += "[J_title]: [J_opPos] (unlimited)"
+ else
+ dat += "[J_title]: [J_opPos]/[J_totPos]"
+
+ if(job.title == "AI" || job.title == "Cyborg")
+ dat += " (Cannot Late Join)
"
+ continue
+ if(job.total_positions >= 0)
+ dat += " Add | "
+ if(job.total_positions > job.current_positions)
+ dat += "Remove | "
+ else
+ dat += "Remove | "
+ dat += "Unlimit"
+ else
+ dat += " Limit"
+ dat += "
"
+
+ dat += ""
+ var/winheight = 100 + (count * 20)
+ winheight = min(winheight, 690)
+ usr << browse(dat, "window=players;size=375x[winheight]")
+
+//
+//
+//ALL DONE
+//*********************************************************************************************************
+//TO-DO:
+//
+//
+
+//RIP ferry snowflakes
+
+//Kicks all the clients currently in the lobby. The second parameter (kick_only_afk) determins if an is_afk() check is ran, or if all clients are kicked
+//defaults to kicking everyone (afk + non afk clients in the lobby)
+//returns a list of ckeys of the kicked clients
+/proc/kick_clients_in_lobby(message, kick_only_afk = 0)
+ var/list/kicked_client_names = list()
+ for(var/client/C in GLOB.clients)
+ if(isnewplayer(C.mob))
+ if(kick_only_afk && !C.is_afk()) //Ignore clients who are not afk
+ continue
+ if(message)
+ to_chat(C, message)
+ kicked_client_names.Add("[C.ckey]")
+ qdel(C)
+ return kicked_client_names
+
+//returns 1 to let the dragdrop code know we are trapping this event
+//returns 0 if we don't plan to trap the event
+/datum/admins/proc/cmd_ghost_drag(mob/dead/observer/frommob, mob/living/tomob)
+
+ //this is the exact two check rights checks required to edit a ckey with vv.
+ if (!check_rights(R_VAREDIT,0) || !check_rights(R_SPAWN|R_DEBUG,0))
+ return 0
+
+ if (!frommob.ckey)
+ return 0
+
+ var/question = ""
+ if (tomob.ckey)
+ question = "This mob already has a user ([tomob.key]) in control of it! "
+ question += "Are you sure you want to place [frommob.name]([frommob.key]) in control of [tomob.name]?"
+
+ var/ask = alert(question, "Place ghost in control of mob?", "Yes", "No")
+ if (ask != "Yes")
+ return 1
+
+ if (!frommob || !tomob) //make sure the mobs don't go away while we waited for a response
+ return 1
+
+ tomob.ghostize(0)
+
+ message_admins("[key_name_admin(usr)] has put [frommob.ckey] in control of [tomob.name].")
+ log_admin("[key_name(usr)] stuffed [frommob.ckey] into [tomob.name].")
+ SSblackbox.add_details("admin_verb","Ghost Drag Control")
+
+ tomob.ckey = frommob.ckey
+ qdel(frommob)
+
+ return 1
+
+/client/proc/adminGreet(logout)
+ if(SSticker.HasRoundStarted())
+ var/string
+ if(logout && config && config.announce_admin_logout)
+ string = pick(
+ "Admin logout: [key_name(src)]")
+ else if(!logout && config && config.announce_admin_login && (prefs.toggles & ANNOUNCE_LOGIN))
+ string = pick(
+ "Admin login: [key_name(src)]")
+ if(string)
message_admins("[string]")
\ No newline at end of file
diff --git a/code/modules/clothing/under/color.dm b/code/modules/clothing/under/color.dm
index e4c79e2cfc..cd6d209e5c 100644
--- a/code/modules/clothing/under/color.dm
+++ b/code/modules/clothing/under/color.dm
@@ -16,9 +16,9 @@
item_color = "black"
resistance_flags = 0
-/obj/item/clothing/under/color/black/ghost
- flags = NODROP|DROPDEL
-
+/obj/item/clothing/under/color/black/ghost
+ flags = NODROP|DROPDEL
+
/obj/item/clothing/under/color/grey
name = "grey jumpsuit"
desc = "A tasteful grey jumpsuit that reminds you of the good old days."
diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm
index b903f681ea..3e07919abb 100644
--- a/code/modules/mob/living/carbon/human/species_types/golems.dm
+++ b/code/modules/mob/living/carbon/human/species_types/golems.dm
@@ -1,700 +1,700 @@
-/datum/species/golem
- // Animated beings of stone. They have increased defenses, and do not need to breathe. They're also slow as fuuuck.
- name = "Golem"
- id = "iron golem"
- species_traits = list(NOBREATH,RESISTHOT,RESISTCOLD,RESISTPRESSURE,NOFIRE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,MUTCOLORS,NO_UNDERWEAR)
- mutant_organs = list(/obj/item/organ/adamantine_resonator)
- speedmod = 2
- armor = 55
- siemens_coeff = 0
- punchdamagelow = 5
- punchdamagehigh = 14
- punchstunthreshold = 11 //about 40% chance to stun
- no_equip = list(slot_wear_mask, slot_wear_suit, slot_gloves, slot_shoes, slot_w_uniform, slot_s_store)
- nojumpsuit = 1
- sexes = 1
- damage_overlay_type = ""
- meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem
- // To prevent golem subtypes from overwhelming the odds when random species
- // changes, only the Random Golem type can be chosen
- blacklisted = TRUE
- dangerous_existence = TRUE
- limbs_id = "golem"
- fixed_mut_color = "aaa"
- var/info_text = "As an Iron Golem, you don't have any special traits."
-
- var/prefix = "Iron"
- var/list/special_names
-
-/datum/species/golem/random_name(gender,unique,lastname)
- var/golem_surname = pick(GLOB.golem_names)
- // 3% chance that our golem has a human surname, because
- // cultural contamination
- if(prob(3))
- golem_surname = pick(GLOB.last_names)
- else if(special_names && prob(5))
- golem_surname = pick(special_names)
-
- var/golem_name = "[prefix] [golem_surname]"
- return golem_name
-
-/datum/species/golem/random
- name = "Random Golem"
- blacklisted = FALSE
- dangerous_existence = FALSE
-
-/datum/species/golem/random/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- ..()
- var/list/golem_types = typesof(/datum/species/golem) - src.type
- var/datum/species/golem/golem_type = pick(golem_types)
- var/mob/living/carbon/human/H = C
- H.set_species(golem_type)
- to_chat(H, "[initial(golem_type.info_text)]")
-
-/datum/species/golem/adamantine
- name = "Adamantine Golem"
- id = "adamantine golem"
- meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine
- mutant_organs = list(/obj/item/organ/adamantine_resonator, /obj/item/organ/vocal_cords/adamantine)
- fixed_mut_color = "4ed"
- info_text = "As an Adamantine Golem, you possess special vocal cords allowing you to \"resonate\" messages to all golems."
- prefix = "Adamantine"
-
-//The suicide bombers of golemkind
-/datum/species/golem/plasma
- name = "Plasma Golem"
- id = "plasma golem"
- fixed_mut_color = "a3d"
- meat = /obj/item/weapon/ore/plasma
- //Can burn and takes damage from heat
- species_traits = list(NOBREATH,RESISTCOLD,RESISTPRESSURE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,MUTCOLORS,NO_UNDERWEAR)
- info_text = "As a Plasma Golem, you burn easily. Be careful, if you get hot enough while burning, you'll blow up!"
- heatmod = 0 //fine until they blow up
- prefix = "Plasma"
- special_names = list("Flood","Fire","Bar","Man")
- var/boom_warning = FALSE
- var/datum/action/innate/ignite/ignite
-
-/datum/species/golem/plasma/spec_life(mob/living/carbon/human/H)
- if(H.bodytemperature > 750)
- if(!boom_warning && H.on_fire)
- to_chat(H, "You feel like you could blow up at any moment!")
- boom_warning = TRUE
- else
- if(boom_warning)
- to_chat(H, "You feel more stable.")
- boom_warning = FALSE
-
- if(H.bodytemperature > 850 && H.on_fire && prob(25))
- explosion(get_turf(H),1,2,4,flame_range = 5)
- if(H)
- H.gib()
- if(H.fire_stacks < 2) //flammable
- H.adjust_fire_stacks(1)
- ..()
-
-/datum/species/golem/plasma/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- ..()
- if(ishuman(C))
- ignite = new
- ignite.Grant(C)
-
-/datum/species/golem/plasma/on_species_loss(mob/living/carbon/C)
- if(ignite)
- ignite.Remove(C)
- ..()
-
-/datum/action/innate/ignite
- name = "Ignite"
- desc = "Set yourself aflame, bringing yourself closer to exploding!"
- check_flags = AB_CHECK_CONSCIOUS
- button_icon_state = "sacredflame"
-
-/datum/action/innate/ignite/Activate()
- if(ishuman(owner))
- var/mob/living/carbon/human/H = owner
- if(H.fire_stacks)
- to_chat(owner, "You ignite yourself!")
- else
- to_chat(owner, "You try ignite yourself, but fail!")
- H.IgniteMob() //firestacks are already there passively
-
-//Harder to hurt
-/datum/species/golem/diamond
- name = "Diamond Golem"
- id = "diamond golem"
- fixed_mut_color = "0ff"
- armor = 70 //up from 55
- meat = /obj/item/weapon/ore/diamond
- info_text = "As a Diamond Golem, you are more resistant than the average golem."
- prefix = "Diamond"
- special_names = list("Back")
-
-//Faster but softer and less armoured
-/datum/species/golem/gold
- name = "Gold Golem"
- id = "gold golem"
- fixed_mut_color = "cc0"
- speedmod = 1
- armor = 25 //down from 55
- meat = /obj/item/weapon/ore/gold
- info_text = "As a Gold Golem, you are faster but less resistant than the average golem."
- prefix = "Golden"
-
-//Heavier, thus higher chance of stunning when punching
-/datum/species/golem/silver
- name = "Silver Golem"
- id = "silver golem"
- fixed_mut_color = "ddd"
- punchstunthreshold = 9 //60% chance, from 40%
- meat = /obj/item/weapon/ore/silver
- info_text = "As a Silver Golem, your attacks are heavier and have a higher chance of stunning."
- prefix = "Silver"
- special_names = list("Surfer", "Chariot", "Lining")
-
-//Harder to stun, deals more damage, but it's even slower
-/datum/species/golem/plasteel
- name = "Plasteel Golem"
- id = "plasteel golem"
- fixed_mut_color = "bbb"
- stunmod = 0.40
- punchdamagelow = 12
- punchdamagehigh = 21
- punchstunthreshold = 18 //still 40% stun chance
- speedmod = 4 //pretty fucking slow
- meat = /obj/item/weapon/ore/iron
- info_text = "As a Plasteel Golem, you are slower, but harder to stun, and hit very hard when punching."
- attack_verb = "smash"
- attack_sound = 'sound/effects/meteorimpact.ogg' //hits pretty hard
- prefix = "Plasteel"
-
-//Immune to ash storms
-/datum/species/golem/titanium
- name = "Titanium Golem"
- id = "titanium golem"
- fixed_mut_color = "fff"
- meat = /obj/item/weapon/ore/titanium
- info_text = "As a Titanium Golem, you are immune to ash storms, and slightly more resistant to burn damage."
- burnmod = 0.9
- prefix = "Titanium"
-
-/datum/species/golem/titanium/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- . = ..()
- C.weather_immunities |= "ash"
-
-/datum/species/golem/titanium/on_species_loss(mob/living/carbon/C)
- . = ..()
- C.weather_immunities -= "ash"
-
-//Immune to ash storms and lava
-/datum/species/golem/plastitanium
- name = "Plastitanium Golem"
- id = "plastitanium golem"
- fixed_mut_color = "888"
- meat = /obj/item/weapon/ore/titanium
- info_text = "As a Plastitanium Golem, you are immune to both ash storms and lava, and slightly more resistant to burn damage."
- burnmod = 0.8
- prefix = "Plastitanium"
-
-/datum/species/golem/plastitanium/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- . = ..()
- C.weather_immunities |= "lava"
- C.weather_immunities |= "ash"
-
-/datum/species/golem/plastitanium/on_species_loss(mob/living/carbon/C)
- . = ..()
- C.weather_immunities -= "ash"
- C.weather_immunities -= "lava"
-
-//Fast and regenerates... but can only speak like an abductor
-/datum/species/golem/alloy
- name = "Alien Alloy Golem"
- id = "alloy golem"
- fixed_mut_color = "333"
- meat = /obj/item/stack/sheet/mineral/abductor
- mutant_organs = list(/obj/item/organ/tongue/abductor) //abductor tongue
- speedmod = 1 //faster
- info_text = "As an Alloy Golem, you are made of advanced alien materials: you are faster and regenerate over time. You are, however, only able to be heard by other alloy golems."
- prefix = "Alien"
- special_names = list("Outsider", "Technology", "Watcher", "Stranger") //ominous and unknown
-
-//Regenerates because self-repairing super-advanced alien tech
-/datum/species/golem/alloy/spec_life(mob/living/carbon/human/H)
- if(H.stat == DEAD)
- return
- H.heal_overall_damage(2,2)
- H.adjustToxLoss(-2)
- H.adjustOxyLoss(-2)
-
-//Since this will usually be created from a collaboration between podpeople and free golems, wood golems are a mix between the two races
-/datum/species/golem/wood
- name = "Wood Golem"
- id = "wood golem"
- fixed_mut_color = "49311c"
- meat = /obj/item/stack/sheet/mineral/wood
- //Can burn and take damage from heat
- species_traits = list(NOBREATH,RESISTCOLD,RESISTPRESSURE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,MUTCOLORS,NO_UNDERWEAR)
- armor = 30
- burnmod = 1.25
- heatmod = 1.5
- info_text = "As a Wooden Golem, you have plant-like traits: you take damage from extreme temperatures, can be set on fire, and have lower armor than a normal golem. You regenerate when in the light and wither in the darkness."
- prefix = "Wooden"
-
-/datum/species/golem/wood/random_name(gender,unique,lastname)
- var/plant_name = pick("Tomato", "Potato", "Broccoli", "Carrot", "Ambrosia", "Pumpkin", "Ivy", "Kudzu", "Banana", "Moss", "Flower", "Bloom", "Root", "Bark", "Glowshroom", "Petal", "Leaf", \
- "Venus", "Sprout","Cocoa", "Strawberry", "Citrus", "Oak", "Cactus", "Pepper", "Juniper")
- var/golem_name = "[prefix] [plant_name]"
- return golem_name
-
-/datum/species/golem/wood/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- . = ..()
- C.faction |= "plants"
- C.faction |= "vines"
-
-/datum/species/golem/wood/on_species_loss(mob/living/carbon/C)
- . = ..()
- C.faction -= "plants"
- C.faction -= "vines"
-
-/datum/species/golem/wood/spec_life(mob/living/carbon/human/H)
- if(H.stat == DEAD)
- return
- var/light_amount = 0 //how much light there is in the place, affects receiving nutrition and healing
- if(isturf(H.loc)) //else, there's considered to be no light
- var/turf/T = H.loc
- light_amount = min(1,T.get_lumcount()) - 0.5
- H.nutrition += light_amount * 10
- if(H.nutrition > NUTRITION_LEVEL_FULL)
- H.nutrition = NUTRITION_LEVEL_FULL
- if(light_amount > 0.2) //if there's enough light, heal
- H.heal_overall_damage(1,1)
- H.adjustToxLoss(-1)
- H.adjustOxyLoss(-1)
-
- if(H.nutrition < NUTRITION_LEVEL_STARVING + 50)
- H.take_overall_damage(2,0)
-
-/datum/species/golem/wood/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H)
- if(chem.id == "plantbgone")
- H.adjustToxLoss(3)
- H.reagents.remove_reagent(chem.id, REAGENTS_METABOLISM)
- return 1
-
-//Radioactive
-/datum/species/golem/uranium
- name = "Uranium Golem"
- id = "uranium golem"
- fixed_mut_color = "7f0"
- meat = /obj/item/weapon/ore/uranium
- info_text = "As an Uranium Golem, you emit radiation pulses every once in a while. It won't harm fellow golems, but organic lifeforms will be affected."
-
- var/last_event = 0
- var/active = null
- prefix = "Uranium"
-
-/datum/species/golem/uranium/spec_life(mob/living/carbon/human/H)
- if(!active)
- if(world.time > last_event+30)
- active = 1
- radiation_pulse(get_turf(H), 3, 3, 5, 0)
- last_event = world.time
- active = null
- ..()
-
-//Immune to physical bullets and resistant to brute, but very vulnerable to burn damage. Dusts on death.
-/datum/species/golem/sand
- name = "Sand Golem"
- id = "sand golem"
- fixed_mut_color = "ffdc8f"
- meat = /obj/item/weapon/ore/glass //this is sand
- armor = 0
- burnmod = 3 //melts easily
- brutemod = 0.25
- info_text = "As a Sand Golem, you are immune to physical bullets and take very little brute damage, but are extremely vulnerable to burn damage. You will also turn to sand when dying, preventing any form of recovery."
- attack_sound = 'sound/effects/shovel_dig.ogg'
- prefix = "Sand"
-
-/datum/species/golem/sand/spec_death(gibbed, mob/living/carbon/human/H)
- H.visible_message("[H] turns into a pile of sand!")
- for(var/obj/item/W in H)
- H.dropItemToGround(W)
- for(var/i=1, i <= rand(3,5), i++)
- new /obj/item/weapon/ore/glass(get_turf(H))
- qdel(H)
-
-/datum/species/golem/sand/bullet_act(obj/item/projectile/P, mob/living/carbon/human/H)
- if(!(P.original == H && P.firer == H))
- if(P.flag == "bullet" || P.flag == "bomb")
- playsound(H, 'sound/effects/shovel_dig.ogg', 70, 1)
- H.visible_message("The [P.name] sinks harmlessly in [H]'s sandy body!", \
- "The [P.name] sinks harmlessly in [H]'s sandy body!")
- return 2
- return 0
-
-//Reflects lasers and resistant to burn damage, but very vulnerable to brute damage. Shatters on death.
-/datum/species/golem/glass
- name = "Glass Golem"
- id = "glass golem"
- fixed_mut_color = "5a96b4aa" //transparent body
- meat = /obj/item/weapon/shard
- armor = 0
- brutemod = 3 //very fragile
- burnmod = 0.25
- info_text = "As a Glass Golem, you reflect lasers and energy weapons, and are very resistant to burn damage, but you are extremely vulnerable to brute damage. On death, you'll shatter beyond any hope of recovery."
- attack_sound = 'sound/effects/Glassbr2.ogg'
- prefix = "Glass"
-
-/datum/species/golem/glass/spec_death(gibbed, mob/living/carbon/human/H)
- playsound(H, "shatter", 70, 1)
- H.visible_message("[H] shatters!")
- for(var/obj/item/W in H)
- H.dropItemToGround(W)
- for(var/i=1, i <= rand(3,5), i++)
- new /obj/item/weapon/shard(get_turf(H))
- qdel(H)
-
-/datum/species/golem/glass/bullet_act(obj/item/projectile/P, mob/living/carbon/human/H)
- if(!(P.original == H && P.firer == H)) //self-shots don't reflect
- if(P.flag == "laser" || P.flag == "energy")
- H.visible_message("The [P.name] gets reflected by [H]'s glass skin!", \
- "The [P.name] gets reflected by [H]'s glass skin!")
- if(P.starting)
- var/new_x = P.starting.x + pick(0, 0, 0, 0, 0, -1, 1, -2, 2)
- var/new_y = P.starting.y + pick(0, 0, 0, 0, 0, -1, 1, -2, 2)
- var/turf/curloc = get_turf(H)
-
- // redirect the projectile
- P.original = locate(new_x, new_y, P.z)
- P.starting = curloc
- P.current = curloc
- P.firer = H
- P.yo = new_y - curloc.y
- P.xo = new_x - curloc.x
- P.Angle = null
- return -1
- return 0
-
-//Teleports when hit or when it wants to
-/datum/species/golem/bluespace
- name = "Bluespace Golem"
- id = "bluespace golem"
- fixed_mut_color = "33f"
- meat = /obj/item/weapon/ore/bluespace_crystal
- info_text = "As a Bluespace Golem, are spatially unstable: you will teleport when hit, and you can teleport manually at a long distance."
- attack_verb = "bluespace punch"
- attack_sound = 'sound/effects/phasein.ogg'
- prefix = "Bluespace"
- special_names = list("Crystal", "Polycrystal")
-
- var/datum/action/innate/unstable_teleport/unstable_teleport
- var/teleport_cooldown = 100
- var/last_teleport = 0
-
-/datum/species/golem/bluespace/proc/reactive_teleport(mob/living/carbon/human/H)
- H.visible_message("[H] teleports!", "You destabilize and teleport!")
- new /obj/effect/particle_effect/sparks(get_turf(H))
- playsound(get_turf(H), "sparks", 50, 1)
- do_teleport(H, get_turf(H), 6, asoundin = 'sound/weapons/emitter2.ogg')
- last_teleport = world.time
-
-/datum/species/golem/bluespace/spec_hitby(atom/movable/AM, mob/living/carbon/human/H)
- ..()
- var/obj/item/I
- if(istype(AM, /obj/item))
- I = AM
- if(I.thrownby == H) //No throwing stuff at yourself to trigger the teleport
- return 0
- else
- reactive_teleport(H)
-
-/datum/species/golem/bluespace/spec_attack_hand(mob/living/carbon/human/M, mob/living/carbon/human/H, datum/martial_art/attacker_style = M.martial_art)
- ..()
- if(world.time > last_teleport + teleport_cooldown && M != H && M.a_intent != INTENT_HELP)
- reactive_teleport(H)
-
-/datum/species/golem/bluespace/spec_attacked_by(obj/item/I, mob/living/user, obj/item/bodypart/affecting, intent, mob/living/carbon/human/H)
- ..()
- if(world.time > last_teleport + teleport_cooldown && user != H)
- reactive_teleport(H)
-
-/datum/species/golem/bluespace/on_hit(obj/item/projectile/P, mob/living/carbon/human/H)
- ..()
- if(world.time > last_teleport + teleport_cooldown)
- reactive_teleport(H)
-
-/datum/species/golem/bluespace/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- ..()
- if(ishuman(C))
- unstable_teleport = new
- unstable_teleport.Grant(C)
-
-/datum/species/golem/bluespace/on_species_loss(mob/living/carbon/C)
- if(unstable_teleport)
- unstable_teleport.Remove(C)
- ..()
-
-/datum/action/innate/unstable_teleport
- name = "Unstable Teleport"
- check_flags = AB_CHECK_CONSCIOUS
- button_icon_state = "jaunt"
- var/cooldown = 150
- var/last_teleport = 0
-
-/datum/action/innate/unstable_teleport/IsAvailable()
- if(..())
- if(world.time > last_teleport + cooldown)
- return 1
- return 0
-
-/datum/action/innate/unstable_teleport/Activate()
- var/mob/living/carbon/human/H = owner
- H.visible_message("[H] starts vibrating!", "You start charging your bluespace core...")
- playsound(get_turf(H), 'sound/weapons/flash.ogg', 25, 1)
- addtimer(CALLBACK(src, .proc/teleport, H), 15)
-
-/datum/action/innate/unstable_teleport/proc/teleport(mob/living/carbon/human/H)
- H.visible_message("[H] disappears in a shower of sparks!", "You teleport!")
- var/datum/effect_system/spark_spread/spark_system = new /datum/effect_system/spark_spread
- spark_system.set_up(10, 0, src)
- spark_system.attach(H)
- spark_system.start()
- do_teleport(H, get_turf(H), 12, asoundin = 'sound/weapons/emitter2.ogg')
- last_teleport = world.time
- UpdateButtonIcon() //action icon looks unavailable
- sleep(cooldown + 5)
- UpdateButtonIcon() //action icon looks available again
-
-
-//honk
-/datum/species/golem/bananium
- name = "Bananium Golem"
- id = "bananium golem"
- fixed_mut_color = "ff0"
- say_mod = "honks"
- punchdamagelow = 0
- punchdamagehigh = 1
- punchstunthreshold = 2 //Harmless and can't stun
- meat = /obj/item/weapon/ore/bananium
- info_text = "As a Bananium Golem, you are made for pranking. Your body emits natural honks, and you cannot hurt people when punching them. Your skin also emits bananas when damaged."
- attack_verb = "honk"
- attack_sound = 'sound/items/AirHorn2.ogg'
- prefix = "Bananium"
-
- var/last_honk = 0
- var/honkooldown = 0
- var/last_banana = 0
- var/banana_cooldown = 100
- var/active = null
-
-/datum/species/golem/bananium/random_name(gender,unique,lastname)
- var/clown_name = pick(GLOB.clown_names)
- var/golem_name = "[uppertext(clown_name)]"
- return golem_name
-
-/datum/species/golem/bananium/spec_attack_hand(mob/living/carbon/human/M, mob/living/carbon/human/H, datum/martial_art/attacker_style = M.martial_art)
- ..()
- if(world.time > last_banana + banana_cooldown && M != H && M.a_intent != INTENT_HELP)
- new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
- last_banana = world.time
-
-/datum/species/golem/bananium/spec_attacked_by(obj/item/I, mob/living/user, obj/item/bodypart/affecting, intent, mob/living/carbon/human/H)
- ..()
- if(world.time > last_banana + banana_cooldown && user != H)
- new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
- last_banana = world.time
-
-/datum/species/golem/bananium/on_hit(obj/item/projectile/P, mob/living/carbon/human/H)
- ..()
- if(world.time > last_banana + banana_cooldown)
- new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
- last_banana = world.time
-
-/datum/species/golem/bananium/spec_hitby(atom/movable/AM, mob/living/carbon/human/H)
- ..()
- var/obj/item/I
- if(istype(AM, /obj/item))
- I = AM
- if(I.thrownby == H) //No throwing stuff at yourself to make bananas
- return 0
- else
- new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
- last_banana = world.time
-
-/datum/species/golem/bananium/spec_life(mob/living/carbon/human/H)
- if(!active)
- if(world.time > last_honk + honkooldown)
- active = 1
- playsound(get_turf(H), 'sound/items/bikehorn.ogg', 50, 1)
- last_honk = world.time
- honkooldown = rand(20, 80)
- active = null
- ..()
-
-/datum/species/golem/bananium/spec_death(gibbed, mob/living/carbon/human/H)
- playsound(get_turf(H), 'sound/misc/sadtrombone.ogg', 70, 0)
-
-/datum/species/golem/bananium/get_spans()
- return list(SPAN_CLOWN)
-
-
-/datum/species/golem/runic
- name = "Runic Golem"
- id = "runic golem"
- limbs_id = "cultgolem"
- sexes = FALSE
- info_text = "As a Runic Golem, you possess eldritch powers granted by the Elder God Nar'Sie."
- species_traits = list(NOBREATH,RESISTHOT,RESISTCOLD,RESISTPRESSURE,NOFIRE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,NO_UNDERWEAR) //no mutcolors
- prefix = "Runic"
-
- var/obj/effect/proc_holder/spell/targeted/ethereal_jaunt/shift/golem/phase_shift
- var/obj/effect/proc_holder/spell/targeted/abyssal_gaze/abyssal_gaze
- var/obj/effect/proc_holder/spell/targeted/dominate/dominate
-
-/datum/species/golem/runic/random_name(gender,unique,lastname)
- var/edgy_first_name = pick("Razor","Blood","Dark","Evil","Cold","Pale","Black","Silent","Chaos","Deadly")
- var/edgy_last_name = pick("Edge","Night","Death","Razor","Blade","Steel","Calamity","Twilight","Shadow","Nightmare") //dammit Razor Razor
- var/golem_name = "[edgy_first_name] [edgy_last_name]"
- return golem_name
-
-/datum/species/golem/runic/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- . = ..()
- C.faction |= "cult"
- phase_shift = new
- C.AddSpell(phase_shift)
- abyssal_gaze = new
- C.AddSpell(abyssal_gaze)
- dominate = new
- C.AddSpell(dominate)
-
-/datum/species/golem/runic/on_species_loss(mob/living/carbon/C)
- . = ..()
- C.faction -= "cult"
- if(phase_shift)
- C.RemoveSpell(phase_shift)
- if(abyssal_gaze)
- C.RemoveSpell(abyssal_gaze)
- if(dominate)
- C.RemoveSpell(dominate)
-
-/datum/species/golem/runic/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H)
- if(chem.id == "holywater")
- H.adjustFireLoss(4)
- H.reagents.remove_reagent(chem.id, REAGENTS_METABOLISM)
-
- if(chem.id == "unholywater")
- H.adjustBruteLoss(-4)
- H.adjustFireLoss(-4)
- H.reagents.remove_reagent(chem.id, REAGENTS_METABOLISM)
-
-/datum/species/golem/cloth
- name = "Cloth Golem"
- id = "cloth golem"
- limbs_id = "clothgolem"
- sexes = FALSE
- info_text = "As a Cloth Golem, you are able to reform yourself after death, provided your remains aren't burned or destroyed. You are, of course, very flammable."
- species_traits = list(NOBREATH,RESISTCOLD,RESISTPRESSURE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,NO_UNDERWEAR) //no mutcolors, and can burn
- armor = 15 //feels no pain, but not too resistant
- burnmod = 2 // don't get burned
- speedmod = 1 // not as heavy as stone
- punchdamagelow = 4
- punchstunthreshold = 7
- punchdamagehigh = 8 // not as heavy as stone
- prefix = "Cloth"
-
-/datum/species/golem/cloth/random_name(gender,unique,lastname)
- var/pharaoh_name = pick("Neferkare", "Hudjefa", "Khufu", "Mentuhotep", "Ahmose", "Amenhotep", "Thutmose", "Hatshepsut", "Tutankhamun", "Ramses", "Seti", \
- "Merenptah", "Djer", "Semerkhet", "Nynetjer", "Khafre", "Pepi", "Intef", "Ay") //yes, Ay was an actual pharaoh
- var/golem_name = "[pharaoh_name] \Roman[rand(1,99)]"
- return golem_name
-
-/datum/species/golem/cloth/spec_life(mob/living/carbon/human/H)
- if(H.fire_stacks < 1)
- H.adjust_fire_stacks(1) //always prone to burning
- ..()
-
-/datum/species/golem/cloth/spec_death(gibbed, mob/living/carbon/human/H)
- if(gibbed)
- return
- if(H.on_fire)
- H.visible_message("[H] burns into ash!")
- H.dust(just_ash = TRUE)
- return
-
- H.visible_message("[H] falls apart into a pile of bandages!")
- new /obj/structure/cloth_pile(get_turf(H), H)
- ..()
-
-/obj/structure/cloth_pile
- name = "pile of bandages"
- desc = "It emits a strange aura, as if there was still life within it..."
- obj_integrity = 50
- max_integrity = 50
- armor = list(melee = 90, bullet = 90, laser = 25, energy = 80, bomb = 50, bio = 100, fire = -50, acid = -50)
- icon = 'icons/obj/items.dmi'
- icon_state = "pile_bandages"
- resistance_flags = FLAMMABLE
-
- var/revive_time = 900
- var/mob/living/carbon/human/cloth_golem
-
-/obj/structure/cloth_pile/Initialize(mapload, mob/living/carbon/human/H)
- if(!QDELETED(H) && is_species(H, /datum/species/golem/cloth))
- H.unequip_everything()
- H.forceMove(src)
- cloth_golem = H
- to_chat(cloth_golem, "You start gathering your life energy, preparing to rise again...")
- addtimer(CALLBACK(src, .proc/revive), revive_time)
- else
- qdel(src)
-
-/obj/structure/cloth_pile/Destroy()
- if(cloth_golem)
- QDEL_NULL(cloth_golem)
- return ..()
-
-/obj/structure/cloth_pile/burn()
- visible_message("[src] burns into ash!")
- new /obj/effect/decal/cleanable/ash(get_turf(src))
- ..()
-
-/obj/structure/cloth_pile/proc/revive()
- if(QDELETED(src) || QDELETED(cloth_golem)) //QDELETED also checks for null, so if no cloth golem is set this won't runtime
- return
- if(cloth_golem.suiciding || cloth_golem.disabilities & NOCLONE)
- QDEL_NULL(cloth_golem)
- return
-
- invisibility = INVISIBILITY_MAXIMUM //disappear before the animation
- new /obj/effect/overlay/temp/mummy_animation(get_turf(src))
- if(cloth_golem.revive(full_heal = TRUE, admin_revive = TRUE))
- cloth_golem.grab_ghost() //won't pull if it's a suicide
- sleep(20)
- cloth_golem.forceMove(get_turf(src))
- cloth_golem.visible_message("[src] rises and reforms into [cloth_golem]!","You reform into yourself!")
- cloth_golem = null
- qdel(src)
-
-/obj/structure/cloth_pile/attackby(obj/item/weapon/P, mob/living/carbon/human/user, params)
- . = ..()
-
- if(resistance_flags & ON_FIRE)
- return
-
- if(P.is_hot())
- visible_message("[src] bursts into flames!")
- fire_act()
-
-/datum/species/golem/plastic
- name = "Plastic"
- id = "plastic golem"
- prefix = "Plastic"
- fixed_mut_color = "fff"
- info_text = "As a Plastic Golem, you are capable of ventcrawling, and passing through plastic flaps."
-
-/datum/species/golem/plastic/on_species_gain(mob/living/carbon/C, datum/species/old_species)
- . = ..()
- C.ventcrawler = VENTCRAWLER_NUDE
-
-/datum/species/golem/plastic/on_species_loss(mob/living/carbon/C)
- . = ..()
+/datum/species/golem
+ // Animated beings of stone. They have increased defenses, and do not need to breathe. They're also slow as fuuuck.
+ name = "Golem"
+ id = "iron golem"
+ species_traits = list(NOBREATH,RESISTHOT,RESISTCOLD,RESISTPRESSURE,NOFIRE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,MUTCOLORS,NO_UNDERWEAR)
+ mutant_organs = list(/obj/item/organ/adamantine_resonator)
+ speedmod = 2
+ armor = 55
+ siemens_coeff = 0
+ punchdamagelow = 5
+ punchdamagehigh = 14
+ punchstunthreshold = 11 //about 40% chance to stun
+ no_equip = list(slot_wear_mask, slot_wear_suit, slot_gloves, slot_shoes, slot_w_uniform, slot_s_store)
+ nojumpsuit = 1
+ sexes = 1
+ damage_overlay_type = ""
+ meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem
+ // To prevent golem subtypes from overwhelming the odds when random species
+ // changes, only the Random Golem type can be chosen
+ blacklisted = TRUE
+ dangerous_existence = TRUE
+ limbs_id = "golem"
+ fixed_mut_color = "aaa"
+ var/info_text = "As an Iron Golem, you don't have any special traits."
+
+ var/prefix = "Iron"
+ var/list/special_names
+
+/datum/species/golem/random_name(gender,unique,lastname)
+ var/golem_surname = pick(GLOB.golem_names)
+ // 3% chance that our golem has a human surname, because
+ // cultural contamination
+ if(prob(3))
+ golem_surname = pick(GLOB.last_names)
+ else if(special_names && prob(5))
+ golem_surname = pick(special_names)
+
+ var/golem_name = "[prefix] [golem_surname]"
+ return golem_name
+
+/datum/species/golem/random
+ name = "Random Golem"
+ blacklisted = FALSE
+ dangerous_existence = FALSE
+
+/datum/species/golem/random/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ ..()
+ var/list/golem_types = typesof(/datum/species/golem) - src.type
+ var/datum/species/golem/golem_type = pick(golem_types)
+ var/mob/living/carbon/human/H = C
+ H.set_species(golem_type)
+ to_chat(H, "[initial(golem_type.info_text)]")
+
+/datum/species/golem/adamantine
+ name = "Adamantine Golem"
+ id = "adamantine golem"
+ meat = /obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine
+ mutant_organs = list(/obj/item/organ/adamantine_resonator, /obj/item/organ/vocal_cords/adamantine)
+ fixed_mut_color = "4ed"
+ info_text = "As an Adamantine Golem, you possess special vocal cords allowing you to \"resonate\" messages to all golems."
+ prefix = "Adamantine"
+
+//The suicide bombers of golemkind
+/datum/species/golem/plasma
+ name = "Plasma Golem"
+ id = "plasma golem"
+ fixed_mut_color = "a3d"
+ meat = /obj/item/weapon/ore/plasma
+ //Can burn and takes damage from heat
+ species_traits = list(NOBREATH,RESISTCOLD,RESISTPRESSURE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,MUTCOLORS,NO_UNDERWEAR)
+ info_text = "As a Plasma Golem, you burn easily. Be careful, if you get hot enough while burning, you'll blow up!"
+ heatmod = 0 //fine until they blow up
+ prefix = "Plasma"
+ special_names = list("Flood","Fire","Bar","Man")
+ var/boom_warning = FALSE
+ var/datum/action/innate/ignite/ignite
+
+/datum/species/golem/plasma/spec_life(mob/living/carbon/human/H)
+ if(H.bodytemperature > 750)
+ if(!boom_warning && H.on_fire)
+ to_chat(H, "You feel like you could blow up at any moment!")
+ boom_warning = TRUE
+ else
+ if(boom_warning)
+ to_chat(H, "You feel more stable.")
+ boom_warning = FALSE
+
+ if(H.bodytemperature > 850 && H.on_fire && prob(25))
+ explosion(get_turf(H),1,2,4,flame_range = 5)
+ if(H)
+ H.gib()
+ if(H.fire_stacks < 2) //flammable
+ H.adjust_fire_stacks(1)
+ ..()
+
+/datum/species/golem/plasma/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ ..()
+ if(ishuman(C))
+ ignite = new
+ ignite.Grant(C)
+
+/datum/species/golem/plasma/on_species_loss(mob/living/carbon/C)
+ if(ignite)
+ ignite.Remove(C)
+ ..()
+
+/datum/action/innate/ignite
+ name = "Ignite"
+ desc = "Set yourself aflame, bringing yourself closer to exploding!"
+ check_flags = AB_CHECK_CONSCIOUS
+ button_icon_state = "sacredflame"
+
+/datum/action/innate/ignite/Activate()
+ if(ishuman(owner))
+ var/mob/living/carbon/human/H = owner
+ if(H.fire_stacks)
+ to_chat(owner, "You ignite yourself!")
+ else
+ to_chat(owner, "You try ignite yourself, but fail!")
+ H.IgniteMob() //firestacks are already there passively
+
+//Harder to hurt
+/datum/species/golem/diamond
+ name = "Diamond Golem"
+ id = "diamond golem"
+ fixed_mut_color = "0ff"
+ armor = 70 //up from 55
+ meat = /obj/item/weapon/ore/diamond
+ info_text = "As a Diamond Golem, you are more resistant than the average golem."
+ prefix = "Diamond"
+ special_names = list("Back")
+
+//Faster but softer and less armoured
+/datum/species/golem/gold
+ name = "Gold Golem"
+ id = "gold golem"
+ fixed_mut_color = "cc0"
+ speedmod = 1
+ armor = 25 //down from 55
+ meat = /obj/item/weapon/ore/gold
+ info_text = "As a Gold Golem, you are faster but less resistant than the average golem."
+ prefix = "Golden"
+
+//Heavier, thus higher chance of stunning when punching
+/datum/species/golem/silver
+ name = "Silver Golem"
+ id = "silver golem"
+ fixed_mut_color = "ddd"
+ punchstunthreshold = 9 //60% chance, from 40%
+ meat = /obj/item/weapon/ore/silver
+ info_text = "As a Silver Golem, your attacks are heavier and have a higher chance of stunning."
+ prefix = "Silver"
+ special_names = list("Surfer", "Chariot", "Lining")
+
+//Harder to stun, deals more damage, but it's even slower
+/datum/species/golem/plasteel
+ name = "Plasteel Golem"
+ id = "plasteel golem"
+ fixed_mut_color = "bbb"
+ stunmod = 0.40
+ punchdamagelow = 12
+ punchdamagehigh = 21
+ punchstunthreshold = 18 //still 40% stun chance
+ speedmod = 4 //pretty fucking slow
+ meat = /obj/item/weapon/ore/iron
+ info_text = "As a Plasteel Golem, you are slower, but harder to stun, and hit very hard when punching."
+ attack_verb = "smash"
+ attack_sound = 'sound/effects/meteorimpact.ogg' //hits pretty hard
+ prefix = "Plasteel"
+
+//Immune to ash storms
+/datum/species/golem/titanium
+ name = "Titanium Golem"
+ id = "titanium golem"
+ fixed_mut_color = "fff"
+ meat = /obj/item/weapon/ore/titanium
+ info_text = "As a Titanium Golem, you are immune to ash storms, and slightly more resistant to burn damage."
+ burnmod = 0.9
+ prefix = "Titanium"
+
+/datum/species/golem/titanium/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ . = ..()
+ C.weather_immunities |= "ash"
+
+/datum/species/golem/titanium/on_species_loss(mob/living/carbon/C)
+ . = ..()
+ C.weather_immunities -= "ash"
+
+//Immune to ash storms and lava
+/datum/species/golem/plastitanium
+ name = "Plastitanium Golem"
+ id = "plastitanium golem"
+ fixed_mut_color = "888"
+ meat = /obj/item/weapon/ore/titanium
+ info_text = "As a Plastitanium Golem, you are immune to both ash storms and lava, and slightly more resistant to burn damage."
+ burnmod = 0.8
+ prefix = "Plastitanium"
+
+/datum/species/golem/plastitanium/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ . = ..()
+ C.weather_immunities |= "lava"
+ C.weather_immunities |= "ash"
+
+/datum/species/golem/plastitanium/on_species_loss(mob/living/carbon/C)
+ . = ..()
+ C.weather_immunities -= "ash"
+ C.weather_immunities -= "lava"
+
+//Fast and regenerates... but can only speak like an abductor
+/datum/species/golem/alloy
+ name = "Alien Alloy Golem"
+ id = "alloy golem"
+ fixed_mut_color = "333"
+ meat = /obj/item/stack/sheet/mineral/abductor
+ mutant_organs = list(/obj/item/organ/tongue/abductor) //abductor tongue
+ speedmod = 1 //faster
+ info_text = "As an Alloy Golem, you are made of advanced alien materials: you are faster and regenerate over time. You are, however, only able to be heard by other alloy golems."
+ prefix = "Alien"
+ special_names = list("Outsider", "Technology", "Watcher", "Stranger") //ominous and unknown
+
+//Regenerates because self-repairing super-advanced alien tech
+/datum/species/golem/alloy/spec_life(mob/living/carbon/human/H)
+ if(H.stat == DEAD)
+ return
+ H.heal_overall_damage(2,2)
+ H.adjustToxLoss(-2)
+ H.adjustOxyLoss(-2)
+
+//Since this will usually be created from a collaboration between podpeople and free golems, wood golems are a mix between the two races
+/datum/species/golem/wood
+ name = "Wood Golem"
+ id = "wood golem"
+ fixed_mut_color = "49311c"
+ meat = /obj/item/stack/sheet/mineral/wood
+ //Can burn and take damage from heat
+ species_traits = list(NOBREATH,RESISTCOLD,RESISTPRESSURE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,MUTCOLORS,NO_UNDERWEAR)
+ armor = 30
+ burnmod = 1.25
+ heatmod = 1.5
+ info_text = "As a Wooden Golem, you have plant-like traits: you take damage from extreme temperatures, can be set on fire, and have lower armor than a normal golem. You regenerate when in the light and wither in the darkness."
+ prefix = "Wooden"
+
+/datum/species/golem/wood/random_name(gender,unique,lastname)
+ var/plant_name = pick("Tomato", "Potato", "Broccoli", "Carrot", "Ambrosia", "Pumpkin", "Ivy", "Kudzu", "Banana", "Moss", "Flower", "Bloom", "Root", "Bark", "Glowshroom", "Petal", "Leaf", \
+ "Venus", "Sprout","Cocoa", "Strawberry", "Citrus", "Oak", "Cactus", "Pepper", "Juniper")
+ var/golem_name = "[prefix] [plant_name]"
+ return golem_name
+
+/datum/species/golem/wood/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ . = ..()
+ C.faction |= "plants"
+ C.faction |= "vines"
+
+/datum/species/golem/wood/on_species_loss(mob/living/carbon/C)
+ . = ..()
+ C.faction -= "plants"
+ C.faction -= "vines"
+
+/datum/species/golem/wood/spec_life(mob/living/carbon/human/H)
+ if(H.stat == DEAD)
+ return
+ var/light_amount = 0 //how much light there is in the place, affects receiving nutrition and healing
+ if(isturf(H.loc)) //else, there's considered to be no light
+ var/turf/T = H.loc
+ light_amount = min(1,T.get_lumcount()) - 0.5
+ H.nutrition += light_amount * 10
+ if(H.nutrition > NUTRITION_LEVEL_FULL)
+ H.nutrition = NUTRITION_LEVEL_FULL
+ if(light_amount > 0.2) //if there's enough light, heal
+ H.heal_overall_damage(1,1)
+ H.adjustToxLoss(-1)
+ H.adjustOxyLoss(-1)
+
+ if(H.nutrition < NUTRITION_LEVEL_STARVING + 50)
+ H.take_overall_damage(2,0)
+
+/datum/species/golem/wood/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H)
+ if(chem.id == "plantbgone")
+ H.adjustToxLoss(3)
+ H.reagents.remove_reagent(chem.id, REAGENTS_METABOLISM)
+ return 1
+
+//Radioactive
+/datum/species/golem/uranium
+ name = "Uranium Golem"
+ id = "uranium golem"
+ fixed_mut_color = "7f0"
+ meat = /obj/item/weapon/ore/uranium
+ info_text = "As an Uranium Golem, you emit radiation pulses every once in a while. It won't harm fellow golems, but organic lifeforms will be affected."
+
+ var/last_event = 0
+ var/active = null
+ prefix = "Uranium"
+
+/datum/species/golem/uranium/spec_life(mob/living/carbon/human/H)
+ if(!active)
+ if(world.time > last_event+30)
+ active = 1
+ radiation_pulse(get_turf(H), 3, 3, 5, 0)
+ last_event = world.time
+ active = null
+ ..()
+
+//Immune to physical bullets and resistant to brute, but very vulnerable to burn damage. Dusts on death.
+/datum/species/golem/sand
+ name = "Sand Golem"
+ id = "sand golem"
+ fixed_mut_color = "ffdc8f"
+ meat = /obj/item/weapon/ore/glass //this is sand
+ armor = 0
+ burnmod = 3 //melts easily
+ brutemod = 0.25
+ info_text = "As a Sand Golem, you are immune to physical bullets and take very little brute damage, but are extremely vulnerable to burn damage. You will also turn to sand when dying, preventing any form of recovery."
+ attack_sound = 'sound/effects/shovel_dig.ogg'
+ prefix = "Sand"
+
+/datum/species/golem/sand/spec_death(gibbed, mob/living/carbon/human/H)
+ H.visible_message("[H] turns into a pile of sand!")
+ for(var/obj/item/W in H)
+ H.dropItemToGround(W)
+ for(var/i=1, i <= rand(3,5), i++)
+ new /obj/item/weapon/ore/glass(get_turf(H))
+ qdel(H)
+
+/datum/species/golem/sand/bullet_act(obj/item/projectile/P, mob/living/carbon/human/H)
+ if(!(P.original == H && P.firer == H))
+ if(P.flag == "bullet" || P.flag == "bomb")
+ playsound(H, 'sound/effects/shovel_dig.ogg', 70, 1)
+ H.visible_message("The [P.name] sinks harmlessly in [H]'s sandy body!", \
+ "The [P.name] sinks harmlessly in [H]'s sandy body!")
+ return 2
+ return 0
+
+//Reflects lasers and resistant to burn damage, but very vulnerable to brute damage. Shatters on death.
+/datum/species/golem/glass
+ name = "Glass Golem"
+ id = "glass golem"
+ fixed_mut_color = "5a96b4aa" //transparent body
+ meat = /obj/item/weapon/shard
+ armor = 0
+ brutemod = 3 //very fragile
+ burnmod = 0.25
+ info_text = "As a Glass Golem, you reflect lasers and energy weapons, and are very resistant to burn damage, but you are extremely vulnerable to brute damage. On death, you'll shatter beyond any hope of recovery."
+ attack_sound = 'sound/effects/Glassbr2.ogg'
+ prefix = "Glass"
+
+/datum/species/golem/glass/spec_death(gibbed, mob/living/carbon/human/H)
+ playsound(H, "shatter", 70, 1)
+ H.visible_message("[H] shatters!")
+ for(var/obj/item/W in H)
+ H.dropItemToGround(W)
+ for(var/i=1, i <= rand(3,5), i++)
+ new /obj/item/weapon/shard(get_turf(H))
+ qdel(H)
+
+/datum/species/golem/glass/bullet_act(obj/item/projectile/P, mob/living/carbon/human/H)
+ if(!(P.original == H && P.firer == H)) //self-shots don't reflect
+ if(P.flag == "laser" || P.flag == "energy")
+ H.visible_message("The [P.name] gets reflected by [H]'s glass skin!", \
+ "The [P.name] gets reflected by [H]'s glass skin!")
+ if(P.starting)
+ var/new_x = P.starting.x + pick(0, 0, 0, 0, 0, -1, 1, -2, 2)
+ var/new_y = P.starting.y + pick(0, 0, 0, 0, 0, -1, 1, -2, 2)
+ var/turf/curloc = get_turf(H)
+
+ // redirect the projectile
+ P.original = locate(new_x, new_y, P.z)
+ P.starting = curloc
+ P.current = curloc
+ P.firer = H
+ P.yo = new_y - curloc.y
+ P.xo = new_x - curloc.x
+ P.Angle = null
+ return -1
+ return 0
+
+//Teleports when hit or when it wants to
+/datum/species/golem/bluespace
+ name = "Bluespace Golem"
+ id = "bluespace golem"
+ fixed_mut_color = "33f"
+ meat = /obj/item/weapon/ore/bluespace_crystal
+ info_text = "As a Bluespace Golem, are spatially unstable: you will teleport when hit, and you can teleport manually at a long distance."
+ attack_verb = "bluespace punch"
+ attack_sound = 'sound/effects/phasein.ogg'
+ prefix = "Bluespace"
+ special_names = list("Crystal", "Polycrystal")
+
+ var/datum/action/innate/unstable_teleport/unstable_teleport
+ var/teleport_cooldown = 100
+ var/last_teleport = 0
+
+/datum/species/golem/bluespace/proc/reactive_teleport(mob/living/carbon/human/H)
+ H.visible_message("[H] teleports!", "You destabilize and teleport!")
+ new /obj/effect/particle_effect/sparks(get_turf(H))
+ playsound(get_turf(H), "sparks", 50, 1)
+ do_teleport(H, get_turf(H), 6, asoundin = 'sound/weapons/emitter2.ogg')
+ last_teleport = world.time
+
+/datum/species/golem/bluespace/spec_hitby(atom/movable/AM, mob/living/carbon/human/H)
+ ..()
+ var/obj/item/I
+ if(istype(AM, /obj/item))
+ I = AM
+ if(I.thrownby == H) //No throwing stuff at yourself to trigger the teleport
+ return 0
+ else
+ reactive_teleport(H)
+
+/datum/species/golem/bluespace/spec_attack_hand(mob/living/carbon/human/M, mob/living/carbon/human/H, datum/martial_art/attacker_style = M.martial_art)
+ ..()
+ if(world.time > last_teleport + teleport_cooldown && M != H && M.a_intent != INTENT_HELP)
+ reactive_teleport(H)
+
+/datum/species/golem/bluespace/spec_attacked_by(obj/item/I, mob/living/user, obj/item/bodypart/affecting, intent, mob/living/carbon/human/H)
+ ..()
+ if(world.time > last_teleport + teleport_cooldown && user != H)
+ reactive_teleport(H)
+
+/datum/species/golem/bluespace/on_hit(obj/item/projectile/P, mob/living/carbon/human/H)
+ ..()
+ if(world.time > last_teleport + teleport_cooldown)
+ reactive_teleport(H)
+
+/datum/species/golem/bluespace/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ ..()
+ if(ishuman(C))
+ unstable_teleport = new
+ unstable_teleport.Grant(C)
+
+/datum/species/golem/bluespace/on_species_loss(mob/living/carbon/C)
+ if(unstable_teleport)
+ unstable_teleport.Remove(C)
+ ..()
+
+/datum/action/innate/unstable_teleport
+ name = "Unstable Teleport"
+ check_flags = AB_CHECK_CONSCIOUS
+ button_icon_state = "jaunt"
+ var/cooldown = 150
+ var/last_teleport = 0
+
+/datum/action/innate/unstable_teleport/IsAvailable()
+ if(..())
+ if(world.time > last_teleport + cooldown)
+ return 1
+ return 0
+
+/datum/action/innate/unstable_teleport/Activate()
+ var/mob/living/carbon/human/H = owner
+ H.visible_message("[H] starts vibrating!", "You start charging your bluespace core...")
+ playsound(get_turf(H), 'sound/weapons/flash.ogg', 25, 1)
+ addtimer(CALLBACK(src, .proc/teleport, H), 15)
+
+/datum/action/innate/unstable_teleport/proc/teleport(mob/living/carbon/human/H)
+ H.visible_message("[H] disappears in a shower of sparks!", "You teleport!")
+ var/datum/effect_system/spark_spread/spark_system = new /datum/effect_system/spark_spread
+ spark_system.set_up(10, 0, src)
+ spark_system.attach(H)
+ spark_system.start()
+ do_teleport(H, get_turf(H), 12, asoundin = 'sound/weapons/emitter2.ogg')
+ last_teleport = world.time
+ UpdateButtonIcon() //action icon looks unavailable
+ sleep(cooldown + 5)
+ UpdateButtonIcon() //action icon looks available again
+
+
+//honk
+/datum/species/golem/bananium
+ name = "Bananium Golem"
+ id = "bananium golem"
+ fixed_mut_color = "ff0"
+ say_mod = "honks"
+ punchdamagelow = 0
+ punchdamagehigh = 1
+ punchstunthreshold = 2 //Harmless and can't stun
+ meat = /obj/item/weapon/ore/bananium
+ info_text = "As a Bananium Golem, you are made for pranking. Your body emits natural honks, and you cannot hurt people when punching them. Your skin also emits bananas when damaged."
+ attack_verb = "honk"
+ attack_sound = 'sound/items/AirHorn2.ogg'
+ prefix = "Bananium"
+
+ var/last_honk = 0
+ var/honkooldown = 0
+ var/last_banana = 0
+ var/banana_cooldown = 100
+ var/active = null
+
+/datum/species/golem/bananium/random_name(gender,unique,lastname)
+ var/clown_name = pick(GLOB.clown_names)
+ var/golem_name = "[uppertext(clown_name)]"
+ return golem_name
+
+/datum/species/golem/bananium/spec_attack_hand(mob/living/carbon/human/M, mob/living/carbon/human/H, datum/martial_art/attacker_style = M.martial_art)
+ ..()
+ if(world.time > last_banana + banana_cooldown && M != H && M.a_intent != INTENT_HELP)
+ new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
+ last_banana = world.time
+
+/datum/species/golem/bananium/spec_attacked_by(obj/item/I, mob/living/user, obj/item/bodypart/affecting, intent, mob/living/carbon/human/H)
+ ..()
+ if(world.time > last_banana + banana_cooldown && user != H)
+ new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
+ last_banana = world.time
+
+/datum/species/golem/bananium/on_hit(obj/item/projectile/P, mob/living/carbon/human/H)
+ ..()
+ if(world.time > last_banana + banana_cooldown)
+ new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
+ last_banana = world.time
+
+/datum/species/golem/bananium/spec_hitby(atom/movable/AM, mob/living/carbon/human/H)
+ ..()
+ var/obj/item/I
+ if(istype(AM, /obj/item))
+ I = AM
+ if(I.thrownby == H) //No throwing stuff at yourself to make bananas
+ return 0
+ else
+ new/obj/item/weapon/grown/bananapeel/specialpeel(get_turf(H))
+ last_banana = world.time
+
+/datum/species/golem/bananium/spec_life(mob/living/carbon/human/H)
+ if(!active)
+ if(world.time > last_honk + honkooldown)
+ active = 1
+ playsound(get_turf(H), 'sound/items/bikehorn.ogg', 50, 1)
+ last_honk = world.time
+ honkooldown = rand(20, 80)
+ active = null
+ ..()
+
+/datum/species/golem/bananium/spec_death(gibbed, mob/living/carbon/human/H)
+ playsound(get_turf(H), 'sound/misc/sadtrombone.ogg', 70, 0)
+
+/datum/species/golem/bananium/get_spans()
+ return list(SPAN_CLOWN)
+
+
+/datum/species/golem/runic
+ name = "Runic Golem"
+ id = "runic golem"
+ limbs_id = "cultgolem"
+ sexes = FALSE
+ info_text = "As a Runic Golem, you possess eldritch powers granted by the Elder God Nar'Sie."
+ species_traits = list(NOBREATH,RESISTHOT,RESISTCOLD,RESISTPRESSURE,NOFIRE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,NO_UNDERWEAR) //no mutcolors
+ prefix = "Runic"
+
+ var/obj/effect/proc_holder/spell/targeted/ethereal_jaunt/shift/golem/phase_shift
+ var/obj/effect/proc_holder/spell/targeted/abyssal_gaze/abyssal_gaze
+ var/obj/effect/proc_holder/spell/targeted/dominate/dominate
+
+/datum/species/golem/runic/random_name(gender,unique,lastname)
+ var/edgy_first_name = pick("Razor","Blood","Dark","Evil","Cold","Pale","Black","Silent","Chaos","Deadly")
+ var/edgy_last_name = pick("Edge","Night","Death","Razor","Blade","Steel","Calamity","Twilight","Shadow","Nightmare") //dammit Razor Razor
+ var/golem_name = "[edgy_first_name] [edgy_last_name]"
+ return golem_name
+
+/datum/species/golem/runic/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ . = ..()
+ C.faction |= "cult"
+ phase_shift = new
+ C.AddSpell(phase_shift)
+ abyssal_gaze = new
+ C.AddSpell(abyssal_gaze)
+ dominate = new
+ C.AddSpell(dominate)
+
+/datum/species/golem/runic/on_species_loss(mob/living/carbon/C)
+ . = ..()
+ C.faction -= "cult"
+ if(phase_shift)
+ C.RemoveSpell(phase_shift)
+ if(abyssal_gaze)
+ C.RemoveSpell(abyssal_gaze)
+ if(dominate)
+ C.RemoveSpell(dominate)
+
+/datum/species/golem/runic/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H)
+ if(chem.id == "holywater")
+ H.adjustFireLoss(4)
+ H.reagents.remove_reagent(chem.id, REAGENTS_METABOLISM)
+
+ if(chem.id == "unholywater")
+ H.adjustBruteLoss(-4)
+ H.adjustFireLoss(-4)
+ H.reagents.remove_reagent(chem.id, REAGENTS_METABOLISM)
+
+/datum/species/golem/cloth
+ name = "Cloth Golem"
+ id = "cloth golem"
+ limbs_id = "clothgolem"
+ sexes = FALSE
+ info_text = "As a Cloth Golem, you are able to reform yourself after death, provided your remains aren't burned or destroyed. You are, of course, very flammable."
+ species_traits = list(NOBREATH,RESISTCOLD,RESISTPRESSURE,NOGUNS,NOBLOOD,RADIMMUNE,VIRUSIMMUNE,PIERCEIMMUNE,NODISMEMBER,NO_UNDERWEAR) //no mutcolors, and can burn
+ armor = 15 //feels no pain, but not too resistant
+ burnmod = 2 // don't get burned
+ speedmod = 1 // not as heavy as stone
+ punchdamagelow = 4
+ punchstunthreshold = 7
+ punchdamagehigh = 8 // not as heavy as stone
+ prefix = "Cloth"
+
+/datum/species/golem/cloth/random_name(gender,unique,lastname)
+ var/pharaoh_name = pick("Neferkare", "Hudjefa", "Khufu", "Mentuhotep", "Ahmose", "Amenhotep", "Thutmose", "Hatshepsut", "Tutankhamun", "Ramses", "Seti", \
+ "Merenptah", "Djer", "Semerkhet", "Nynetjer", "Khafre", "Pepi", "Intef", "Ay") //yes, Ay was an actual pharaoh
+ var/golem_name = "[pharaoh_name] \Roman[rand(1,99)]"
+ return golem_name
+
+/datum/species/golem/cloth/spec_life(mob/living/carbon/human/H)
+ if(H.fire_stacks < 1)
+ H.adjust_fire_stacks(1) //always prone to burning
+ ..()
+
+/datum/species/golem/cloth/spec_death(gibbed, mob/living/carbon/human/H)
+ if(gibbed)
+ return
+ if(H.on_fire)
+ H.visible_message("[H] burns into ash!")
+ H.dust(just_ash = TRUE)
+ return
+
+ H.visible_message("[H] falls apart into a pile of bandages!")
+ new /obj/structure/cloth_pile(get_turf(H), H)
+ ..()
+
+/obj/structure/cloth_pile
+ name = "pile of bandages"
+ desc = "It emits a strange aura, as if there was still life within it..."
+ obj_integrity = 50
+ max_integrity = 50
+ armor = list(melee = 90, bullet = 90, laser = 25, energy = 80, bomb = 50, bio = 100, fire = -50, acid = -50)
+ icon = 'icons/obj/items.dmi'
+ icon_state = "pile_bandages"
+ resistance_flags = FLAMMABLE
+
+ var/revive_time = 900
+ var/mob/living/carbon/human/cloth_golem
+
+/obj/structure/cloth_pile/Initialize(mapload, mob/living/carbon/human/H)
+ if(!QDELETED(H) && is_species(H, /datum/species/golem/cloth))
+ H.unequip_everything()
+ H.forceMove(src)
+ cloth_golem = H
+ to_chat(cloth_golem, "You start gathering your life energy, preparing to rise again...")
+ addtimer(CALLBACK(src, .proc/revive), revive_time)
+ else
+ qdel(src)
+
+/obj/structure/cloth_pile/Destroy()
+ if(cloth_golem)
+ QDEL_NULL(cloth_golem)
+ return ..()
+
+/obj/structure/cloth_pile/burn()
+ visible_message("[src] burns into ash!")
+ new /obj/effect/decal/cleanable/ash(get_turf(src))
+ ..()
+
+/obj/structure/cloth_pile/proc/revive()
+ if(QDELETED(src) || QDELETED(cloth_golem)) //QDELETED also checks for null, so if no cloth golem is set this won't runtime
+ return
+ if(cloth_golem.suiciding || cloth_golem.disabilities & NOCLONE)
+ QDEL_NULL(cloth_golem)
+ return
+
+ invisibility = INVISIBILITY_MAXIMUM //disappear before the animation
+ new /obj/effect/overlay/temp/mummy_animation(get_turf(src))
+ if(cloth_golem.revive(full_heal = TRUE, admin_revive = TRUE))
+ cloth_golem.grab_ghost() //won't pull if it's a suicide
+ sleep(20)
+ cloth_golem.forceMove(get_turf(src))
+ cloth_golem.visible_message("[src] rises and reforms into [cloth_golem]!","You reform into yourself!")
+ cloth_golem = null
+ qdel(src)
+
+/obj/structure/cloth_pile/attackby(obj/item/weapon/P, mob/living/carbon/human/user, params)
+ . = ..()
+
+ if(resistance_flags & ON_FIRE)
+ return
+
+ if(P.is_hot())
+ visible_message("[src] bursts into flames!")
+ fire_act()
+
+/datum/species/golem/plastic
+ name = "Plastic"
+ id = "plastic golem"
+ prefix = "Plastic"
+ fixed_mut_color = "fff"
+ info_text = "As a Plastic Golem, you are capable of ventcrawling, and passing through plastic flaps."
+
+/datum/species/golem/plastic/on_species_gain(mob/living/carbon/C, datum/species/old_species)
+ . = ..()
+ C.ventcrawler = VENTCRAWLER_NUDE
+
+/datum/species/golem/plastic/on_species_loss(mob/living/carbon/C)
+ . = ..()
C.ventcrawler = initial(C.ventcrawler)
\ No newline at end of file