diff --git a/.github/labeler.yml b/.github/labeler.yml index b088f229434..d4029285b52 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,12 +1,47 @@ -"Changes: Sprites": -- '**/*.rsi/*.png' +#"Map": +# - "Resources/Maps/**/*.yml" # All .yml files in the Resources/Maps directory, recursive. -"Changes: Map": -- 'Resources/Maps/*.yml' -- 'Resources/Prototypes/Maps/*.yml' +"Map-Admin": + - "Resources/Maps/_NF/Admin/*.yml" # Grid Files -"Changes: UI": -- '**/*.xaml*' +"Map-Bluespace": + - "Resources/Maps/_NF/Bluespace/*.yml" # Grid Files + +"Map-Dungeon": + - "Resources/Maps/_NF/Dungeon/*.yml" # Grid Files + +"Map-Outpost": + - "Resources/Maps/_NF/Outpost/*.yml" # Map Files + - "Resources/Prototypes/_MF/Maps/Outpost/*.yml" # Prototypes Files + +"Map-Shuttle": + - "Resources/Maps/_NF/Shuttles/*.yml" # Grid Files + - "Resources/Prototypes/_NF/Shipyard/*.yml" # Prototypes Files + +"Map-POI": + - "Resources/Maps/_NF/POI/*.yml" # Grid Files + - "Resources/Prototypes/_MF/Maps/POI/*.yml" # Prototypes Files + +"Sprites": + - "**/*.rsi/*.png" + - "**/*.rsi/*.json" + +"UI": + - "**/*.xaml*" + +"C#": + - "**/*.cs" "No C#": -- all: ["!**/*.cs"] + - all: ["!**/*.cs"] + +"Docs": + - "**/*.xml" + - "**/*.md" + +"FTL": + - "Resources/Locale/**/*.ftl" + +"YML": + - any: ["**/*.yml"] + all: ["!Resources/Maps/_NF/**/*.yml", "!Resources/Prototypes/Maps/_NF/**/*.yml"] diff --git a/.github/mapchecker/.gitignore b/.github/mapchecker/.gitignore new file mode 100644 index 00000000000..5ceb3864c29 --- /dev/null +++ b/.github/mapchecker/.gitignore @@ -0,0 +1 @@ +venv diff --git a/.github/mapchecker/README.md b/.github/mapchecker/README.md new file mode 100644 index 00000000000..f31a97246aa --- /dev/null +++ b/.github/mapchecker/README.md @@ -0,0 +1,73 @@ +# MapChecker + +This directory contains tooling contributed by TsjipTsjip, initially to automate the process of checking if map +contributions in PR's are valid. That is to say, it collects a list of prototypes in the `Resources/Prototypes` +directory which are marked as `DO NOT MAP`, `DEBUG`, ... and verifies that map changes indeed do not use them. + +## Usage + +Glad I do not have to write this myself! Get detailed help information by running: +`python3 .github/mapchecker/mapchecker.py --help` + +The following help block is printed: +``` +usage: mapchecker.py [-h] [-v] [-p PROTOTYPES_PATH [PROTOTYPES_PATH ...]] [-m MAP_PATH [MAP_PATH ...]] [-w WHITELIST] + +Map prototype usage checker for Frontier Station 14. + +options: + -h, --help show this help message and exit + -v, --verbose Sets log level to DEBUG if present, spitting out a lot more information. False by default,. + -p PROTOTYPES_PATH [PROTOTYPES_PATH ...], --prototypes_path PROTOTYPES_PATH [PROTOTYPES_PATH ...] + Directory holding entity prototypes. Default: All entity prototypes in the Frontier Station 14 codebase. + -m MAP_PATH [MAP_PATH ...], --map_path MAP_PATH [MAP_PATH ...] + Map PROTOTYPES or directory of map prototypes to check. Can mix and match.Default: All maps in the Frontier Station 14 codebase. + -w WHITELIST, --whitelist WHITELIST + YML file that lists map names and prototypes to allow for them. +``` + +You should generally not need to configure `-p`, `-m` or `-w`, as they are autofilled with sensible defaults. You can do +this: +- Set `-p` to only check against prototypes in a specific directory. +- Set `-m` to just check a specific map. (Make sure to **point it at the prototype**, not the map file itself!) +- Set `-v` with `-m` set as per above to get detailed information about a possible rejection for just that map. + +## Configuration + +Matchers are set in `config.py`. Currently it has a global list of matchers that are not allowed anywhere, and a set +of conditional matchers. + +For each map, a set of applicable matchers is constructed according to this workflow: +1. Add all global illegal matchers. +2. Add all conditional matchers for non-matching shipyard groups +3. Remove all conditional matchers from the matching shipyard group (if it exists), to support duplicates across + shipyard groups + +A match will attempt to match the following during prototype collection: +- Prototype ID (contains matcher, case insensitive) +- Prototype name (contains matcher, case insensitive) +- Prototype suffixes (separated per `, `) (exact, case insensitive) + +## Whitelisting + +If a map has a prototype and you believe it should be whitelisted, add a key for your map name (the `id` field of the +gameMap prototype), and add the prototype ID's to its list. + +The whitelist the checker uses by default is `.github/mapchecker/whitelist.yml`. + +## Shuttle group override + +It is possible that a shuttle is set to group `None` because it is only used in custom shipyard listings. In this case, +you can force the MapChecker script to treat it as a different shipyard group by adding the following to the vessel +prototype: + +```yml + ... + group: None + # Add this line below. + mapchecker_group_override: ShipyardGroupHere + ... +``` + +Note that for now this will cause a warning to be generated, but it will not cause a failure if the shuttle matches the +criteria for the overridden group. diff --git a/.github/mapchecker/config.py b/.github/mapchecker/config.py new file mode 100644 index 00000000000..a864dfe548d --- /dev/null +++ b/.github/mapchecker/config.py @@ -0,0 +1,15 @@ +# List of matchers that are always illegal to use. These always supercede CONDITIONALLY_ILLEGAL_MATCHES. +ILLEGAL_MATCHES = [ + "DO NOT MAP", + "DEBUG", +] +# List of matchers that are illegal to use, unless the map is a ship and the ship belongs to the keyed shipyard. +CONDITIONALLY_ILLEGAL_MATCHES = { + "Security": [ # These matchers are illegal unless the ship is part of the security shipyard. + "Security", # Anything with the word security in it should also only be appearing on security ships. + "Plastitanium", # Plastitanium walls should only be appearing on security ships. + ], + "BlackMarket": [ + "Plastitanium", # And also on blackmarket ships cause syndicate. + ] +} diff --git a/.github/mapchecker/mapchecker.py b/.github/mapchecker/mapchecker.py new file mode 100755 index 00000000000..e57606487ec --- /dev/null +++ b/.github/mapchecker/mapchecker.py @@ -0,0 +1,271 @@ +#! /bin/python3 + +import argparse +import os +import yaml +from typing import List, Dict + +from util import get_logger, YamlLoaderIgnoringTags, check_prototype +from config import CONDITIONALLY_ILLEGAL_MATCHES + +if __name__ == "__main__": + # Set up argument parser. + parser = argparse.ArgumentParser(description="Map prototype usage checker for Frontier Station 14.") + parser.add_argument( + "-v", "--verbose", + action='store_true', + help="Sets log level to DEBUG if present, spitting out a lot more information. False by default,." + ) + parser.add_argument( + "-p", "--prototypes_path", + help="Directory holding entity prototypes.\nDefault: All entity prototypes in the Frontier Station 14 codebase.", + type=str, + nargs="+", # We accept multiple directories, but need at least one. + required=False, + default=[ + "Resources/Prototypes/Entities", # Upstream + "Resources/Prototypes/_NF/Entities", # NF + "Resources/Prototypes/_Nyano/Entities", # Nyanotrasen + "Resources/Prototypes/Nyanotrasen/Entities", # Nyanotrasen, again + "Resources/Prototypes/DeltaV/Entities", # DeltaV + ] + ) + parser.add_argument( + "-m", "--map_path", + help=(f"Map PROTOTYPES or directory of map prototypes to check. Can mix and match." + f"Default: All maps in the Frontier Station 14 codebase."), + type=str, + nargs="+", # We accept multiple pathspecs, but need at least one. + required=False, + default=[ + "Resources/Prototypes/_NF/Maps/Outpost", # Frontier Outpost + "Resources/Prototypes/_NF/Maps/POI", # Points of interest + "Resources/Prototypes/_NF/Shipyard", # Shipyard ships. + ] + ) + parser.add_argument( + "-w", "--whitelist", + help="YML file that lists map names and prototypes to allow for them.", + type=str, # Using argparse.FileType here upsets os.isfile, we work around this. + nargs=1, + required=False, + default=".github/mapchecker/whitelist.yml" + ) + + # ================================================================================================================== + # PHASE 0: Parse arguments and transform them into lists of files to work on. + args = parser.parse_args() + + # Set up logging session. + logger = get_logger(args.verbose) + logger.info("MapChecker starting up.") + logger.debug("Verbosity enabled.") + + # Set up argument collectors. + proto_paths: List[str] = [] + map_proto_paths: List[str] = [] + whitelisted_protos: Dict[str, List[str]] = dict() + whitelisted_maps: List[str] = [] + + # Validate provided arguments and collect file locations. + for proto_path in args.prototypes_path: # All prototype paths must be directories. + if os.path.isdir(proto_path) is False: + logger.warning(f"Prototype path '{proto_path}' is not a directory. Continuing without it.") + continue + # Collect all .yml files in this directory. + for root, dirs, files in os.walk(proto_path): + for file in files: + if file.endswith(".yml"): + proto_paths.append(str(os.path.join(root, file))) + for map_path in args.map_path: # All map paths must be files or directories. + if os.path.isfile(map_path): + # If it's a file, we just add it to the list. + map_proto_paths.append(map_path) + elif os.path.isdir(map_path): + # If it's a directory, we add all .yml files in it to the list. + for root, dirs, files in os.walk(map_path): + for file in files: + if file.endswith(".yml"): + map_proto_paths.append(os.path.join(root, file)) + else: + logger.warning(f"Map path '{map_path}' is not a file or directory. Continuing without it.") + continue + + # Validate whitelist, it has to be a file containing valid yml. + if os.path.isfile(args.whitelist) is False: + logger.warning(f"Whitelist '{args.whitelist}' is not a file. Continuing without it.") + else: + with open(args.whitelist, "r") as whitelist: + file_data = yaml.load(whitelist, Loader=YamlLoaderIgnoringTags) + if file_data is None: + logger.warning(f"Whitelist '{args.whitelist}' is empty. Continuing without it.") + else: + for map_key in file_data: + if file_data[map_key] is True: + whitelisted_maps.append(map_key) + elif file_data[map_key] is False: + continue + else: + whitelisted_protos[map_key] = file_data[map_key] + + # ================================================================================================================== + # PHASE 1: Collect all prototypes in proto_paths that are suffixed with target suffixes. + + # Set up collectors. + illegal_prototypes: List[str] = list() + conditionally_illegal_prototypes: Dict[str, List[str]] = dict() + for key in CONDITIONALLY_ILLEGAL_MATCHES.keys(): # Ensure all keys have empty lists already, less work later. + conditionally_illegal_prototypes[key] = list() + + # Collect all prototypes and sort into the collectors. + for proto_file in proto_paths: + with open(proto_file, "r") as proto: + logger.debug(f"Reading prototype file '{proto_file}'.") + file_data = yaml.load(proto, Loader=YamlLoaderIgnoringTags) + if file_data is None: + continue + + for item in file_data: # File data has blocks of things we need. + if item["type"] != "entity": + continue + proto_id = item["id"] + proto_name = item["name"] if "name" in item.keys() else "" + proto_suffixes = str(item["suffix"]).split(", ") if "suffix" in item.keys() else list() + + check_result = check_prototype(proto_id, proto_name, proto_suffixes) + if check_result is False: + illegal_prototypes.append(proto_id) + elif check_result is not True: + for key in check_result: + conditionally_illegal_prototypes[key].append(proto_id) + + # Log information. + logger.info(f"Collected {len(illegal_prototypes)} illegal prototype matchers.") + for key in conditionally_illegal_prototypes.keys(): + logger.info(f"Collected {len(conditionally_illegal_prototypes[key])} illegal prototype matchers, whitelisted " + f"for shipyard group {key}.") + for item in conditionally_illegal_prototypes[key]: + logger.debug(f" - {item}") + + # ================================================================================================================== + # PHASE 2: Check all maps in map_proto_paths for illegal prototypes. + + # Set up collectors. + violations: Dict[str, List[str]] = dict() + + # Check all maps for illegal prototypes. + for map_proto in map_proto_paths: + with open(map_proto, "r") as map: + file_data = yaml.load(map, Loader=YamlLoaderIgnoringTags) + if file_data is None: + logger.warning(f"Map prototype '{map_proto}' is empty. Continuing without it.") + continue + + map_name = map_proto # The map name that will be reported over output. + map_file_location = None + shipyard_group = None # Shipyard group of this map, if it's a shuttle. + # Shipyard override of this map, in the case it's a custom shipyard shuttle but needs to be treated as a + # specific group. + shipyard_override = None + + for item in file_data: + if item["type"] == "gameMap": + # This yaml entry is the map descriptor. Collect its file location and map name. + if "id" in item.keys(): + map_name = item["id"] + map_file_location = item["mapPath"] if "mapPath" in item.keys() else None + if item["type"] == "vessel": + # This yaml entry is a vessel descriptor! + shipyard_group = item["group"] if "group" in item.keys() else None + shipyard_override = item["mapchecker_group_override"] if "mapchecker_group_override" in item.keys() else None + + if map_file_location is None: + # Silently skip. If the map doesn't have a mapPath, it won't appear in game anyways. + logger.debug(f"Map proto {map_proto} did not specify a map file location. Skipping.") + continue + + # CHECKPOINT - If the map_name is blanket-whitelisted, skip it, but log a warning. + if map_name in whitelisted_maps: + logger.warning(f"Map '{map_name}' (from prototype '{map_proto}') was blanket-whitelisted. Skipping it.") + continue + + if shipyard_override is not None: + # Log a warning, indicating the override and the normal group this shuttle belongs to, then set + # shipyard_group to the override. + logger.warning(f"Map '{map_name}' (from prototype '{map_proto}') is using mapchecker_group_override. " + f"This map will be treated as a '{shipyard_override}' shuttle. (Normally: " + f"'{shipyard_group}'))") + shipyard_group = shipyard_override + + logger.debug(f"Starting checks for '{map_name}' (Path: '{map_file_location}' | Shipyard: '{shipyard_group}')") + + # Now construct a temporary list of all prototype ID's that are illegal for this map based on conditionals. + conditional_checks = set() # Make a set of it. That way we get no duplicates. + for key in conditionally_illegal_prototypes.keys(): + if shipyard_group != key: + for item in conditionally_illegal_prototypes[key]: + conditional_checks.add(item) + # Remove the ones that do match, if they exist. + if shipyard_group is not None and shipyard_group in conditionally_illegal_prototypes.keys(): + for check in conditionally_illegal_prototypes[shipyard_group]: + if check in conditional_checks: + conditional_checks.remove(check) + + logger.debug(f"Conditional checks for {map_name} after removal of shipyard dups: {conditional_checks}") + + # Now we check the map file for these illegal prototypes. I'm being lazy here and just matching against the + # entire file contents, without loading YAML at all. This is fine, because this job only runs after + # Content.YamlLinter runs. TODO: It does not. + with open("Resources" + map_file_location, "r") as map_file: + map_file_contents = map_file.read() + for check in illegal_prototypes: + # Wrap in 'proto: ' and '\n' here, to ensure we only match actual prototypes, not 'part of word' + # prototypes. Example: SignSec is a prefix of SignSecureMed + if 'proto: ' + check + '\n' in map_file_contents: + if violations.get(map_name) is None: + violations[map_name] = list() + violations[map_name].append(check) + for check in conditional_checks: + if 'proto: ' + check + '\n' in map_file_contents: + if violations.get(map_name) is None: + violations[map_name] = list() + violations[map_name].append(check) + + # ================================================================================================================== + # PHASE 3: Filtering findings and reporting. + logger.debug(f"Violations aggregator before whitelist processing: {violations}") + + # Filter out all prototypes that are whitelisted. + for key in whitelisted_protos.keys(): + if violations.get(key) is None: + continue + + for whitelisted_proto in whitelisted_protos[key]: + if whitelisted_proto in violations[key]: + violations[key].remove(whitelisted_proto) + + logger.debug(f"Violations aggregator after whitelist processing: {violations}") + + # Some maps had all their violations whitelisted. Remove them from the count. + total_map_violations = len([viol for viol in violations.keys() if len(violations[viol]) > 0]) + + # Report findings to output, on the ERROR loglevel, so they stand out in Github actions output. + if total_map_violations > 0: + logger.error(f"Found {total_map_violations} maps with illegal prototypes.") + for key in violations.keys(): + if len(violations[key]) == 0: + # If the map has no violations at this point, it's because all of its violations were whitelisted. + # Don't include them in the report. + continue + + logger.error(f"Map '{key}' has {len(violations[key])} illegal prototypes.") + for violation in violations[key]: + logger.error(f" - {violation}") + else: + logger.info("No illegal prototypes found in any maps.") + + logger.info(f"MapChecker finished{' with errors' if total_map_violations > 0 else ''}.") + if total_map_violations > 0: + exit(1) + else: + exit(0) diff --git a/.github/mapchecker/requirements.txt b/.github/mapchecker/requirements.txt new file mode 100644 index 00000000000..be2b74db40f --- /dev/null +++ b/.github/mapchecker/requirements.txt @@ -0,0 +1 @@ +PyYAML==6.0.1 diff --git a/.github/mapchecker/util.py b/.github/mapchecker/util.py new file mode 100644 index 00000000000..bfa9036cddc --- /dev/null +++ b/.github/mapchecker/util.py @@ -0,0 +1,88 @@ +import logging + +from yaml import SafeLoader +from typing import List, Union +from logging import Logger, getLogger + +from config import ILLEGAL_MATCHES, CONDITIONALLY_ILLEGAL_MATCHES + + +def get_logger(debug: bool = False) -> Logger: + """ + Gets a logger for use by MapChecker. + + :return: A logger. + """ + logger = getLogger("MapChecker") + logger.setLevel("DEBUG" if debug else "INFO") + + sh = logging.StreamHandler() + formatter = logging.Formatter( + "[%(asctime)s %(levelname)7s] %(message)s", + datefmt='%Y-%m-%d %H:%M:%S' + ) + sh.setFormatter(formatter) + logger.addHandler(sh) + + return logger + + +# Snippet taken from https://stackoverflow.com/questions/33048540/pyyaml-safe-load-how-to-ignore-local-tags +class YamlLoaderIgnoringTags(SafeLoader): + def ignore_unknown(self, node): + return None + + +YamlLoaderIgnoringTags.add_constructor(None, YamlLoaderIgnoringTags.ignore_unknown) +# End of snippet + + +def check_prototype(proto_id: str, proto_name: str, proto_suffixes: List[str]) -> Union[bool, List[str]]: + """ + Checks prototype information against the ILLEGAL_MATCHES and CONDITIONALLY_ILLEGAL_MATCHES constants. + + :param proto_id: The prototype's ID. + :param proto_name: The prototype's name. + :param proto_suffixes: The prototype's suffixes. + :return: + - True if the prototype is legal + - False if the prototype is globally illegal (matched by ILLEGAL_MATCHES) + - A list of shipyard keys if the prototype is conditionally illegal (matched by CONDITIONALLY_ILLEGAL_MATCHES) + """ + + # Check against ILLEGAL_MATCHES. + for illegal_match in ILLEGAL_MATCHES: + if illegal_match.lower() in proto_name.lower(): + return False + + if illegal_match.lower() in proto_id.lower(): + return False + + for suffix in proto_suffixes: + if illegal_match.lower() == suffix.lower(): + return False + + # Check against CONDITIONALLY_ILLEGAL_MATCHES. + conditionally_illegal_keys = list() + for key in CONDITIONALLY_ILLEGAL_MATCHES.keys(): + + cond_illegal_matches = CONDITIONALLY_ILLEGAL_MATCHES[key] + for cond_illegal_match in cond_illegal_matches: + + if cond_illegal_match.lower() in proto_name.lower(): + conditionally_illegal_keys.append(key) + break + + if cond_illegal_match.lower() in proto_id.lower(): + conditionally_illegal_keys.append(key) + break + + for suffix in proto_suffixes: + if cond_illegal_match.lower() == suffix.lower(): + conditionally_illegal_keys.append(key) + break + + if len(conditionally_illegal_keys) > 0: + return conditionally_illegal_keys + + return True diff --git a/.github/mapchecker/whitelist.yml b/.github/mapchecker/whitelist.yml new file mode 100644 index 00000000000..a039d209cc1 --- /dev/null +++ b/.github/mapchecker/whitelist.yml @@ -0,0 +1,80 @@ +# POI's +Frontier: true + +anomalouslab: + - WallPlastitaniumIndestructible + - WallPlastitanium + - PlastitaniumWindow +Cove: + - WallPlastitanium + - HighSecDoor +Lodge: + - WallPlastitanium + - HighSecDoor + + +# TECHNICAL DEBT BELOW. These ones were added to this list to ensure other PR's would not break upon merging. It is +# the intention for this list to become empty in separate PR's. +Esquire: + - ToyFigurineSecurity + - AirlockSecurity + - SignSec +Bison: + - WallPlastitanium + - WallPlastitaniumDiagonal +Sprinter: + - WallPlastitanium + - IntercomSecurity + - IntercomCommand +Courser: + - HighSecDoor +Metastable: + - SignSec +DartX: + - HighSecDoor +gourd: + - HoloprojectorSecurity +Praeda: + - ClothingEyesGlassesSecurity + - EncryptionKeyCommand + - EncryptionKeyEngineering +Pheonix: + - DebugSubstation + - WallPlastitanium +Spectre: + - AirlockSecurity + - EncryptionKeyMedicalScience +Bazaar: + - AirlockSecurity +Anchor: + - AirlockSecurity + - IntercomCommand +DecadeDove: + - EncryptionKeyCargo + - EncryptionKeyEngineering +RosebudMKI: + - EncryptionKeyCargo + - EncryptionKeyEngineering + - EncryptionKeyScience + - EncryptionKeyService +Dragonfly: + - EncryptionKeyCargo + - EncryptionKeyEngineering +Opportunity: + - EncryptionKeySecurity +RosebudMKII: + - EncryptionKeyCargo + - EncryptionKeyEngineering + - EncryptionKeyScience + - EncryptionKeyService +Crescent: + - EncryptionKeyScience + - IntercomCommand +Pathfinder: + - IntercomCommand +Schooner: + - IntercomCommand +Marauder: + - IntercomCommand +Empress: + - IntercomAll diff --git a/.github/workflows/frontier-mapchecker.yml b/.github/workflows/frontier-mapchecker.yml new file mode 100644 index 00000000000..e25ba676533 --- /dev/null +++ b/.github/workflows/frontier-mapchecker.yml @@ -0,0 +1,39 @@ +name: Map Prototype Checker + +on: + pull_request: + branches: [ "master" ] + paths: + # Entity pathspecs - If any of these change (i.e. suffix changes etc), this check should run. + - "Resources/Prototypes/Entities/**/*.yml" + - "Resources/Prototypes/_NF/Entities/**/*.yml" + - "Resources/Prototypes/Nyanotrasen/Entities/**/*.yml" + - "Resources/Prototypes/_Nyano/Entities/**/*.yml" + - "Resources/Prototypes/DeltaV/Entities/**/*.yml" + # Map pathspecs - If any maps are changed, this should run. + - "Resources/Maps/**/*.yml" + # Also the mapchecker itself + - ".github/mapchecker/**" + + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r .github/mapchecker/requirements.txt + - name: Run mapchecker + run: | + python3 .github/mapchecker/mapchecker.py diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 00000000000..8700f52fc1c --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,24 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# +# To use this workflow, you will need to set up a .github/labeler.yml +# file with configuration. For more information, see: +# https://github.com/actions/labeler + +# This is entirely a github default file, except for this comment, but it should be fine. -Tsjip + +name: Labeler +on: [pull_request_target] + +jobs: + label: + + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/Content.Client/CryoSleep/CryosleepWakeupWindow.cs b/Content.Client/CryoSleep/CryosleepWakeupWindow.cs new file mode 100644 index 00000000000..35c9129bc6c --- /dev/null +++ b/Content.Client/CryoSleep/CryosleepWakeupWindow.cs @@ -0,0 +1,107 @@ +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.CustomControls; +using Robust.Shared.Configuration; +using static Content.Shared.CryoSleep.SharedCryoSleepSystem; + +namespace Content.Client.CryoSleep; + +public sealed class CryosleepWakeupWindow : DefaultWindow, IEntityEventSubscriber +{ + [Dependency] private readonly EntityManager _entityManager = default!; + + public RichTextLabel Label; + public Button DenyButton; + public Button AcceptButton; + + public CryosleepWakeupWindow() + { + IoCManager.InjectDependencies(this); + + Title = Loc.GetString("cryo-wakeup-window-title"); + + Contents.AddChild(new BoxContainer + { + Orientation = BoxContainer.LayoutOrientation.Vertical, + Children = + { + new BoxContainer + { + Orientation = BoxContainer.LayoutOrientation.Vertical, + Children = + { + (Label = new RichTextLabel() + { + HorizontalExpand = true, + MaxWidth = 300, + StyleClasses = { } + }), + new BoxContainer + { + Orientation = BoxContainer.LayoutOrientation.Horizontal, + Align = BoxContainer.AlignMode.Center, + Children = + { + (AcceptButton = new Button + { + Text = Loc.GetString("cryo-wakeup-window-accept-button"), + }), + + (new Control() + { + MinSize = new Vector2i(20, 0) + }), + + (DenyButton = new Button + { + Text = Loc.GetString("cryo-wakeup-window-deny-button"), + }) + } + }, + } + }, + } + }); + + _entityManager.EventBus.SubscribeEvent(EventSource.Network, this, OnWakeupResponse); + DenyButton.OnPressed += _ => Close(); + AcceptButton.OnPressed += _ => OnAccept(); + } + + protected override void Opened() + { + Label.SetMessage(Loc.GetString("cryo-wakeup-window-rules")); + DenyButton.Disabled = false; + AcceptButton.Disabled = false; + } + + private void OnAccept() + { + var message = new WakeupRequestMessage(); + _entityManager.EntityNetManager?.SendSystemNetworkMessage(message); + + // Disable the buttons to make the user wait for a response + AcceptButton.Disabled = true; + DenyButton.Disabled = true; + } + + private void OnWakeupResponse(WakeupRequestMessage.Response response) + { + if (response.Status == ReturnToBodyStatus.Success) + { + Close(); + return; + } + + // Failure + DenyButton.Disabled = false; + if (response.Status == ReturnToBodyStatus.Occupied) + Label.SetMessage(Loc.GetString("cryo-wakeup-result-occupied")); + else if (response.Status == ReturnToBodyStatus.CryopodMissing) + Label.SetMessage(Loc.GetString("cryo-wakeup-result-no-cryopod")); + else if (response.Status == ReturnToBodyStatus.BodyMissing) + Label.SetMessage(Loc.GetString("cryo-wakeup-result-no-body")); + else if (response.Status == ReturnToBodyStatus.Disabled) + Label.SetMessage(Loc.GetString("cryo-wakeup-result-disabled")); + } +} diff --git a/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs b/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs index c9e184dfc23..b82ce91f45b 100644 --- a/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs +++ b/Content.Client/Preferences/UI/HumanoidProfileEditor.Random.cs @@ -9,7 +9,7 @@ public sealed partial class HumanoidProfileEditor private void RandomizeEverything() { - Profile = HumanoidCharacterProfile.Random(); + Profile = HumanoidCharacterProfile.Random(balance : Profile?.BankBalance ?? HumanoidCharacterProfile.DefaultBalance); UpdateControls(); IsDirty = true; } diff --git a/Content.Client/Shipyard/BUI/ShipyardConsoleBoundUserInterface.cs b/Content.Client/Shipyard/BUI/ShipyardConsoleBoundUserInterface.cs index d1703159a70..f1a257045f6 100644 --- a/Content.Client/Shipyard/BUI/ShipyardConsoleBoundUserInterface.cs +++ b/Content.Client/Shipyard/BUI/ShipyardConsoleBoundUserInterface.cs @@ -42,12 +42,12 @@ protected override void Open() _menu.TargetIdButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent("ShipyardConsole-targetId")); } - private void Populate(byte uiKey) + private void Populate(List prototypes, string name) { if (_menu == null) return; - _menu.PopulateProducts((ShipyardConsoleUiKey) uiKey); + _menu.PopulateProducts(prototypes, name); _menu.PopulateCategories(); } @@ -61,7 +61,7 @@ protected override void UpdateState(BoundUserInterfaceState state) Balance = cState.Balance; ShipSellValue = cState.ShipSellValue; var castState = (ShipyardConsoleInterfaceState) state; - Populate(castState.UiKey); + Populate(castState.ShipyardPrototypes, castState.ShipyardName); _menu?.UpdateState(castState); } diff --git a/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs b/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs index 2f4b538cb9f..93ae70fd5ac 100644 --- a/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs +++ b/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs @@ -23,6 +23,9 @@ public sealed partial class ShipyardConsoleMenu : FancyWindow private readonly List _categoryStrings = new(); private string? _category; + private List _lastProtos = new(); + private string _lastType = ""; + public ShipyardConsoleMenu(ShipyardConsoleBoundUserInterface owner) { RobustXamlLoader.Load(this); @@ -38,12 +41,12 @@ public ShipyardConsoleMenu(ShipyardConsoleBoundUserInterface owner) private void OnCategoryItemSelected(OptionButton.ItemSelectedEventArgs args) { SetCategoryText(args.Id); - PopulateProducts((ShipyardConsoleUiKey) _menu.UiKey); + PopulateProducts(_lastProtos, _lastType); } private void OnSearchBarTextChanged(LineEdit.LineEditEventArgs args) { - PopulateProducts((ShipyardConsoleUiKey) _menu.UiKey); + PopulateProducts(_lastProtos, _lastType); } private void SetCategoryText(int id) @@ -52,51 +55,35 @@ private void SetCategoryText(int id) Categories.SelectId(id); } - private void GetPrototypes(out IEnumerable vessels) - { - vessels = _protoManager.EnumeratePrototypes(); - } - /// /// Populates the list of products that will actually be shown, using the current filters. /// - public void PopulateProducts(ShipyardConsoleUiKey uiKey) + public void PopulateProducts(List prototypes, string type) { Vessels.RemoveAllChildren(); - GetPrototypes(out var vessels); - var vesselList = vessels.ToList(); - vesselList.Sort((x, y) => - string.Compare(x.Name, y.Name, StringComparison.CurrentCultureIgnoreCase)); - var type = uiKey switch - { - ShipyardConsoleUiKey.Shipyard => "Civilian", - ShipyardConsoleUiKey.Security => "Security", - ShipyardConsoleUiKey.BlackMarket => "BlackMarket", - ShipyardConsoleUiKey.Expedition => "Expedition", - _ => "Shipyard", - }; + var newVessels = prototypes.Select(it => _protoManager.TryIndex(it, out var proto) ? proto : null) + .Where(it => it != null) + .ToList(); + + newVessels.Sort((x, y) => + string.Compare(x!.Name, y!.Name, StringComparison.CurrentCultureIgnoreCase)); var search = SearchBar.Text.Trim().ToLowerInvariant(); - foreach (var prototype in vesselList) + foreach (var prototype in newVessels) { - // filter by type for ui key - if (prototype.Group != type) - { - continue; - } // if no search or category // else if search // else if category and not search if (search.Length == 0 && _category == null || - search.Length != 0 && prototype.Name.ToLowerInvariant().Contains(search) || - search.Length == 0 && _category != null && prototype.Category.Equals(_category)) + search.Length != 0 && prototype!.Name.ToLowerInvariant().Contains(search) || + search.Length == 0 && _category != null && prototype!.Category.Equals(_category)) { var vesselEntry = new VesselRow { Vessel = prototype, - VesselName = { Text = prototype.Name }, + VesselName = { Text = prototype!.Name }, Purchase = { ToolTip = prototype.Description, TooltipDelay = 0.2f }, Price = { Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", prototype.Price.ToString())) }, }; @@ -104,6 +91,9 @@ public void PopulateProducts(ShipyardConsoleUiKey uiKey) Vessels.AddChild(vesselEntry); } } + + _lastProtos = prototypes; + _lastType = type; } /// @@ -113,7 +103,7 @@ public void PopulateCategories() { _categoryStrings.Clear(); Categories.Clear(); - GetPrototypes(out var vessels); + var vessels = _protoManager.EnumeratePrototypes(); foreach (var prototype in vessels) { if (!_categoryStrings.Contains(prototype.Category)) diff --git a/Content.Client/Shuttles/UI/RadarConsoleWindow.xaml b/Content.Client/Shuttles/UI/RadarConsoleWindow.xaml index 26aca5da629..32f2a575cec 100644 --- a/Content.Client/Shuttles/UI/RadarConsoleWindow.xaml +++ b/Content.Client/Shuttles/UI/RadarConsoleWindow.xaml @@ -2,7 +2,7 @@ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" xmlns:ui="clr-namespace:Content.Client.Shuttles.UI" Title="{Loc 'radar-console-window-title'}" - SetSize="648 648" + SetSize="648 672" MinSize="256 256"> > _docks = new(); public bool ShowIFF { get; set; } = true; + public bool ShowIFFShuttles { get; set; } = true; public bool ShowDocks { get; set; } = true; + /// + /// If present, called for every IFF. Must determine if it should or should not be shown. + /// + public Func? IFFFilter { get; set; } = null; + /// /// Currently hovered docked to show on the map. /// @@ -285,7 +291,12 @@ protected override void Draw(DrawingHandleScreen handle) uiPosition = new Vector2(uiX + uiXCentre, uiY + uiYCentre); } - label.Visible = true; + label.Visible = ShowIFFShuttles + || iff == null || (iff.Flags & IFFFlags.IsPlayerShuttle) == 0x0; + + if (IFFFilter != null) + label.Visible &= IFFFilter(gUid, grid.Comp, iff); + label.Text = Loc.GetString("shuttle-console-iff-label", ("name", name), ("distance", $"{distance:0.0}")); LayoutContainer.SetPosition(label, uiPosition); } diff --git a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml index a362339c315..688e3f9ea86 100644 --- a/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml +++ b/Content.Client/Shuttles/UI/ShuttleConsoleWindow.xaml @@ -2,7 +2,7 @@ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" xmlns:ui="clr-namespace:Content.Client.Shuttles.UI" Title="{Loc 'shuttle-console-window-title'}" - SetSize="1180 648" + SetSize="1180 672" MinSize="788 320"> + + [DataField("requiredMaterial", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string RequiredMaterial = "Plasma"; + public string RequiredMaterial = "Bananium"; // Frontier - Plasma to Bananium /// /// The amount of material needed to generate a single anomaly /// [DataField("materialPerAnomaly"), ViewVariables(VVAccess.ReadWrite)] - public int MaterialPerAnomaly = 1500; // a bit less than a stack of plasma + public int MaterialPerAnomaly = 1000; // Frontier - Plasma to Bananium, 1500 to 1000 /// /// The random anomaly spawner entity diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index 6fbd638844b..d018d01f905 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -29,91 +29,103 @@ private void ShutdownCommands() [AdminCommand(AdminFlags.Debug)] private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] args) { - if (args.Length == 0) - { - shell.WriteError("Not enough arguments."); - return; - } - - var mixtures = new GasMixture[7]; - for (var i = 0; i < mixtures.Length; i++) - mixtures[i] = new GasMixture(Atmospherics.CellVolume) { Temperature = Atmospherics.T20C }; - - // 0: Air - mixtures[0].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); - mixtures[0].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); - - // 1: Vaccum - - // 2: Oxygen (GM) - mixtures[2].AdjustMoles(Gas.Oxygen, Atmospherics.MolesCellGasMiner); - - // 3: Nitrogen (GM) - mixtures[3].AdjustMoles(Gas.Nitrogen, Atmospherics.MolesCellGasMiner); - - // 4: Plasma (GM) - mixtures[4].AdjustMoles(Gas.Plasma, Atmospherics.MolesCellGasMiner); - - // 5: Instant Plasmafire (r) - mixtures[5].AdjustMoles(Gas.Oxygen, Atmospherics.MolesCellGasMiner); - mixtures[5].AdjustMoles(Gas.Plasma, Atmospherics.MolesCellGasMiner); - mixtures[5].Temperature = 5000f; - - // 6: (Walk-In) Freezer - mixtures[6].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); - mixtures[6].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); - mixtures[6].Temperature = 235f; // Little colder than an actual freezer but gives a grace period to get e.g. themomachines set up, should keep warm for a few door openings - - foreach (var arg in args) - { - if (!NetEntity.TryParse(arg, out var netEntity) || !TryGetEntity(netEntity, out var euid)) - { - shell.WriteError($"Failed to parse euid '{arg}'."); - return; - } - - if (!TryComp(euid, out MapGridComponent? gridComp)) - { - shell.WriteError($"Euid '{euid}' does not exist or is not a grid."); - return; - } - - if (!TryComp(euid, out GridAtmosphereComponent? gridAtmosphere)) - { - shell.WriteError($"Grid \"{euid}\" has no atmosphere component, try addatmos."); - continue; - } - - var transform = Transform(euid.Value); - - foreach (var (indices, tileMain) in gridAtmosphere.Tiles) - { - var tile = tileMain.Air; - if (tile == null) - continue; - - if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices, gridComp)) - { - tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature }; - tileMain.Air = tile; - } - - tile.Clear(); - var mixtureId = 0; - foreach (var entUid in gridComp.GetAnchoredEntities(indices)) - { - if (!TryComp(entUid, out AtmosFixMarkerComponent? afm)) - continue; - mixtureId = afm.Mode; - break; - } - var mixture = mixtures[mixtureId]; - Merge(tile, mixture); - tile.Temperature = mixture.Temperature; - - gridAtmosphere.InvalidatedCoords.Add(indices); - } - } + if (args.Length == 0) + { + shell.WriteError("Not enough arguments."); + return; + } + + var mixtures = new GasMixture[10]; // Add one per added array + for (var i = 0; i < mixtures.Length; i++) + mixtures[i] = new GasMixture(Atmospherics.CellVolume) { Temperature = Atmospherics.T20C }; + + // 0: Air + mixtures[0].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); + mixtures[0].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + + // 1: Vaccum + + // 2: Oxygen (GM) + mixtures[2].AdjustMoles(Gas.Oxygen, Atmospherics.MolesCellGasMiner); + + // 3: Nitrogen (GM) + mixtures[3].AdjustMoles(Gas.Nitrogen, Atmospherics.MolesCellGasMiner); + + // 4: Plasma (GM) + mixtures[4].AdjustMoles(Gas.Plasma, Atmospherics.MolesCellGasMiner); + + // 5: Instant Plasmafire (r) + mixtures[5].AdjustMoles(Gas.Oxygen, Atmospherics.MolesCellGasMiner); + mixtures[5].AdjustMoles(Gas.Plasma, Atmospherics.MolesCellGasMiner); + mixtures[5].Temperature = 5000f; + + // 6: (Walk-In) Freezer + mixtures[6].AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); + mixtures[6].AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + mixtures[6].Temperature = 235f; // Little colder than an actual freezer but gives a grace period to get e.g. themomachines set up, should keep warm for a few door openings + + // Frontier - 7: Oxygen Shuttle (GM) + mixtures[7].Clear(); + mixtures[7].AdjustMoles(Gas.Oxygen, Atmospherics.MolesCellShuttle); + + // Frontier - 8: Nitrogen Shuttle (GM) + mixtures[8].Clear(); + mixtures[8].AdjustMoles(Gas.Nitrogen, Atmospherics.MolesCellShuttle); + + // Frontier - 9: Plasma Shuttle (GM) + mixtures[9].Clear(); + mixtures[9].AdjustMoles(Gas.Plasma, Atmospherics.MolesCellShuttle); + + foreach (var arg in args) + { + if (!NetEntity.TryParse(arg, out var netEntity) || !TryGetEntity(netEntity, out var euid)) + { + shell.WriteError($"Failed to parse euid '{arg}'."); + return; + } + + if (!TryComp(euid, out MapGridComponent? gridComp)) + { + shell.WriteError($"Euid '{euid}' does not exist or is not a grid."); + return; + } + + if (!TryComp(euid, out GridAtmosphereComponent? gridAtmosphere)) + { + shell.WriteError($"Grid \"{euid}\" has no atmosphere component, try addatmos."); + continue; + } + + var transform = Transform(euid.Value); + + foreach (var (indices, tileMain) in gridAtmosphere.Tiles) + { + var tile = tileMain.Air; + if (tile == null) + continue; + + if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices, gridComp)) + { + tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature }; + tileMain.Air = tile; + } + + tile.Clear(); + var mixtureId = 0; + foreach (var entUid in gridComp.GetAnchoredEntities(indices)) + { + if (!TryComp(entUid, out AtmosFixMarkerComponent? afm)) + continue; + mixtureId = afm.Mode; + break; + } + var mixture = mixtures[mixtureId]; + Merge(tile, mixture); + tile.Temperature = mixture.Temperature; + + gridAtmosphere.InvalidatedCoords.Add(indices); + } + } } private CompletionResult FixGridAtmosCommandCompletions(IConsoleShell shell, string[] args) diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index 242b02d78c1..b55cb70cf9b 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -42,7 +42,8 @@ private void OnRelayMoveInput(EntityUid uid, BodyComponent component, ref MoveIn { if (_mobState.IsDead(uid) && _mindSystem.TryGetMind(uid, out var mindId, out var mind)) { - mind.TimeOfDeath ??= _gameTiming.RealTime; + // mind.TimeOfDeath ??= _gameTiming.RealTime; + mind.TimeOfDeath ??= _gameTiming.CurTime; // Frontier - fix returning to body messing with the your TOD _ticker.OnGhostAttempt(mindId, true, mind: mind); } } diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 05a768ac8e6..bf6bba6e773 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -359,18 +359,6 @@ private double GetStaticPrice(EntityPrototype prototype) return price; } - private double GetVendPrice(EntityUid uid) - { - var price = 0.0; - - if (TryComp(uid, out var vendPrice)) - { - price += vendPrice.Price; - } - - return price; - } - private double GetVendPrice(EntityPrototype prototype) { var price = 0.0; diff --git a/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs index d2666417cf8..9f95548c02e 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs @@ -20,6 +20,7 @@ public sealed class SolutionTransferSystem : EntitySystem [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; /// /// Default transfer amounts for the set-transfer verb. @@ -139,6 +140,9 @@ private void OnAfterInteract(EntityUid uid, SolutionTransferComponent component, var message = Loc.GetString("comp-solution-transfer-transfer-solution", ("amount", transferred), ("target", target)); _popupSystem.PopupEntity(message, uid, args.User); + if (component.PlayTransferSound) // Frontier + EmitSoundOnTransfer(uid, component); // Frontier + args.Handled = true; } } @@ -195,6 +199,14 @@ public FixedPoint2 Transfer(EntityUid user, return actualAmount; } + + /// + /// Frontier - Play sound on solution transfer. + /// + private void EmitSoundOnTransfer(EntityUid uid, SolutionTransferComponent component) + { + _audio.PlayPvs(_audio.GetSound(component.TransferSound), uid); + } } /// diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs index be8dbbaf52a..bbbf906f47e 100644 --- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs +++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs @@ -3,6 +3,7 @@ using Content.Shared.Chemistry.Reagent; using Content.Shared.Mind.Components; using Robust.Shared.Prototypes; +using Content.Shared.Humanoid; //Delta-V - Banning humanoids from becoming ghost roles. namespace Content.Server.Chemistry.ReagentEffects; @@ -34,6 +35,15 @@ public override void Effect(ReagentEffectArgs args) return; } + // Delta-V: Do not allow humanoids to become sentient. Intended to stop people from + // repeatedly cloning themselves and using cognizine on their bodies. + // HumanoidAppearanceComponent is common to all player species, and is also used for the + // Ripley pilot whitelist, so there's a precedent for using it for this kind of check. + if (entityManager.HasComponent(uid)) + { + return; + } + ghostRole = entityManager.AddComponent(uid); entityManager.EnsureComponent(uid); diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index 7eefe02a53c..9749ec28dfc 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -37,7 +37,9 @@ using Content.Shared.Emag.Systems; using Content.Server.Popups; using Content.Server.Traits.Assorted; +using Content.Shared._NF.Cloning; using Content.Shared.Bank.Components; +using Robust.Shared.Serialization.Manager; namespace Content.Server.Cloning { @@ -65,6 +67,8 @@ public sealed class CloningSystem : EntitySystem [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; [Dependency] private readonly SharedJobSystem _jobs = default!; + // Frontier + [Dependency] private readonly ISerializationManager _serialization = default!; public readonly Dictionary ClonesWaitingForMind = new(); public const float EasyModeCloningCost = 0.7f; @@ -255,6 +259,18 @@ public bool TryCloning(EntityUid uid, EntityUid bodyToClone, Entity +/// Raised on a food being sliced. +/// Used by deep frier to apply friedness to slices (e.g. deep fried pizza) +/// +public sealed class SliceFoodEvent : EntityEventArgs +{ + /// + /// Who did the slicing? + /// + public EntityUid User; + + /// + /// What has been sliced? + /// + /// + /// This could soon be deleted if there was not enough food left to + /// continue slicing. + /// + public EntityUid Food; + + /// + /// What is the slice? + /// + public EntityUid Slice; + + public SliceFoodEvent(EntityUid user, EntityUid food, EntityUid slice) + { + User = user; + Food = food; + Slice = slice; + } +} diff --git a/Content.Server/Morgue/CrematoriumSystem.cs b/Content.Server/Morgue/CrematoriumSystem.cs index 8d05d0abd14..377e6dbb069 100644 --- a/Content.Server/Morgue/CrematoriumSystem.cs +++ b/Content.Server/Morgue/CrematoriumSystem.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Server.GameTicking; using Content.Server.Morgue.Components; using Content.Server.Storage.Components; @@ -7,6 +8,8 @@ using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; using Content.Shared.Mind; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; using Content.Shared.Morgue; using Content.Shared.Popups; using Content.Shared.Standing; @@ -14,6 +17,7 @@ using Content.Shared.Storage.Components; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Enums; using Robust.Shared.Player; namespace Content.Server.Morgue; @@ -27,6 +31,8 @@ public sealed class CrematoriumSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly StandingStateSystem _standing = default!; [Dependency] private readonly SharedMindSystem _minds = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; // Frontier + [Dependency] private readonly SharedMindSystem _mind = default!; // frontier public override void Initialize() { @@ -108,6 +114,15 @@ public bool TryCremate(EntityUid uid, CrematoriumComponent? component = null, En if (storage.Open || storage.Contents.ContainedEntities.Count < 1) return false; + // Frontier - refuse to accept alive mobs and dead-but-connected players + var entity = storage.Contents.ContainedEntities.First(); + if (entity is not { Valid: true }) + return false; + if (TryComp(entity, out var comp) && !_mobState.IsDead(entity, comp)) + return false; + if (_mind.TryGetMind(entity, out var _, out var mind) && mind.Session?.State?.Status == SessionStatus.InGame) + return false; + return Cremate(uid, component, storage); } diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index ead9c5d3505..2145d297128 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Nutrition; // DeltaV using Content.Server.Nutrition.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; @@ -7,16 +8,18 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Robust.Shared.Audio; +//using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.Player; +//using Robust.Shared.Player; namespace Content.Server.Nutrition.EntitySystems { - internal sealed class SliceableFoodSystem : EntitySystem + public sealed class SliceableFoodSystem : EntitySystem { [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedHandsSystem _handsSystem = default!; public override void Initialize() { @@ -55,7 +58,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, return false; } - var sliceUid = Spawn(component.Slice, transform.Coordinates); + var sliceUid = Slice(uid, user, component, transform); var lostSolution = _solutionContainerSystem.SplitSolution(uid, solution, solution.Volume / FixedPoint2.New(component.Count)); @@ -63,20 +66,7 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, // Fill new slice FillSlice(sliceUid, lostSolution); - var inCont = _containerSystem.IsEntityInContainer(component.Owner); - if (inCont) - { - _handsSystem.PickupOrDrop(user, sliceUid); - } - else - { - var xform = Transform(sliceUid); - _containerSystem.AttachParentToContainerOrGrid((sliceUid, xform)); - xform.LocalRotation = 0; - } - - SoundSystem.Play(component.Sound.GetSound(), Filter.Pvs(uid), - transform.Coordinates, AudioParams.Default.WithVolume(-2)); + _audio.PlayPvs(component.Sound, transform.Coordinates, AudioParams.Default.WithVolume(-2)); // Decrease size of item based on count - Could implement in the future // Bug with this currently is the size in a container is not updated @@ -87,12 +77,6 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, component.Count--; - //Nyano - Summary: Begin Nyano Code to tell us we've sliced something for Fryer -- - - var sliceEvent = new SliceFoodEvent(user, usedItem, uid, sliceUid); - RaiseLocalEvent(uid, sliceEvent); - //Nyano - End Nyano Code. - // If someone makes food proto with 1 slice... if (component.Count < 1) { @@ -104,11 +88,26 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, if (component.Count > 1) return true; - sliceUid = Spawn(component.Slice, transform.Coordinates); + sliceUid = Slice(uid, user, component, transform); // Fill last slice with the rest of the solution FillSlice(sliceUid, solution); + DeleteFood(uid, user); + return true; + } + + /// + /// Create a new slice in the world and returns its entity. + /// The solutions must be set afterwards. + /// + private EntityUid Slice(EntityUid uid, EntityUid user, SliceableFoodComponent? comp = null, TransformComponent? transform = null) // Frontier - Public to private + { + if (!Resolve(uid, ref comp, ref transform)) + return EntityUid.Invalid; + + var sliceUid = Spawn(comp.Slice, transform.Coordinates); + var inCont = _containerSystem.IsEntityInContainer(uid); if (inCont) { _handsSystem.PickupOrDrop(user, sliceUid); @@ -120,8 +119,12 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, xform.LocalRotation = 0; } - DeleteFood(uid, user); - return true; + // DeltaV - Begin deep frier related code + var sliceEvent = new SliceFoodEvent(user, uid, sliceUid); + RaiseLocalEvent(uid, sliceEvent); + // DeltaV - End deep frier related code + + return sliceUid; } private void DeleteFood(EntityUid uid, EntityUid user) @@ -163,40 +166,4 @@ private void OnExamined(EntityUid uid, SliceableFoodComponent component, Examine args.PushMarkup(Loc.GetString("sliceable-food-component-on-examine-remaining-slices-text", ("remainingCount", component.Count))); } } - //Nyano - Summary: Begin Nyano Code for the sliced food event. - public sealed class SliceFoodEvent : EntityEventArgs - { - /// - /// Who did the slicing? - /// - public EntityUid User; - - /// - /// What did the slicing? - /// - public EntityUid Tool; - - /// - /// What has been sliced? - /// - /// - /// This could soon be deleted if there was not enough food left to - /// continue slicing. - /// - public EntityUid Food; - - /// - /// What is the slice? - /// - public EntityUid Slice; - - public SliceFoodEvent(EntityUid user, EntityUid tool, EntityUid food, EntityUid slice) - { - User = user; - Tool = tool; - Food = food; - Slice = slice; - } - } - //End Nyano Code. } diff --git a/Content.Server/Nyanotrasen/Digging/DiggingSystem.cs b/Content.Server/Nyanotrasen/Digging/DiggingSystem.cs new file mode 100644 index 00000000000..8d2e951cfcc --- /dev/null +++ b/Content.Server/Nyanotrasen/Digging/DiggingSystem.cs @@ -0,0 +1,102 @@ +using Content.Shared.Interaction; +using Content.Shared.Maps; +using Content.Shared.Nyanotrasen.Digging; +using Content.Shared.Physics; +using Content.Shared.Tools.Components; +using Content.Shared.Tools.Systems; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.Server.Digging; + +public sealed class DiggingSystem : EntitySystem +{ + [Dependency] private readonly TileSystem _tiles = default!; + [Dependency] private readonly SharedMapSystem _maps = default!; + [Dependency] private readonly SharedToolSystem _tools = default!; + [Dependency] private readonly TurfSystem _turfs = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefManager = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDiggingAfterInteract); + SubscribeLocalEvent(OnEarthDigComplete); + } + + + private void OnEarthDigComplete(EntityUid shovel, EarthDiggingComponent comp, EarthDiggingDoAfterEvent args) + { + var coordinates = GetCoordinates(args.Coordinates); + if (!TryComp(shovel, out var _)) + return; + + var gridUid = coordinates.GetGridUid(EntityManager); + if (gridUid == null) + return; + + var grid = Comp(gridUid.Value); + var tile = _maps.GetTileRef(gridUid.Value, grid, coordinates); + + if (_tileDefManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef + || !tileDef.CanShovel + || string.IsNullOrEmpty(tileDef.BaseTurf) + || _turfs.IsTileBlocked(tile, CollisionGroup.MobMask)) + { + return; + } + + _tiles.DigTile(tile); + } + + private void OnDiggingAfterInteract(EntityUid uid, EarthDiggingComponent component, + AfterInteractEvent args) + { + if (args.Handled || !args.CanReach || args.Target != null) + return; + + if (TryDig(args.User, uid, component, args.ClickLocation)) + args.Handled = true; + } + + private bool TryDig(EntityUid user, EntityUid shovel, EarthDiggingComponent component, + EntityCoordinates clickLocation) + { + ToolComponent? tool = null; + if (component.ToolComponentNeeded && !TryComp(shovel, out tool)) + return false; + + var mapUid = clickLocation.GetGridUid(EntityManager); + if (mapUid == null || !TryComp(mapUid, out MapGridComponent? mapGrid)) + return false; + + var tile = _maps.GetTileRef(mapUid.Value, mapGrid, clickLocation); + + var coordinates = _maps.GridTileToLocal(mapUid.Value, mapGrid, tile.GridIndices); + + if (!_interactionSystem.InRangeUnobstructed(user, coordinates, popup: false)) + return false; + + if (_tileDefManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef + || !tileDef.CanShovel + || string.IsNullOrEmpty(tileDef.BaseTurf) + || _tileDefManager[tileDef.BaseTurf] is not ContentTileDefinition + || _turfs.IsTileBlocked(tile, CollisionGroup.MobMask)) + { + return false; + } + + var ev = new EarthDiggingDoAfterEvent(GetNetCoordinates(clickLocation)); + return _tools.UseTool( + shovel, + user, + target: shovel, + doAfterDelay: component.Delay, + toolQualitiesNeeded: new[] { component.QualityNeeded }, + doAfterEv: ev, + toolComponent: tool + ); + } +} diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs new file mode 100644 index 00000000000..3f023d6cdce --- /dev/null +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.Item.PseudoItem; + +/// +/// Signifies that pseudo-item creatures can sleep inside the container to which this component was added. +/// +[RegisterComponent] +public sealed partial class AllowsSleepInsideComponent : Component +{ +} diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemComponent.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemComponent.cs deleted file mode 100644 index 4844441a9ba..00000000000 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ - -namespace Content.Server.Item.PseudoItem -{ - /// - /// For entities that behave like an item under certain conditions, - /// but not under most conditions. - /// - [RegisterComponent] - public sealed partial class PseudoItemComponent : Component - { - [DataField("size")] - public int Size = 120; - - public bool Active = false; - } -} diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs index 579366b1451..d6490b8697b 100644 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs @@ -1,159 +1,197 @@ -using System.Threading; -using Content.Shared.Verbs; -using Content.Shared.Item; -using Content.Shared.Hands; +using Content.Server.Actions; +using Content.Server.Bed.Sleep; +using Content.Server.DoAfter; +using Content.Server.Popups; +using Content.Server.Storage.EntitySystems; +using Content.Shared.Bed.Sleep; using Content.Shared.DoAfter; +using Content.Shared.Hands; using Content.Shared.IdentityManagement; -using Content.Shared.Pseudo; -using Content.Server.Storage.Components; -using Content.Server.Storage.EntitySystems; -using Content.Server.DoAfter; +using Content.Shared.Item; +using Content.Shared.Item.PseudoItem; using Content.Shared.Storage; using Content.Shared.Tag; +using Content.Shared.Verbs; using Robust.Shared.Containers; -namespace Content.Server.Item.PseudoItem +namespace Content.Server.Item.PseudoItem; + +public sealed class PseudoItemSystem : EntitySystem { - public sealed class PseudoItemSystem : EntitySystem - { - [Dependency] private readonly StorageSystem _storageSystem = default!; - [Dependency] private readonly ItemSystem _itemSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly StorageSystem _storageSystem = default!; + [Dependency] private readonly ItemSystem _itemSystem = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly ActionsSystem _actions = default!; // Frontier + [Dependency] private readonly PopupSystem _popup = default!; // Frontier [ValidatePrototypeId] - private const string PreventTag = "PreventLabel";public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent>(AddInsertVerb); - SubscribeLocalEvent>(AddInsertAltVerb); - SubscribeLocalEvent(OnEntRemoved); - SubscribeLocalEvent(OnGettingPickedUpAttempt); - SubscribeLocalEvent(OnDropAttempt); - SubscribeLocalEvent(OnDoAfter); - } + private const string PreventTag = "PreventLabel"; - private void AddInsertVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) - { - if (!args.CanInteract || !args.CanAccess) - return; + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent>(AddInsertVerb); + SubscribeLocalEvent>(AddInsertAltVerb); + SubscribeLocalEvent(OnEntRemoved); + SubscribeLocalEvent(OnGettingPickedUpAttempt); + SubscribeLocalEvent(OnDropAttempt); + SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnTrySleeping); // Frontier + } - if (component.Active) - return; + private void AddInsertVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess) + return; - if (!TryComp(args.Target, out var targetStorage)) - return; + if (component.Active) + return; - if (component.Size > targetStorage.StorageCapacityMax - targetStorage.StorageUsed) - return; + if (!TryComp(args.Target, out var targetStorage)) + return; - if (Transform(args.Target).ParentUid == uid) - return; + if (component.Size > targetStorage.StorageCapacityMax - targetStorage.StorageUsed) + return; - InnateVerb verb = new() - { - Act = () => - { - TryInsert(args.Target, uid, component, targetStorage); - }, - Text = Loc.GetString("action-name-insert-self"), - Priority = 2 - }; - args.Verbs.Add(verb); - } + if (Transform(args.Target).ParentUid == uid) + return; - private void AddInsertAltVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) + InnateVerb verb = new() { - if (!args.CanInteract || !args.CanAccess) - return; + Act = () => + { + TryInsert(args.Target, uid, component, targetStorage); + }, + Text = Loc.GetString("action-name-insert-self"), + Priority = 2 + }; + args.Verbs.Add(verb); + } - if (args.User == args.Target) - return; + private void AddInsertAltVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess) + return; - if (args.Hands == null) - return; + if (args.User == args.Target) + return; - if (!TryComp(args.Hands.ActiveHandEntity, out var targetStorage)) - return; + if (args.Hands == null) + return; - AlternativeVerb verb = new() - { - Act = () => - { - StartInsertDoAfter(args.User, uid, args.Hands.ActiveHandEntity.Value, component); - }, - Text = Loc.GetString("action-name-insert-other", ("target", Identity.Entity(args.Target, EntityManager))), - Priority = 2 - }; - args.Verbs.Add(verb); - } + if (!TryComp(args.Hands.ActiveHandEntity, out var targetStorage)) + return; - private void OnEntRemoved(EntityUid uid, PseudoItemComponent component, EntGotRemovedFromContainerMessage args) + AlternativeVerb verb = new() { - if (!component.Active) - return; + Act = () => + { + StartInsertDoAfter(args.User, uid, args.Hands.ActiveHandEntity.Value, component); + }, + Text = Loc.GetString("action-name-insert-other", ("target", Identity.Entity(args.Target, EntityManager))), + Priority = 2 + }; + args.Verbs.Add(verb); + } - RemComp(uid); - component.Active = false; - } + private void OnEntRemoved(EntityUid uid, PseudoItemComponent component, EntGotRemovedFromContainerMessage args) + { + if (!component.Active) + return; - private void OnGettingPickedUpAttempt(EntityUid uid, PseudoItemComponent component, GettingPickedUpAttemptEvent args) - { - if (args.User == args.Item) - return; + RemComp(uid); + component.Active = false; + + // Frontier + if (component.SleepAction is { Valid: true }) + _actions.RemoveAction(uid, component.SleepAction); + } - Transform(uid).AttachToGridOrMap(); + private void OnGettingPickedUpAttempt(EntityUid uid, PseudoItemComponent component, + GettingPickedUpAttemptEvent args) + { + if (args.User == args.Item) + return; + + Transform(uid).AttachToGridOrMap(); + args.Cancel(); + } + + private void OnDropAttempt(EntityUid uid, PseudoItemComponent component, DropAttemptEvent args) + { + if (component.Active) args.Cancel(); - } + } - private void OnDropAttempt(EntityUid uid, PseudoItemComponent component, DropAttemptEvent args) - { - if (component.Active) - args.Cancel(); - } - private void OnDoAfter(EntityUid uid, PseudoItemComponent component, DoAfterEvent args) - { - if (args.Handled || args.Cancelled || args.Args.Used == null) - return; + private void OnDoAfter(EntityUid uid, PseudoItemComponent component, DoAfterEvent args) + { + if (args.Handled || args.Cancelled || args.Args.Used == null) + return; - args.Handled = TryInsert(args.Args.Used.Value, uid, component); - } + args.Handled = TryInsert(args.Args.Used.Value, uid, component); + } - public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemComponent component, StorageComponent? storage = null) - { - if (!Resolve(storageUid, ref storage)) - return false; + public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemComponent component, + StorageComponent? storage = null) + { + if (!Resolve(storageUid, ref storage)) + return false; - if (component.Size > storage.StorageCapacityMax - storage.StorageUsed) - return false; + if (component.Size > storage.StorageCapacityMax - storage.StorageUsed) + return false; - var item = EnsureComp(toInsert); - _tagSystem.TryAddTag(toInsert, PreventTag); + var item = EnsureComp(toInsert); + _tagSystem.TryAddTag(toInsert, PreventTag); _itemSystem.SetSize(toInsert, component.Size, item); - if (!_storageSystem.Insert(storageUid, toInsert, out _, storageComp: storage)) - { - component.Active = false; - RemComp(toInsert); - return false; - } + if (!_storageSystem.Insert(storageUid, toInsert, out _, null, storage)) + { + component.Active = false; + RemComp(toInsert); + return false; + } - component.Active = true; - Transform(storageUid).AttachToGridOrMap(); - return true; + // Frontier + if (HasComp(storageUid)) + _actions.AddAction(toInsert, ref component.SleepAction, SleepingSystem.SleepActionId, toInsert); - } - private void StartInsertDoAfter(EntityUid inserter, EntityUid toInsert, EntityUid storageEntity, PseudoItemComponent? pseudoItem = null) + component.Active = true; + return true; + } + + private void StartInsertDoAfter(EntityUid inserter, EntityUid toInsert, EntityUid storageEntity, + PseudoItemComponent? pseudoItem = null) + { + if (!Resolve(toInsert, ref pseudoItem)) + return; + + var ev = new PseudoItemInsertDoAfterEvent(); + var args = new DoAfterArgs(EntityManager, inserter, 5f, ev, toInsert, toInsert, storageEntity) { - if (!Resolve(toInsert, ref pseudoItem)) - return; + BreakOnTargetMove = true, + BreakOnUserMove = true, + NeedHand = true + }; - _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, inserter, 5f, new PseudoDoAfterEvent(), toInsert, target: toInsert, used: storageEntity) - { - BreakOnTargetMove = true, - BreakOnUserMove = true, - NeedHand = true - }); - } + _doAfter.TryStartDoAfter(args); + } + + private void OnInsertAttempt(EntityUid uid, PseudoItemComponent component, + ContainerGettingInsertedAttemptEvent args) + { + if (!component.Active) + return; + // This hopefully shouldn't trigger, but this is a failsafe just in case so we dont bluespace them cats + args.Cancel(); + } + + // Frontier - show a popup when a pseudo-item falls asleep inside a bag. + private void OnTrySleeping(EntityUid uid, PseudoItemComponent component, TryingToSleepEvent args) + { + var parent = Transform(uid).ParentUid; + if (!HasComp(uid) && parent is { Valid: true } && HasComp(parent)) + _popup.PopupEntity(Loc.GetString("popup-sleep-in-bag", ("entity", uid)), uid); } } diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs index f3e05aa7251..0cd1e63efb6 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs @@ -23,6 +23,7 @@ using Content.Server.Ghost.Roles.Components; using Content.Server.Kitchen.Components; using Content.Server.NPC.Components; +using Content.Server.Nutrition; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; using Content.Server.Paper; @@ -62,6 +63,8 @@ using FastAccessors; using Content.Shared.NPC; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Construction; +//using Robust.Shared.Audio.Systems; namespace Content.Server.Kitchen.EntitySystems { @@ -86,7 +89,7 @@ public sealed class DeepFryerSystem : EntitySystem [Dependency] private readonly TemperatureSystem _temperature = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly AmbientSoundSystem _ambientSoundSystem = default!; - [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; private static readonly string CookingDamageType = "Heat"; private static readonly float CookingDamageAmount = 10.0f; @@ -265,7 +268,7 @@ private void UpdateNextFryTime(EntityUid uid, DeepFryerComponent component) /// /// Make an item look deep-fried. /// - private void MakeCrispy(EntityUid item) + public void MakeCrispy(EntityUid item) { EnsureComp(item); EnsureComp(item); @@ -512,11 +515,11 @@ private void UpdateDeepFriedName(EntityUid uid, DeepFriedComponent component) // Already handled at OnInitDeepFried. break; case 1: - _meta.SetEntityName(uid, Loc.GetString("deep-fried-fried-item", + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item", ("entity", component.OriginalName))); break; default: - _meta.SetEntityName(uid, Loc.GetString("deep-fried-burned-item", + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-burned-item", ("entity", component.OriginalName))); break; } @@ -819,8 +822,9 @@ private void OnBeforeActivatableUIOpen(EntityUid uid, DeepFryerComponent compone private void OnRemoveItem(EntityUid uid, DeepFryerComponent component, DeepFryerRemoveItemMessage args) { - var removedItem = EntityManager.GetEntity( args.Item ); - if (removedItem.Valid) { //JJ Comment - This line should be unnecessary. Some issue is keeping the UI from updating when converting straight to a Burned Mess while the UI is still open. To replicate, put a Raw Meat in the fryer with no oil in it. Wait until it sputters with no effect. It should transform to Burned Mess, but doesn't. + var removedItem = EntityManager.GetEntity(args.Item); + if (removedItem.Valid) + { //JJ Comment - This line should be unnecessary. Some issue is keeping the UI from updating when converting straight to a Burned Mess while the UI is still open. To replicate, put a Raw Meat in the fryer with no oil in it. Wait until it sputters with no effect. It should transform to Burned Mess, but doesn't. if (!component.Storage.Remove(removedItem)) return; @@ -990,7 +994,7 @@ private void OnInitDeepFried(EntityUid uid, DeepFriedComponent component, Compon { var meta = MetaData(uid); component.OriginalName = meta.EntityName; - _meta.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item", ("entity", meta.EntityName))); + _metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item", ("entity", meta.EntityName))); } private void OnExamineFried(EntityUid uid, DeepFriedComponent component, ExaminedEvent args) diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index fa00514e610..5bf2dae7298 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -13,6 +13,7 @@ using Robust.Shared.Random; using Robust.Shared.Replays; using Robust.Shared.Utility; +using Content.Shared.IdentityManagement; // Frontier namespace Content.Server.Radio.EntitySystems; @@ -63,9 +64,26 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann if (!_messages.Add(message)) return; - var name = TryComp(messageSource, out VoiceMaskComponent? mask) && mask.Enabled - ? mask.VoiceName - : MetaData(messageSource).EntityName; + var name = MetaData(messageSource).EntityName; // Frontier - code block to allow multi masks. + var mode = "Unknown"; + + if (TryComp(messageSource, out VoiceMaskComponent? mask) && mask.Enabled) + { + switch (mask.Mode) + { + case Mode.Real: + mode = Identity.Name(messageSource, EntityManager); + break; + case Mode.Fake: + mode = mask.VoiceName; + break; + case Mode.Unknown: + break; + default: + throw new ArgumentOutOfRangeException($"No implemented mask radio behavior for {mask.Mode}!"); + } + name = mode; + } // Frontier - code block to allow multi masks. name = FormattedMessage.EscapeText(name); diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index b0ae03eb255..88047b65b39 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -31,6 +31,7 @@ using Content.Server.StationRecords.Systems; using Content.Shared.Database; using Content.Shared.Preferences; +using Content.Shared.Shuttles.Components; using static Content.Shared.Shipyard.Components.ShuttleDeedComponent; using Content.Server.Shuttles.Components; using Content.Server.Station.Components; @@ -101,6 +102,13 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component return; } + if (!GetAvailableShuttles(uid).Contains(vessel.ID)) + { + PlayDenySound(uid, component); + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(player):player} tried to purchase a vessel that was never available."); + return; + } + var name = vessel.Name; if (vessel.Price <= 0) return; @@ -156,6 +164,7 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component B = 100, A = 100 }); + _shuttle.AddIFFFlag(shuttle.Owner, IFFFlags.IsPlayerShuttle); } if (TryComp(targetId, out var newCap)) @@ -171,7 +180,7 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component _accessSystem.TrySetTags(targetId, newAccess, newCap); } - + var deedID = EnsureComp(targetId); AssignShuttleDeedProperties(deedID, shuttle.Owner, name, player); @@ -399,8 +408,8 @@ private void SendPurchaseMessage(EntityUid uid, EntityUid player, string name, s if (secret) { - _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-docking-secret", ("vessel", name)), channel, uid); - _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-docking-secret", ("vessel", name)), InGameICChatType.Speak, true); + _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-docking-secret"), channel, uid); + _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-docking-secret"), InGameICChatType.Speak, true); } else { @@ -415,8 +424,8 @@ private void SendSellMessage(EntityUid uid, EntityUid? player, string name, stri if (secret) { - _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-leaving-secret", ("vessel", name!)), channel, uid); - _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-leaving-secret", ("vessel", name!)), InGameICChatType.Speak, true); + _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-leaving-secret"), channel, uid); + _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-leaving-secret"), InGameICChatType.Speak, true); } else { @@ -493,15 +502,62 @@ public bool FoundOrganics(EntityUid uid, EntityQuery mobQuery return false; } + /// + /// Returns all shuttle prototype IDs the given shipyard console can offer. + /// + public List GetAvailableShuttles(EntityUid uid, ShipyardConsoleUiKey? key = null, ShipyardListingComponent? listing = null) + { + var availableShuttles = new List(); + + if (key == null && TryComp(uid, out var ui)) + { + // Try to find a ui key that is an instance of the shipyard console ui key + foreach (var (k, v) in ui.Interfaces) + { + if (k is ShipyardConsoleUiKey shipyardKey) + { + key = shipyardKey; + break; + } + } + } + + // Add all prototypes matching the ui key + if (key != null && key != ShipyardConsoleUiKey.Custom && ShipyardGroupMapping.TryGetValue(key.Value, out var group)) + { + var protos = _prototypeManager.EnumeratePrototypes(); + foreach (var proto in protos) + { + if (proto.Group == group) + availableShuttles.Add(proto.ID); + } + } + + // Add all prototypes specified in ShipyardListing + if (listing != null || TryComp(uid, out listing)) + { + foreach (var shuttle in listing.Shuttles) + { + availableShuttles.Add(shuttle); + } + } + + return availableShuttles; + } + private void RefreshState(EntityUid uid, int balance, bool access, string? shipDeed, int shipSellValue, bool isTargetIdPresent, ShipyardConsoleUiKey uiKey) { + var listing = TryComp(uid, out var comp) ? comp : null; + var newState = new ShipyardConsoleInterfaceState( balance, access, shipDeed, shipSellValue, isTargetIdPresent, - ((byte)uiKey)); + ((byte)uiKey), + GetAvailableShuttles(uid, uiKey, listing), + uiKey.ToString()); _ui.TrySetUiState(uid, uiKey, newState); } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 4f2b7a4f99a..e73cbfcd5e9 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -294,12 +294,13 @@ public void BorgActivate(EntityUid uid, BorgChassisComponent component) access.Clear(); access.Add($"Captain"); + access.Add($"Maintenance"); + access.Add($"External"); access.Add($"Cargo"); access.Add($"Salvage"); access.Add($"Medical"); access.Add($"Service"); access.Add($"Research"); - access.Add($"Engineering"); _access.TrySetTags(uid, access); } diff --git a/Content.Server/Traits/Assorted/FriedTraitComponent.cs b/Content.Server/Traits/Assorted/FriedTraitComponent.cs new file mode 100644 index 00000000000..51522144d5f --- /dev/null +++ b/Content.Server/Traits/Assorted/FriedTraitComponent.cs @@ -0,0 +1,11 @@ +using System.Numerics; + +namespace Content.Server.Traits.Assorted; + +/// +/// This is used for the fried trait. +/// +[RegisterComponent, Access(typeof(FriedTraitSystem))] +public sealed partial class FriedTraitComponent : Component +{ +} diff --git a/Content.Server/Traits/Assorted/FriedTraitSystem.cs b/Content.Server/Traits/Assorted/FriedTraitSystem.cs new file mode 100644 index 00000000000..f3d5c017c0e --- /dev/null +++ b/Content.Server/Traits/Assorted/FriedTraitSystem.cs @@ -0,0 +1,22 @@ +using Content.Server.Kitchen.EntitySystems; + +namespace Content.Server.Traits.Assorted; + +/// +/// This handles fried trait, causing the affected to look crispy. +/// +public sealed class FriedTraitSystem : EntitySystem +{ + [Dependency] private readonly DeepFryerSystem _deepFryerSystem = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(SetupFriedTrait); + } + + private void SetupFriedTrait(EntityUid uid, FriedTraitComponent component, ComponentStartup args) + { + _deepFryerSystem.MakeCrispy(uid); + } +} diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 0575b1751e6..3a9cb0e3550 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -358,12 +358,12 @@ public void AuthorizedVend(EntityUid uid, EntityUid sender, InventoryType type, if (TryComp(component.Owner, out var modifier)) price *= modifier.Mod; - var totalPrice = ((int) price); + var totalPrice = (int) price; // This block exists to allow the VendPrice flag to set a vending machine item price. var priceVend = _pricing.GetEstimatedVendPrice(proto); - if (priceVend == null || priceVend == 0) { } - else { totalPrice = ((int) priceVend); } + if (priceVend != null && totalPrice <= (int) priceVend) + totalPrice = (int) priceVend; // This block exists to allow the VendPrice flag to set a vending machine item price. if (totalPrice > bank.Balance) diff --git a/Content.Server/VoiceMask/VoiceMaskComponent.cs b/Content.Server/VoiceMask/VoiceMaskComponent.cs index edf38b39d48..21e30ed02a0 100644 --- a/Content.Server/VoiceMask/VoiceMaskComponent.cs +++ b/Content.Server/VoiceMask/VoiceMaskComponent.cs @@ -1,9 +1,20 @@ namespace Content.Server.VoiceMask; +public enum Mode : byte // Frontier +{ + Real, + Fake, + Unknown +} + [RegisterComponent] public sealed partial class VoiceMaskComponent : Component { [ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true; [ViewVariables(VVAccess.ReadWrite)] public string VoiceName = "Unknown"; + + [ViewVariables(VVAccess.ReadWrite), DataField("mode")] // Frontier + [AutoNetworkedField] + public Mode Mode = Mode.Unknown; } diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs index 87b3b9ef323..793f4173a8c 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.Equip.cs @@ -22,6 +22,20 @@ private void OnEquip(EntityUid uid, VoiceMaskerComponent component, GotEquippedE var comp = EnsureComp(user); comp.VoiceName = component.LastSetName; + switch (component.RadioMode) // Frontier - code block to allow multi masks. + { + case RadioMode.Real: + comp.Mode = Mode.Real; + break; + case RadioMode.Fake: + comp.Mode = Mode.Fake; + break; + case RadioMode.Unknown: + break; + default: + throw new ArgumentOutOfRangeException($"No implemented mask radio behavior for {component.RadioMode}!"); + } // Frontier - code block to allow multi masks. + _actions.AddAction(user, ref component.ActionEntity, component.Action, uid); } diff --git a/Content.Server/VoiceMask/VoiceMaskerComponent.cs b/Content.Server/VoiceMask/VoiceMaskerComponent.cs index c3cc29c5271..52076a497d3 100644 --- a/Content.Server/VoiceMask/VoiceMaskerComponent.cs +++ b/Content.Server/VoiceMask/VoiceMaskerComponent.cs @@ -3,6 +3,13 @@ namespace Content.Server.VoiceMask; +public enum RadioMode : byte // Frontier +{ + Real, + Fake, + Unknown +} + [RegisterComponent] public sealed partial class VoiceMaskerComponent : Component { @@ -12,4 +19,8 @@ public sealed partial class VoiceMaskerComponent : Component public string Action = "ActionChangeVoiceMask"; [DataField("actionEntity")] public EntityUid? ActionEntity; + + [ViewVariables(VVAccess.ReadWrite), DataField("radioMode")] // Frontier + [AutoNetworkedField] + public RadioMode RadioMode = RadioMode.Unknown; } diff --git a/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs b/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs index ae61f0581e3..d2464627a62 100644 --- a/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs +++ b/Content.Server/Worldgen/Components/Debris/DebrisFeaturePlacerControllerComponent.cs @@ -27,12 +27,12 @@ public sealed partial class DebrisFeaturePlacerControllerComponent : Component /// /// The chance spawning a piece of debris will just be cancelled randomly. /// - [DataField("randomCancelChance")] public float RandomCancellationChance = 0.1f; + [DataField("randomCancelChance")] public float RandomCancellationChance = 0.35f; /// /// Radius in which there should be no objects for debris to spawn. /// - [DataField("safetyZoneRadius")] public float SafetyZoneRadius = 16.0f; + [DataField("safetyZoneRadius")] public float SafetyZoneRadius = 24.0f; /// /// The noise channel to use as a density controller. diff --git a/Content.Server/_NF/CryoSleep/CryoSleepComponent.cs b/Content.Server/_NF/CryoSleep/CryoSleepComponent.cs index 6f480ec050a..942b5b8b318 100644 --- a/Content.Server/_NF/CryoSleep/CryoSleepComponent.cs +++ b/Content.Server/_NF/CryoSleep/CryoSleepComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.DoAfter; using Robust.Shared.Audio; using Robust.Shared.Containers; @@ -13,4 +14,8 @@ public sealed partial class CryoSleepComponent : Component [DataField("leaveSound")] public SoundSpecifier LeaveSound = new SoundPathSpecifier("/Audio/Effects/radpulse1.ogg"); + /// + /// The ID of the latest DoAfter event associated with this entity. May be null if there's no DoAfter going on. + /// + public DoAfterId? CryosleepDoAfter = null; } diff --git a/Content.Server/_NF/CryoSleep/CryoSleepEui.cs b/Content.Server/_NF/CryoSleep/CryoSleepEui.cs index 30be4115b65..46f2a4f3e43 100644 --- a/Content.Server/_NF/CryoSleep/CryoSleepEui.cs +++ b/Content.Server/_NF/CryoSleep/CryoSleepEui.cs @@ -7,11 +7,13 @@ namespace Content.Server.CryoSleep; public sealed class CryoSleepEui : BaseEui { private readonly CryoSleepSystem _cryoSystem; - private readonly EntityUid _mind; + private readonly EntityUid _body; + private readonly EntityUid _cryopod; - public CryoSleepEui(EntityUid mind, CryoSleepSystem cryoSys) + public CryoSleepEui(EntityUid body, EntityUid cryopod, CryoSleepSystem cryoSys) { - _mind = mind; + _body = body; + _cryopod = cryopod; _cryoSystem = cryoSys; } @@ -19,16 +21,22 @@ public override void HandleMessage(EuiMessageBase msg) { base.HandleMessage(msg); - if (msg is not AcceptCryoChoiceMessage choice || - choice.Button == AcceptCryoUiButton.Deny) + if (msg is not AcceptCryoChoiceMessage choice) { Close(); return; } - if (_mind is { Valid: true } body) + if (_body is { Valid: true }) { - _cryoSystem.CryoStoreBody(body); + if (choice.Button == AcceptCryoUiButton.Accept) + { + _cryoSystem.CryoStoreBody(_body, _cryopod); + } + else + { + _cryoSystem.EjectBody(_cryopod, body: _body); + } } Close(); diff --git a/Content.Server/_NF/CryoSleep/CryoSleepSystem.Returning.cs b/Content.Server/_NF/CryoSleep/CryoSleepSystem.Returning.cs new file mode 100644 index 00000000000..7d9aff763bd --- /dev/null +++ b/Content.Server/_NF/CryoSleep/CryoSleepSystem.Returning.cs @@ -0,0 +1,101 @@ +using System.Threading; +using Content.Server.Administration.Logs; +using Content.Server.GameTicking; +using Content.Shared.Bed.Sleep; +using Content.Shared.Database; +using Content.Shared.Ghost; +using Content.Shared.Mind; +using Content.Shared.NF14.CCVar; +using Content.Shared.Players; +using Robust.Shared.Configuration; +using Robust.Shared.Network; + +namespace Content.Server.CryoSleep; + +public sealed partial class CryoSleepSystem +{ + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + + private void InitReturning() + { + SubscribeNetworkEvent(OnWakeupMessage); + SubscribeNetworkEvent(OnGetStatusMessage); + SubscribeLocalEvent(e => ResetCryosleepState(e.PlayerSession.UserId)); + SubscribeLocalEvent(e => ResetCryosleepState(e.Player.UserId)); + } + + private void OnWakeupMessage(WakeupRequestMessage message, EntitySessionEventArgs session) + { + var entity = session.SenderSession.GetMind(); + + var result = entity == null || !TryComp(entity, out var mind) + ? ReturnToBodyStatus.NotAGhost + : TryReturnToBody(mind); + + var msg = new WakeupRequestMessage.Response(result); + RaiseNetworkEvent(msg, session.SenderSession); + } + + public void OnGetStatusMessage(GetStatusMessage message, EntitySessionEventArgs args) + { + var msg = new GetStatusMessage.Response(HasCryosleepingBody(args.SenderSession.UserId)); + RaiseNetworkEvent(msg, args.SenderSession); + } + + /// + /// Returns the mind to the original body, if any. The mind must be possessing a ghost, unless [force] is true. + /// + public ReturnToBodyStatus TryReturnToBody(MindComponent mind, bool force = false) + { + if (!_configurationManager.GetCVar(NF14CVars.CryoReturnEnabled)) + return ReturnToBodyStatus.Disabled; + + var id = mind.UserId; + if (id == null || !_storedBodies.TryGetValue(id.Value, out var storedBody)) + return ReturnToBodyStatus.BodyMissing; + + if (!force && (mind.CurrentEntity is not { Valid: true } ghost || !HasComp(ghost))) + return ReturnToBodyStatus.NotAGhost; + + var cryopod = storedBody!.Value.Cryopod; + if (!Exists(cryopod) || Deleted(cryopod) || !TryComp(cryopod, out var cryoComp)) + return ReturnToBodyStatus.CryopodMissing; + + var body = storedBody.Value.Body; + if (IsOccupied(cryoComp) || !cryoComp.BodyContainer.Insert(body, EntityManager)) + return ReturnToBodyStatus.Occupied; + + _storedBodies.Remove(id.Value); + _mind.ControlMob(id.Value, body); + // Force the mob to sleep + var sleep = EnsureComp(body); + sleep.CoolDownEnd = TimeSpan.FromSeconds(5); + + _popup.PopupEntity(Loc.GetString("cryopod-wake-up", ("entity", body)), body); + + RaiseLocalEvent(body, new CryosleepWakeUpEvent(storedBody.Value.Cryopod, id), true); + + _adminLogger.Add(LogType.LateJoin, LogImpact.Medium, $"{id.Value} has returned from cryosleep!"); + return ReturnToBodyStatus.Success; + } + + /// + /// Removes the body of the given user from the cryosleep dictionary, making them unable to return to it. + /// Also actually deletes the body if it's still on that map. + /// + public void ResetCryosleepState(NetUserId id) + { + var body = _storedBodies.GetValueOrDefault(id, null); + + if (body != null && _storedBodies.Remove(id) && Transform(body!.Value.Body).ParentUid == _storageMap) + { + QueueDel(body.Value.Body); + } + } + + public bool HasCryosleepingBody(NetUserId id) + { + return _storedBodies.ContainsKey(id); + } +} diff --git a/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs b/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs index 25c6f0aafdc..2cb86177710 100644 --- a/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs +++ b/Content.Server/_NF/CryoSleep/CryoSleepSystem.cs @@ -1,23 +1,40 @@ using System.Numerics; +using Content.Server.DoAfter; using Content.Server.EUI; using Content.Server.GameTicking; +using Content.Server.Interaction; using Content.Server.Mind; +using Content.Server.Popups; +using Content.Server.Shipyard.Systems; +using Content.Server.Traits.Assorted; using Content.Shared.ActionBlocker; using Content.Shared.Climbing.Systems; +using Content.Shared.CryoSleep; using Content.Shared.Destructible; +using Content.Shared.DoAfter; +using Content.Shared.DragDrop; using Content.Shared.Examine; +using Content.Shared.GameTicking; using Content.Shared.Interaction.Events; using Content.Shared.Mind; +using Content.Shared.Mind.Components; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.NF14.CCVar; +using Content.Shared.Popups; using Content.Shared.Verbs; using Robust.Server.Containers; using Robust.Shared.Containers; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Network; +using Robust.Shared.Timing; namespace Content.Server.CryoSleep; -public sealed class CryoSleepSystem : EntitySystem +public sealed partial class CryoSleepSystem : SharedCryoSleepSystem { + [Dependency] private readonly EntityManager _entityManager = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ContainerSystem _container = default!; @@ -26,18 +43,30 @@ public sealed class CryoSleepSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly EuiManager _euiManager = null!; [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly InteractionSystem _interaction = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly MobStateSystem _mobSystem = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly ShipyardSystem _shipyard = default!; // For the FoundOrganics method + private readonly Dictionary _storedBodies = new(); private EntityUid? _storageMap; - // TODO: add a proper doafter system once that all gets sorted out + public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInit); + SubscribeLocalEvent>(AddInsertOtherVerb); SubscribeLocalEvent>(AddAlternativeVerbs); SubscribeLocalEvent(OnSuicide); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent((e,c,_) => EjectBody(e, c)); + SubscribeLocalEvent(OnAutoCryoSleep); + SubscribeLocalEvent(OnEntityDragDropped); + SubscribeLocalEvent(OnRoundEnded); + + InitReturning(); } private EntityUid GetStorageMap() @@ -57,6 +86,32 @@ private void OnInit(EntityUid uid, CryoSleepComponent component, ComponentStartu component.BodyContainer = _container.EnsureContainer(uid, "body_container"); } + private void AddInsertOtherVerb(EntityUid uid, CryoSleepComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + // If the user is currently holding/pulling an entity that can be cryo-sleeped, add a verb for that. + if (args.Using is { Valid: true } @using && + !IsOccupied(component) && + _interaction.InRangeUnobstructed(@using, args.Target) && + _actionBlocker.CanMove(@using) && + HasComp(@using)) + { + var name = "Unknown"; + if (TryComp(args.Using.Value, out var metadata)) + name = metadata.EntityName; + + InteractionVerb verb = new() + { + Act = () => InsertBody(@using, component, false), + Category = VerbCategory.Insert, + Text = name + }; + args.Verbs.Add(verb); + } + } + private void AddAlternativeVerbs(EntityUid uid, CryoSleepComponent component, GetVerbsEvent args) { if (!args.CanAccess || !args.CanInteract) @@ -76,7 +131,7 @@ private void AddAlternativeVerbs(EntityUid uid, CryoSleepComponent component, Ge // Self-insert verb if (!IsOccupied(component) && - _actionBlocker.CanMove(args.User)) + (_actionBlocker.CanMove(args.User) || HasComp(args.User))) // just get working legs { AlternativeVerb verb = new() { @@ -110,20 +165,59 @@ private void OnExamine(EntityUid uid, CryoSleepComponent component, ExaminedEven args.PushMarkup(Loc.GetString(message)); } + private void OnAutoCryoSleep(EntityUid uid, CryoSleepComponent component, CryoStoreDoAfterEvent args) + { + if (args.Cancelled || args.Handled) + return; + + var pod = args.Used; + var body = args.Target; + if (body is not { Valid: true } || pod is not { Valid: true }) + return; + + CryoStoreBody(body.Value, pod.Value); + args.Handled = true; + } + + private void OnEntityDragDropped(EntityUid uid, CryoSleepComponent component, DragDropTargetEvent args) + { + if (InsertBody(args.Dragged, component, false)) + { + args.Handled = true; + } + } + public bool InsertBody(EntityUid? toInsert, CryoSleepComponent component, bool force) { + var cryopod = component.Owner; if (toInsert == null) return false; - if (IsOccupied(component) && !force) return false; + var mobQuery = GetEntityQuery(); + var xformQuery = GetEntityQuery(); + // Refuse to accept "passengers" (e.g. pet felinids in bags) + if (_shipyard.FoundOrganics(toInsert.Value, mobQuery, xformQuery)) + { + _popup.PopupEntity(Loc.GetString("cryopod-refuse-organic", ("cryopod", cryopod)), cryopod, PopupType.SmallCaution); + return false; + } + + // Refuse to accept dead or crit bodies, as well as non-mobs + if (!TryComp(toInsert, out var mob) || !_mobSystem.IsAlive(toInsert.Value, mob)) + { + _popup.PopupEntity(Loc.GetString("cryopod-refuse-dead", ("cryopod", cryopod)), cryopod, PopupType.SmallCaution); + return false; + } + + // If the inserted player has disconnected, it will be stored immediately. if (_mind.TryGetMind(toInsert.Value, out var mind, out var mindComp)) { var session = mindComp.Session; if (session is not null && session.Status == SessionStatus.Disconnected) { - CryoStoreBody(toInsert.Value); + CryoStoreBody(toInsert.Value, cryopod); return true; } } @@ -132,37 +226,89 @@ public bool InsertBody(EntityUid? toInsert, CryoSleepComponent component, bool f if (success && mindComp?.Session != null) { - _euiManager.OpenEui(new CryoSleepEui(mind, this), mindComp.Session); + _euiManager.OpenEui(new CryoSleepEui(toInsert.Value, cryopod, this), mindComp.Session); + } + + if (success) + { + // Start a do-after event - if the inserted body is still inside and has not decided to sleep/leave, it will be stored. + // It does not matter whether the entity has a mind or not. + var ev = new CryoStoreDoAfterEvent(); + var args = new DoAfterArgs( + _entityManager, + toInsert.Value, + TimeSpan.FromSeconds(30), + ev, + cryopod, + toInsert, + cryopod + ) + { + BreakOnUserMove = true, + BreakOnWeightlessMove = true + }; + + if (_doAfter.TryStartDoAfter(args)) + component.CryosleepDoAfter = ev.DoAfter.Id; } return success; } - public void CryoStoreBody(EntityUid mindId) + public void CryoStoreBody(EntityUid bodyId, EntityUid cryopod) { - if (!TryComp(mindId, out var mind) || mind.CurrentEntity is not { Valid : true } body) - { - QueueDel(mindId); + if (!TryComp(cryopod, out var cryo)) return; + + NetUserId? id = null; + if (_mind.TryGetMind(bodyId, out var mindEntity, out var mind) && mind.CurrentEntity is { Valid : true } body) + { + _gameTicker.OnGhostAttempt(mindEntity, false, true, mind: mind); + + id = mind.UserId; + if (id != null) + _storedBodies[id.Value] = new StoredBody() { Body = body, Cryopod = cryopod }; } - _gameTicker.OnGhostAttempt(mindId, false, true, mind: mind); var storage = GetStorageMap(); - var xform = Transform(body); + var xform = Transform(bodyId); + cryo.BodyContainer.Remove(bodyId, _entityManager, xform, reparent: false, force: true); xform.Coordinates = new EntityCoordinates(storage, Vector2.Zero); + + RaiseLocalEvent(bodyId, new CryosleepEnterEvent(cryopod, mind?.UserId), true); + + if (cryo.CryosleepDoAfter != null && _doAfter.GetStatus(cryo.CryosleepDoAfter) == DoAfterStatus.Running) + _doAfter.Cancel(cryo.CryosleepDoAfter); + + // Start a timer. When it ends, the body needs to be deleted. + Timer.Spawn(TimeSpan.FromSeconds(_configurationManager.GetCVar(NF14CVars.CryoExpirationTime)), () => + { + if (id != null) + ResetCryosleepState(id.Value); + + if (!Deleted(bodyId) && Transform(bodyId).ParentUid == _storageMap) + QueueDel(bodyId); + }); } - public bool EjectBody(EntityUid pod, CryoSleepComponent component) + /// If not null, will not eject if the stored body is different from that parameter. + public bool EjectBody(EntityUid pod, CryoSleepComponent? component = null, EntityUid? body = null) { - if (!IsOccupied(component)) + if (!Resolve(pod, ref component)) + return false; + + if (!IsOccupied(component) || (body != null && component.BodyContainer.ContainedEntity != body)) return false; var toEject = component.BodyContainer.ContainedEntity; if (toEject == null) return false; - component.BodyContainer.Remove(toEject.Value); - _climb.ForciblySetClimbing(toEject.Value, pod); + component.BodyContainer.Remove(toEject.Value, force: true); + //_climb.ForciblySetClimbing(toEject.Value, pod); + + if (component.CryosleepDoAfter != null && _doAfter.GetStatus(component.CryosleepDoAfter) == DoAfterStatus.Running) + _doAfter.Cancel(component.CryosleepDoAfter); return true; } @@ -171,5 +317,16 @@ private bool IsOccupied(CryoSleepComponent component) { return component.BodyContainer.ContainedEntity != null; } + + private void OnRoundEnded(RoundEndedEvent args) + { + _storedBodies.Clear(); + } + + private struct StoredBody + { + public EntityUid Body; + public EntityUid Cryopod; + } } diff --git a/Content.Server/_NF/CryoSleep/CryosleepEvents.cs b/Content.Server/_NF/CryoSleep/CryosleepEvents.cs new file mode 100644 index 00000000000..df0ad5ec20c --- /dev/null +++ b/Content.Server/_NF/CryoSleep/CryosleepEvents.cs @@ -0,0 +1,31 @@ +using Robust.Shared.Network; + +namespace Content.Server.CryoSleep; + +public abstract class BaseCryosleepEvent : EntityEventArgs +{ + public NetUserId? User; + public EntityUid Cryopod; + + protected BaseCryosleepEvent(EntityUid cryopod, NetUserId? user) + { + Cryopod = cryopod; + User = user; + } +} + +/// +/// Raised on an entity who has entered cryosleep. +/// +public sealed class CryosleepEnterEvent : BaseCryosleepEvent +{ + public CryosleepEnterEvent(EntityUid cryopod, NetUserId? user) : base(cryopod, user) {} +} + +/// +/// Raised on an entity who has successfully woken up from cryosleep. +/// +public sealed class CryosleepWakeUpEvent : BaseCryosleepEvent +{ + public CryosleepWakeUpEvent(EntityUid cryopod, NetUserId? user) : base(cryopod, user) {} +} diff --git a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs index a8e1738dd2f..3851f616c06 100644 --- a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs +++ b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs @@ -110,23 +110,26 @@ private void OnPlayerSpawningEvent(PlayerSpawnCompleteEvent ev) private void OnStartup(RoundStartingEvent ev) { - var depotMap = "/Maps/cargodepot.yml"; - var tinnia = "/Maps/tinnia.yml"; - var caseys = "/Maps/caseyscasino.yml"; - var lpbravo = "/Maps/lpbravo.yml"; - var northpole = "/Maps/northpole.yml"; - var arena = "/Maps/arena.yml"; - var cove = "/Maps/cove.yml"; - var courthouse = "/Maps/courthouse.yml"; - var lodge = "/Maps/lodge.yml"; - var lab = "/Maps/anomalouslab.yml"; + var depotMap = "/Maps/_NF/POI/cargodepot.yml"; + var tinnia = "/Maps/_NF/POI/tinnia.yml"; + var caseys = "/Maps/_NF/POI/caseyscasino.yml"; + var lpbravo = "/Maps/_NF/POI/lpbravo.yml"; + // var northpole = "/Maps/_NF/POI/northpole.yml"; + var arena = "/Maps/_NF/POI/arena.yml"; + var cove = "/Maps/_NF/POI/cove.yml"; + var courthouse = "/Maps/_NF/POI/courthouse.yml"; + var lodge = "/Maps/_NF/POI/lodge.yml"; + var lab = "/Maps/_NF/POI/anomalouslab.yml"; + var church = "Maps/_NF/POI/beacon.yml"; + var grifty = "Maps/_NF/POI/grifty.yml"; var depotColor = new Color(55, 200, 55); var civilianColor = new Color(55, 55, 200); var lpbravoColor = new Color(200, 55, 55); var factionColor = new Color(255, 165, 0); var mapId = GameTicker.DefaultMap; var depotOffset = _random.NextVector2(3000f, 5000f); - + var tinniaOffset = _random.NextVector2(1100f, 2800f); + var caseysOffset = _random.NextVector2(2250f, 4600f); if (_map.TryLoad(mapId, depotMap, out var depotUids, new MapLoadOptions { Offset = depotOffset @@ -137,9 +140,19 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.SetIFFColor(depotUids[0], depotColor); } + if (_map.TryLoad(mapId, depotMap, out var depotUid3s, new MapLoadOptions + { + Offset = -depotOffset + })) + { + var meta = EnsureComp(depotUid3s[0]); + _meta.SetEntityName(depotUid3s[0], "Cargo Depot B", meta); + _shuttle.SetIFFColor(depotUid3s[0], depotColor); + } + if (_map.TryLoad(mapId, tinnia, out var depotUid2s, new MapLoadOptions { - Offset = _random.NextVector2(1100f, 2800f) + Offset = tinniaOffset })) { var meta = EnsureComp(depotUid2s[0]); @@ -147,14 +160,14 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.SetIFFColor(depotUid2s[0], factionColor); } - if (_map.TryLoad(mapId, depotMap, out var depotUid3s, new MapLoadOptions + if (_map.TryLoad(mapId, church, out var churchUids, new MapLoadOptions { - Offset = -depotOffset + Offset = -tinniaOffset })) { - var meta = EnsureComp(depotUid3s[0]); - _meta.SetEntityName(depotUid3s[0], "Cargo Depot B", meta); - _shuttle.SetIFFColor(depotUid3s[0], depotColor); + var meta = EnsureComp(churchUids[0]); + _meta.SetEntityName(churchUids[0], "Omnichurch Beacon", meta); + _shuttle.SetIFFColor(churchUids[0], factionColor); } if (_map.TryLoad(mapId, lpbravo, out var depotUid4s, new MapLoadOptions @@ -168,15 +181,15 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.AddIFFFlag(depotUid4s[0], IFFFlags.HideLabel); } - if (_map.TryLoad(mapId, northpole, out var northpoleUids, new MapLoadOptions - { - Offset = _random.NextVector2(2150f, 3900f) - })) - { - var meta = EnsureComp(northpoleUids[0]); - _shuttle.SetIFFColor(northpoleUids[0], lpbravoColor); - _shuttle.AddIFFFlag(northpoleUids[0], IFFFlags.HideLabel); - } + // if (_map.TryLoad(mapId, northpole, out var northpoleUids, new MapLoadOptions + // { + // Offset = _random.NextVector2(2150f, 3900f) + // })) + // { + // var meta = EnsureComp(northpoleUids[0]); + // _shuttle.SetIFFColor(northpoleUids[0], lpbravoColor); + // _shuttle.AddIFFFlag(northpoleUids[0], IFFFlags.HideLabel); + // } if (_map.TryLoad(mapId, arena, out var depotUid5s, new MapLoadOptions { @@ -219,14 +232,24 @@ private void OnStartup(RoundStartingEvent ev) _shuttle.SetIFFColor(lodgeUids[0], civilianColor); } - if (_map.TryLoad(mapId, caseys, out var depotUid7s, new MapLoadOptions + if (_map.TryLoad(mapId, caseys, out var caseyUids, new MapLoadOptions { - Offset = _random.NextVector2(2250f, 4600f) + Offset = caseysOffset + })) + { + var meta = EnsureComp(caseyUids[0]); + _meta.SetEntityName(caseyUids[0], "Crazy Casey's Casino", meta); + _shuttle.SetIFFColor(caseyUids[0], factionColor); + } + + if (_map.TryLoad(mapId, grifty, out var griftyUids, new MapLoadOptions + { + Offset = -caseysOffset })) { - var meta = EnsureComp(depotUid7s[0]); - _meta.SetEntityName(depotUid7s[0], "Crazy Casey's Casino", meta); - _shuttle.SetIFFColor(depotUid7s[0], factionColor); + var meta = EnsureComp(griftyUids[0]); + _meta.SetEntityName(griftyUids[0], "Grifty's Gas and Grub", meta); + _shuttle.SetIFFColor(griftyUids[0], factionColor); } if (_map.TryLoad(mapId, courthouse, out var depotUid8s, new MapLoadOptions diff --git a/Content.Server/_NF/PublicTransit/Components/StationTransitComponent.cs b/Content.Server/_NF/PublicTransit/Components/StationTransitComponent.cs new file mode 100644 index 00000000000..6c424ce22ab --- /dev/null +++ b/Content.Server/_NF/PublicTransit/Components/StationTransitComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server._NF.PublicTransit.Components; + +/// +/// Added to a station that is available for public transit. +/// +[RegisterComponent, Access(typeof(PublicTransitSystem))] +public sealed partial class StationTransitComponent : Component +{ +} diff --git a/Content.Server/_NF/PublicTransit/Components/TransitShuttleComponent.cs b/Content.Server/_NF/PublicTransit/Components/TransitShuttleComponent.cs new file mode 100644 index 00000000000..6696db5bdd8 --- /dev/null +++ b/Content.Server/_NF/PublicTransit/Components/TransitShuttleComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server._NF.PublicTransit.Components; + +/// +/// Added to a grid to have it act as an automated public transit bus. +/// Public Transit system will add this procedurally to any grid designated as a 'bus' through the CVAR +/// Mappers may add it to their shuttle if they wish, but this is going to force it's use and function as a public transit bus +/// +[RegisterComponent, Access(typeof(PublicTransitSystem))] +public sealed partial class TransitShuttleComponent : Component +{ + [DataField("nextStation")] + public EntityUid NextStation; + + [DataField("nextTransfer", customTypeSerializer:typeof(TimeOffsetSerializer))] + public TimeSpan NextTransfer; +} diff --git a/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs b/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs new file mode 100644 index 00000000000..f942e22a26e --- /dev/null +++ b/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs @@ -0,0 +1,298 @@ +using Content.Server._NF.PublicTransit.Components; +using Content.Server.Chat.Systems; +using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; +using Content.Server.Shuttles.Systems; +using Content.Shared.GameTicking; +using Content.Shared.NF14.CCVar; +using Content.Shared.Shuttles.Components; +using Content.Shared.Tiles; +using Robust.Server.GameObjects; +using Robust.Shared.Configuration; +using Robust.Shared.Map; +using Robust.Shared.Timing; +using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; + +namespace Content.Server._NF.PublicTransit; + +/// +/// If enabled, spawns a public trasnport grid as definied by cvar, to act as an automatic transit shuttle between designated grids +/// +public sealed class PublicTransitSystem : EntitySystem +{ + [Dependency] private readonly IConfigurationManager _cfgManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly GameTicker _ticker = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly ShuttleSystem _shuttles = default!; + [Dependency] private readonly ChatSystem _chat = default!; + + /// + /// If enabled then spawns the bus and sets up the bus line. + /// + public bool Enabled { get; private set; } + public float FlyTime = 50f; + public int Counter = 0; + public List StationList = new(); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStationStartup); + SubscribeLocalEvent(OnStationShutdown); + SubscribeLocalEvent(OnShuttleStartup); + SubscribeLocalEvent(OnShuttleUnpaused); + SubscribeLocalEvent(OnShuttleArrival); + SubscribeLocalEvent(OnShuttleTag); + SubscribeLocalEvent(OnRoundStart); + + Enabled = _cfgManager.GetCVar(NF14CVars.PublicTransit); + FlyTime = _cfgManager.GetCVar(NF14CVars.PublicTransitFlyTime); + Counter = 0; + StationList.Clear(); + _cfgManager.OnValueChanged(NF14CVars.PublicTransit, SetTransit); + _cfgManager.OnValueChanged(NF14CVars.PublicTransitFlyTime, SetFly); + } + + public void OnRoundStart(RoundStartedEvent args) + { + Counter = 0; + if (Enabled) + SetupPublicTransit(); + } + + public override void Shutdown() + { + base.Shutdown(); + _cfgManager.UnsubValueChanged(NF14CVars.PublicTransitFlyTime, SetFly); + _cfgManager.UnsubValueChanged(NF14CVars.PublicTransit, SetTransit); + } + + + /// + /// Hardcoded snippit to intercept FTL events. It catches the transit shuttle and ensures its looking for the "DockTransit" priority dock. + /// + private void OnShuttleTag(EntityUid uid, TransitShuttleComponent component, ref FTLTagEvent args) + { + if (args.Handled) + return; + + // Just saves mappers forgetting, or ensuring that a non-standard grid forced to be a bus will prioritize the "DockTransit" tagged docks + args.Handled = true; + args.Tag = "DockTransit"; + } + + /// + /// Checks to make sure the grid is on the appropriate playfield, i.e., not in mapping space being worked on. + /// If so, adds the grid to the list of bus stops, but only if its not already there + /// + private void OnStationStartup(EntityUid uid, StationTransitComponent component, ComponentStartup args) + { + if (Transform(uid).MapID == _ticker.DefaultMap) //best solution i could find because of componentinit/mapinit race conditions + { + if (!StationList.Contains(uid)) //if the grid isnt already in + StationList.Add(uid); //add it to the list + } + } + + /// + /// When a bus stop gets deleted in-game, we need to remove it from the list of bus stops, or else we get FTL problems + /// + private void OnStationShutdown(EntityUid uid, StationTransitComponent component, ComponentShutdown args) + { + if (StationList.Contains(uid)) + StationList.Remove(uid); + } + + /// + /// Again, this can and likely should be instructed to mappers to do, but just in case it was either forgotten or we are doing admemes, + /// we make sure that the bus is (mostly) griefer protected and that it cant be hijacked + /// + private void OnShuttleStartup(EntityUid uid, TransitShuttleComponent component, ComponentStartup args) + { + EnsureComp(uid); + EnsureComp(uid); + } + + /// + /// ensuring that pausing the shuttle for any reason doesnt mess up our timing + /// + private void OnShuttleUnpaused(EntityUid uid, TransitShuttleComponent component, ref EntityUnpausedEvent args) + { + component.NextTransfer += args.PausedTime; + } + + private void OnShuttleArrival(EntityUid uid, TransitShuttleComponent comp, ref FTLCompletedEvent args) + { + var consoleQuery = EntityQueryEnumerator(); + + while (consoleQuery.MoveNext(out var consoleUid, out _)) + { + if (Transform(consoleUid).GridUid == uid) + { + var destinationString = MetaData(comp.NextStation).EntityName; + + _chat.TrySendInGameICMessage(consoleUid, Loc.GetString("public-transit-arrival", + ("destination", destinationString), ("waittime", _cfgManager.GetCVar(NF14CVars.PublicTransitWaitTime))), + InGameICChatType.Speak, ChatTransmitRange.HideChat, hideLog: true, checkRadioPrefix: false, + ignoreActionBlocker: true); + } + } + } + + /// + /// Here is our bus stop list handler. Theres probably a better way... + /// First, sets our output to null just in case + /// then, makes sure that our counter/index isnt out of range (reaching the end of the list will force you back to the beginning, like a loop) + /// Then, it checks to make sure that there even is anything in the list + /// and if so, we return the next station, and then increment our counter for the next time its ran + /// + private bool TryGetNextStation(out EntityUid? station) + { + station = null; + + if (Counter >= StationList.Count) + Counter = 0; + + if (!(StationList.Count > 0)) + return false; + + station = StationList[Counter]; + Counter++; + return true; + } + + /// + /// We check the current time every tick, and if its not yet time, we just ignore. + /// If the timer is ready, we send the shuttle on an FTL journey to the destination it has saved + /// then we check our bus list, and if it returns true with the next station, we cache it on the component and reset the timer + /// if it returns false or gives a bad grid, we are just going to FTL back to where we are and try again until theres a proper destination + /// This could cause unintended behavior, if a destination is deleted while it's next in the cache, the shuttle is going to be stuck in FTL space + /// However the timer is going to force it to FTL to the next bus stop + /// If it happens that all bus stops are deleted and we never get a valid stop again, we are going to be stuck FTL'ing forever in ftl space + /// but at that point, theres nowhere to return to anyway + /// + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + var curTime = _timing.CurTime; + + while (query.MoveNext(out var uid, out var comp, out var shuttle)) + { + if (comp.NextTransfer > curTime) + continue; + + var consoleQuery = EntityQueryEnumerator(); + + while (consoleQuery.MoveNext(out var consoleUid, out _)) + { + if (Transform(consoleUid).GridUid == uid) + { + var destinationString = MetaData(comp.NextStation).EntityName; + + _chat.TrySendInGameICMessage(consoleUid, Loc.GetString("public-transit-departure", + ("destination", destinationString), ("flytime", FlyTime)), + InGameICChatType.Speak, ChatTransmitRange.HideChat, hideLog: true, checkRadioPrefix: false, + ignoreActionBlocker: true); + } + } + _shuttles.FTLTravel(uid, shuttle, comp.NextStation, hyperspaceTime: FlyTime, dock: true); + + if (TryGetNextStation(out var nextStation) && nextStation is {Valid : true} destination) + comp.NextStation = destination; + + comp.NextTransfer += TimeSpan.FromSeconds(FlyTime + _cfgManager.GetCVar(NF14CVars.PublicTransitWaitTime)); + } + } + + /// + /// Here is handling a simple CVAR change to enable/disable the system + /// if the cvar is changed to enabled, we setup the transit system + /// if its changed to disabled, we delete any bus grids that exist + /// along with anyone/thing riding the bus + /// you've been warned + /// + private void SetTransit(bool obj) + { + Enabled = obj; + + if (Enabled) + { + SetupPublicTransit(); + } + else + { + var shuttleQuery = AllEntityQuery(); + + while (shuttleQuery.MoveNext(out var uid, out _)) + { + QueueDel(uid); + } + } + } + + /// + /// Simple cache reflection + /// + private void SetFly(float obj) + { + FlyTime = obj; + } + + /// + /// Here is where we handle setting up the transit system, including sanity checks. + /// This is called multiple times, from a few different sources, to ensure that if the system is activated dynamically + /// it will still function as intended + /// + private void SetupPublicTransit() + { + // If a public bus alraedy exists, we simply return. No need to set up the system again. + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var euid, out _)) + { + if (!Deleted(euid)) + return; + } + + // Spawn the bus onto a dummy map + var dummyMap = _mapManager.CreateMap(); + var busMap = _cfgManager.GetCVar(NF14CVars.PublicTransitBusMap); + if (_loader.TryLoad(dummyMap, busMap, out var shuttleUids)) + { + var shuttleComp = Comp(shuttleUids[0]); + // Here we are making sure that the shuttle has the TransitShuttle comp onto it, in case of dynamically changing the bus grid + var transitComp = EnsureComp(shuttleUids[0]); + + //We run our bus station function to try to get a valid station to FTL to. If for some reason, there are no bus stops, we will instead just delete the shuttle + if (TryGetNextStation(out var station) && station is { Valid : true } destination) + { + //we set up a default in case the second time we call it fails for some reason + transitComp.NextStation = destination; + _shuttles.FTLTravel(shuttleUids[0], shuttleComp, destination, hyperspaceTime: 5f, dock: true); + transitComp.NextTransfer = _timing.CurTime + TimeSpan.FromSeconds(_cfgManager.GetCVar(NF14CVars.PublicTransitWaitTime)); + + //since the initial cached value of the next station is actually the one we are 'starting' from, we need to run the + //bus stop list code one more time so that our first trip isnt just Frontier - Frontier + if (TryGetNextStation(out var firstStop) && firstStop is { Valid : true } firstDestination) + transitComp.NextStation = firstDestination; + } + else + { + foreach (var shuttle in shuttleUids) + { + QueueDel(shuttle); + } + } + } + + // the FTL sequence takes a few seconds to warm up and send the grid, so we give the temp dummy map + // some buffer time before calling a self-delete + var timer = AddComp(_mapManager.GetMapEntityId(dummyMap)); + timer.Lifetime = 15f; + } +} diff --git a/Content.Server/_NF/SizeAttribute/SizeAttributeComponent.cs b/Content.Server/_NF/SizeAttribute/SizeAttributeComponent.cs index 0cb88abe587..4c9926c274b 100644 --- a/Content.Server/_NF/SizeAttribute/SizeAttributeComponent.cs +++ b/Content.Server/_NF/SizeAttribute/SizeAttributeComponent.cs @@ -1,8 +1,10 @@ +using Content.Shared._NF.Cloning; + namespace Content.Server.SizeAttribute { [RegisterComponent] - public sealed partial class SizeAttributeComponent : Component + public sealed partial class SizeAttributeComponent : Component, ITransferredByCloning { [DataField("short")] public bool Short = false; diff --git a/Content.Server/_NF/SizeAttribute/SizeAttributeSystem.cs b/Content.Server/_NF/SizeAttribute/SizeAttributeSystem.cs index 34a865d8b78..1dbd2da4c08 100644 --- a/Content.Server/_NF/SizeAttribute/SizeAttributeSystem.cs +++ b/Content.Server/_NF/SizeAttribute/SizeAttributeSystem.cs @@ -3,7 +3,7 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Physics.Systems; -using Content.Server.Item.PseudoItem; +using Content.Shared.Item.PseudoItem; namespace Content.Server.SizeAttribute { diff --git a/Content.Server/_NF/Smuggling/Components/DeadDropComponent.cs b/Content.Server/_NF/Smuggling/Components/DeadDropComponent.cs new file mode 100644 index 00000000000..a0296bc03b7 --- /dev/null +++ b/Content.Server/_NF/Smuggling/Components/DeadDropComponent.cs @@ -0,0 +1,60 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Server._NF.Smuggling.Components; + +/// +/// Store all bounty contracts information. +/// +[RegisterComponent] +[Access(typeof(DeadDropSystem))] +public sealed partial class DeadDropComponent : Component +{ + /// + /// When the next drop will occur. Used internally. + /// + [DataField("nextDrop")] + public TimeSpan? NextDrop; + + /// + /// Minimum wait time in seconds to wait for the next dead drop. + /// + [DataField("minimumCoolDown")] + public int MinimumCoolDown = 900; // 900 / 60 = 15 minutes + + /// + /// Max wait time in seconds to wait for the next dead drop. + /// + [DataField("maximumCoolDown")] + public int MaximumCoolDown = 5400; // 5400 / 60 = 90 minutes + + /// + /// Minimum distance to spawn the drop. + /// + [DataField("minimumDistance")] + public int MinimumDistance = 6500; + + /// + /// Max distance to spawn the drop. + /// + [DataField("maximumDistance")] + public int MaximumDistance = 9900; + + /// + /// The paper prototype to spawn. + /// + [DataField("hintPaper", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string HintPaper = "PaperCargoInvoice"; + + /// + /// Location of the grid to spawn in as the dead drop. + /// + [DataField("dropGrid")] + public string DropGrid = "/Maps/deaddrop.yml"; + + /// + /// The color of your grid. the name should be set by the mapper when mapping. + /// + [DataField("color")] + public Color Color = new Color(225, 15, 155); +} diff --git a/Content.Server/_NF/Smuggling/DeadDropSystem.cs b/Content.Server/_NF/Smuggling/DeadDropSystem.cs new file mode 100644 index 00000000000..18635047f02 --- /dev/null +++ b/Content.Server/_NF/Smuggling/DeadDropSystem.cs @@ -0,0 +1,129 @@ +using System.Text; +using Content.Server._NF.Smuggling.Components; +using Content.Server.Administration.Logs; +using Content.Server.Paper; +using Content.Server.Radio.EntitySystems; +using Content.Server.Shipyard.Systems; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Systems; +using Content.Shared.Database; +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Radio; +using Content.Shared.Shuttles.Components; +using Content.Shared.Verbs; +using Robust.Server.GameObjects; +using Robust.Server.Maps; +using Robust.Shared.Map; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server._NF.Smuggling; + +public sealed class DeadDropSystem : EntitySystem +{ + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly MapLoaderSystem _map = default!; + [Dependency] private readonly MetaDataSystem _meta = default!; + [Dependency] private readonly PaperSystem _paper = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly RadioSystem _radio = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ShipyardSystem _shipyard = default!; + [Dependency] private readonly ShuttleSystem _shuttle = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent>(AddSearchVerb); + } + + private void OnStartup(EntityUid paintingUid, DeadDropComponent component, ComponentStartup _) + { + //set up the timing of the first activation + component.NextDrop = _timing.CurTime + TimeSpan.FromSeconds(_random.Next(component.MinimumCoolDown, component.MaximumCoolDown)); + } + + private void AddSearchVerb(EntityUid uid, DeadDropComponent component, GetVerbsEvent args) + { + if (!args.CanInteract || !args.CanAccess || args.Hands == null || _timing.CurTime < component.NextDrop) + return; + + //here we build our dynamic verb. Using the object's sprite for now to make it more dynamic for the moment. + InteractionVerb searchVerb = new() + { + IconEntity = GetNetEntity(uid), + Act = () => SendDeadDrop(uid, component, args.User, args.Hands), + Text = Loc.GetString("deaddrop-search-text"), + Priority = 3 + }; + + args.Verbs.Add(searchVerb); + } + + //spawning the dead drop. + private void SendDeadDrop(EntityUid uid, DeadDropComponent component, EntityUid user, HandsComponent hands) + { + //simple check to make sure we dont allow multiple activations from a desynced verb window. + if (_timing.CurTime < component.NextDrop) + return; + + //relying entirely on shipyard capabilities, including using the shipyard map to spawn the items and ftl to bring em in + if (_shipyard.ShipyardMap is not MapId shipyardMap) + return; + + var options = new MapLoadOptions + { + LoadMap = false, + }; + + //load whatever grid was specified on the component, either a special dead drop or default + if (!_map.TryLoad(shipyardMap, component.DropGrid, out var gridUids, options)) + return; + + //setup the radar properties + _shuttle.SetIFFColor(gridUids[0], component.Color); + _shuttle.AddIFFFlag(gridUids[0], IFFFlags.HideLabel); + + //this is where we set up all the information that FTL is going to need, including a new null entitiy as a destination target because FTL needs it for reasons? + //dont ask me im just fulfilling FTL requirements. + var dropLocation = _random.NextVector2(component.MinimumDistance, component.MaximumDistance); + var mapId = Transform(user).MapID; + var coords = new MapCoordinates(dropLocation, mapId); + var location = Spawn(null, coords); + + if (TryComp(gridUids[0], out var shuttle)) + { + _shuttle.FTLTravel(gridUids[0], shuttle, location, 5.5f, 35f); + } + + //tattle on the smuggler here, but obfuscate it a bit if possible to just the grid it was summoned from. + var channel = _prototypeManager.Index("Security"); + var sender = Transform(user).GridUid ?? uid; + + _radio.SendRadioMessage(sender, Loc.GetString("deaddrop-security-report"), channel, uid); + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(user)} sent a dead drop to {dropLocation.ToString()} from {ToPrettyString(uid)} at {Transform(uid).Coordinates.ToString()}"); + + // here we are just building a string for the hint paper so that it looks pretty and RP-like on the paper itself. + var dropHint = new StringBuilder(); + dropHint.AppendLine(Loc.GetString("deaddrop-hint-pretext")); + dropHint.AppendLine(); + dropHint.AppendLine(dropLocation.ToString()); + dropHint.AppendLine(); + dropHint.AppendLine(Loc.GetString("deaddrop-hint-posttext")); + + var paper = EntityManager.SpawnEntity(component.HintPaper, Transform(uid).Coordinates); + + _paper.SetContent(paper, dropHint.ToString()); + _meta.SetEntityName(paper, Loc.GetString("deaddrop-hint-name")); + _meta.SetEntityDescription(paper, Loc.GetString("deaddrop-hint-desc")); + _hands.PickupOrDrop(user, paper, handsComp: hands); + + //reset the timer + component.NextDrop = _timing.CurTime + TimeSpan.FromSeconds(_random.Next(component.MinimumCoolDown, component.MaximumCoolDown)); + } +} diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 15dc724ca57..b82dbf4457a 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -50,6 +50,7 @@ public sealed partial class IdCardConsoleComponent : Component "Maintenance", "Medical", "Mercenary", // Frontier + "Pilot", // Frontier "Quartermaster", "Research", "ResearchDirector", diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index fd5976aa0b3..f42d3faa506 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -310,6 +310,10 @@ static Atmospherics() public const float MaxTransferRate = 200; #endregion + + #region Frontier Shuttles + public const float MolesCellShuttle = 2500f; + #endregion } /// diff --git a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs index b130304afc8..5ee25c97b14 100644 --- a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.FixedPoint; using Robust.Shared.GameStates; +using Robust.Shared.Audio; // Frontier namespace Content.Shared.Chemistry.Components; @@ -50,4 +51,18 @@ public sealed partial class SolutionTransferComponent : Component [DataField("canChangeTransferAmount")] [ViewVariables(VVAccess.ReadWrite)] public bool CanChangeTransferAmount { get; set; } = false; + + /// + /// Frontier - Play a sound when transfering liquid + /// + [DataField("playTransferSound")] + [ViewVariables(VVAccess.ReadWrite)] + public bool PlayTransferSound { get; set; } = false; + + /// + /// Frontier - What sound to play when transfering liquid + /// + [DataField("transferSound")] + public SoundSpecifier TransferSound = + new SoundPathSpecifier("/Audio/_NF/Effects/splat.ogg"); } diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index eab373a4630..a4f76df37ae 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -40,6 +40,10 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT [DataField("canCrowbar")] public bool CanCrowbar { get; private set; } + // Delta V + [DataField("canShovel")] public bool CanShovel { get; private set; } + //Delta V + /// /// Whether this tile can be pried by an advanced prying tool if not pryable otherwise. /// diff --git a/Content.Shared/Maps/TileSystem.cs b/Content.Shared/Maps/TileSystem.cs index 19ce0bfb16e..e27d6842b48 100644 --- a/Content.Shared/Maps/TileSystem.cs +++ b/Content.Shared/Maps/TileSystem.cs @@ -86,7 +86,22 @@ public bool CutTile(TileRef tileRef) return DeconstructTile(tileRef); } + // Delta V + public bool DigTile(TileRef tileRef) + { + var tile = tileRef.Tile; + + if (tile.IsEmpty) + return false; + var tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.TypeId]; + + if (!tileDef.CanShovel) + return false; + + return DeconstructTile(tileRef); + } + // Delta V public bool ReplaceTile(TileRef tileref, ContentTileDefinition replacementTile) { if (!TryComp(tileref.GridUid, out var grid)) diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs index c3c712b617b..b3ef631b62b 100644 --- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs +++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Audio; using Content.Shared.Body.Components; @@ -202,10 +202,11 @@ public bool CanStart(EntityUid uid, MaterialReclaimerComponent component) /// public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent component) { - return component.Powered && - component.Enabled && - HasComp(victim) && - HasComp(uid); + return false; // DeltaV - Kinda LRP + // return component.Powered && + // component.Enabled && + // HasComp(victim) && + // HasComp(uid); } /// diff --git a/Content.Shared/Nyanotrasen/Digging/DiggingEvents.cs b/Content.Shared/Nyanotrasen/Digging/DiggingEvents.cs new file mode 100644 index 00000000000..89565da4c86 --- /dev/null +++ b/Content.Shared/Nyanotrasen/Digging/DiggingEvents.cs @@ -0,0 +1,29 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Map; +using Robust.Shared.Serialization; + +namespace Content.Shared.Nyanotrasen.Digging; + + +[Serializable, NetSerializable] +public sealed partial class EarthDiggingDoAfterEvent : DoAfterEvent +{ + public NetCoordinates Coordinates { get; set; } + + private EarthDiggingDoAfterEvent(){} + + public EarthDiggingDoAfterEvent(NetCoordinates coordinates) + { + Coordinates = coordinates; + } + public override DoAfterEvent Clone() + { + return this; + } +} + +[Serializable, NetSerializable] +public sealed class EarthDiggingCancelledEvent : EntityEventArgs +{ + public NetEntity Shovel; +} diff --git a/Content.Shared/Nyanotrasen/Digging/EarthDiggingComponent.cs b/Content.Shared/Nyanotrasen/Digging/EarthDiggingComponent.cs new file mode 100644 index 00000000000..65b6a1b6bf3 --- /dev/null +++ b/Content.Shared/Nyanotrasen/Digging/EarthDiggingComponent.cs @@ -0,0 +1,22 @@ +using System.Threading; +using Content.Shared.Tools; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Nyanotrasen.Digging; + +[RegisterComponent] +public sealed partial class EarthDiggingComponent : Component +{ + [ViewVariables] + [DataField("toolComponentNeeded")] + public bool ToolComponentNeeded = true; + + [ViewVariables] + [DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer))] + public string QualityNeeded = "Digging"; + + [ViewVariables] + [DataField("delay")] + public float Delay = 2f; + +} diff --git a/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs b/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs new file mode 100644 index 00000000000..c117944e4f3 --- /dev/null +++ b/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared._NF.Cloning; + +namespace Content.Shared.Item.PseudoItem; +/// +/// For entities that behave like an item under certain conditions, +/// but not under most conditions. +/// +[RegisterComponent] +public sealed partial class PseudoItemComponent : Component, ITransferredByCloning +{ + [DataField("size")] + public int Size = 120; + + public bool Active = false; + + [DataField] + public EntityUid? SleepAction; +} diff --git a/Content.Shared/Nyanotrasen/Item/PseudoItemInsertDoAfterEvent.cs b/Content.Shared/Nyanotrasen/Item/PseudoItemInsertDoAfterEvent.cs new file mode 100644 index 00000000000..4b34118f377 --- /dev/null +++ b/Content.Shared/Nyanotrasen/Item/PseudoItemInsertDoAfterEvent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.Serialization; +using Content.Shared.DoAfter; + +namespace Content.Shared.Item.PseudoItem; + + +[Serializable, NetSerializable] +public sealed partial class PseudoItemInsertDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 77e0d60645c..ba138dd3a12 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -27,6 +27,8 @@ public sealed partial class HumanoidCharacterProfile : ICharacterProfile public const int MaxNameLength = 32; public const int MaxDescLength = 512; + public const int DefaultBalance = 25000; + private readonly Dictionary _jobPriorities; private readonly List _antagPreferences; private readonly List _traitPreferences; @@ -112,7 +114,7 @@ public HumanoidCharacterProfile() : this( 18, Sex.Male, Gender.Male, - 25000, + DefaultBalance, new HumanoidCharacterAppearance(), ClothingPreference.Jumpsuit, BackpackPreference.Backpack, @@ -140,7 +142,7 @@ public static HumanoidCharacterProfile DefaultWithSpecies(string species = Share 18, Sex.Male, Gender.Male, - 25000, + DefaultBalance, HumanoidCharacterAppearance.DefaultWithSpecies(species), ClothingPreference.Jumpsuit, BackpackPreference.Backpack, @@ -154,7 +156,7 @@ public static HumanoidCharacterProfile DefaultWithSpecies(string species = Share } // TODO: This should eventually not be a visual change only. - public static HumanoidCharacterProfile Random(HashSet? ignoredSpecies = null) + public static HumanoidCharacterProfile Random(HashSet? ignoredSpecies = null, int balance = DefaultBalance) { var prototypeManager = IoCManager.Resolve(); var random = IoCManager.Resolve(); @@ -165,17 +167,16 @@ public static HumanoidCharacterProfile Random(HashSet? ignoredSpecies = .ToArray() ).ID; - return RandomWithSpecies(species); + return RandomWithSpecies(species: species, balance: balance); } - public static HumanoidCharacterProfile RandomWithSpecies(string species = SharedHumanoidAppearanceSystem.DefaultSpecies) + public static HumanoidCharacterProfile RandomWithSpecies(string species = SharedHumanoidAppearanceSystem.DefaultSpecies, int balance = DefaultBalance) { var prototypeManager = IoCManager.Resolve(); var random = IoCManager.Resolve(); var sex = Sex.Unsexed; var age = 18; - var balance = 25000; if (prototypeManager.TryIndex(species, out var speciesPrototype)) { sex = random.Pick(speciesPrototype.Sexes); diff --git a/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs b/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs index 95fcac3f857..b1072735618 100644 --- a/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs +++ b/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs @@ -12,13 +12,18 @@ public sealed class ShipyardConsoleInterfaceState : BoundUserInterfaceState public readonly bool IsTargetIdPresent; public readonly byte UiKey; + public readonly List ShipyardPrototypes; + public readonly string ShipyardName; + public ShipyardConsoleInterfaceState( int balance, bool accessGranted, string? shipDeedTitle, int shipSellValue, bool isTargetIdPresent, - byte uiKey) + byte uiKey, + List shipyardPrototypes, + string shipyardName) { Balance = balance; AccessGranted = accessGranted; @@ -26,5 +31,7 @@ public ShipyardConsoleInterfaceState( ShipSellValue = shipSellValue; IsTargetIdPresent = isTargetIdPresent; UiKey = uiKey; + ShipyardPrototypes = shipyardPrototypes; + ShipyardName = shipyardName; } } diff --git a/Content.Shared/Shipyard/Components/ShipyardListingComponent.cs b/Content.Shared/Shipyard/Components/ShipyardListingComponent.cs new file mode 100644 index 00000000000..2aa1df67534 --- /dev/null +++ b/Content.Shared/Shipyard/Components/ShipyardListingComponent.cs @@ -0,0 +1,17 @@ +using Content.Shared.Shipyard.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Shipyard.Components; + +/// +/// When applied to a shipyard console, adds all specified shuttles to the list of sold shuttles. +/// +[RegisterComponent] +public sealed partial class ShipyardListingComponent : Component +{ + /// + /// All VesselPrototype IDs that should be listed in this shipyard console. + /// + [ViewVariables, DataField(customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Shuttles = new(); +} diff --git a/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs b/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs index 4749f6be7ed..c025c9feacc 100644 --- a/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs +++ b/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs @@ -39,6 +39,13 @@ public sealed class VesselPrototype : IPrototype [DataField("group")] public string Group = string.Empty; + /// Frontier - Add this field for the MapChecker script. + /// + /// The MapChecker override group for this vessel. + /// + [DataField("mapchecker_group_override")] + public string MapcheckerGroup = string.Empty; + /// /// Relative directory path to the given shuttle, i.e. `/Maps/Shuttles/yourshittle.yml` /// diff --git a/Content.Shared/Shipyard/SharedShipyardSystem.cs b/Content.Shared/Shipyard/SharedShipyardSystem.cs index 08aa0ce2970..17a153aae75 100644 --- a/Content.Shared/Shipyard/SharedShipyardSystem.cs +++ b/Content.Shared/Shipyard/SharedShipyardSystem.cs @@ -7,20 +7,34 @@ namespace Content.Shared.Shipyard; +// Note: when adding a new ui key, don't forget to modify the dictionary in SharedShipyardSystem [NetSerializable, Serializable] public enum ShipyardConsoleUiKey : byte { Shipyard, Security, BlackMarket, - Expedition - // Syndicate - //Not currently implemented. Could be used in the future to give other factions a variety of shuttle options, - //like nukies, syndicate, or for evac purchases. + Expedition, + Scrap, + // Do not add any ship to this key. Shipyards using it are inherently empty and are populated using the ShipyardListingComponent. + Custom } public abstract class SharedShipyardSystem : EntitySystem { + /// + /// Maps entries of the enum to how they're specified in shuttle prototype files + /// + public static readonly Dictionary ShipyardGroupMapping = new() + { + {ShipyardConsoleUiKey.Shipyard, "Civilian"}, + {ShipyardConsoleUiKey.Security, "Security"}, + {ShipyardConsoleUiKey.BlackMarket, "BlackMarket"}, + {ShipyardConsoleUiKey.Expedition, "Expedition"}, + {ShipyardConsoleUiKey.Scrap, "Scrap"}, + {ShipyardConsoleUiKey.Custom, ""} + }; + [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; public override void Initialize() diff --git a/Content.Shared/Shuttles/Components/IFFComponent.cs b/Content.Shared/Shuttles/Components/IFFComponent.cs index 24f06e93d4f..97c03260a7f 100644 --- a/Content.Shared/Shuttles/Components/IFFComponent.cs +++ b/Content.Shared/Shuttles/Components/IFFComponent.cs @@ -38,13 +38,18 @@ public enum IFFFlags : byte /// /// Should the label for this grid be hidden at all ranges. /// - HideLabel, + HideLabel = 1, /// /// Should the grid hide entirely (AKA full stealth). /// Will also hide the label if that is not set. /// - Hide, + Hide = 2, + + /// + /// Is this a player shuttle + /// + IsPlayerShuttle = 4, // TODO: Need one that hides its outline, just replace it with a bunch of triangles or lines or something. } diff --git a/Content.Shared/Storage/Components/MagnetPickupComponent.cs b/Content.Shared/Storage/Components/MagnetPickupComponent.cs index 68d3029be82..2e046a0fc1d 100644 --- a/Content.Shared/Storage/Components/MagnetPickupComponent.cs +++ b/Content.Shared/Storage/Components/MagnetPickupComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Inventory; -namespace Content.Server.Storage.Components; +// namespace Content.Server.Storage.Components; +namespace Content.Shared.Storage.Components; // Frontier /// /// Applies an ongoing pickup area around the attached entity. @@ -14,27 +15,17 @@ public sealed partial class MagnetPickupComponent : Component [ViewVariables(VVAccess.ReadWrite), DataField("range")] public float Range = 1f; - /// - /// Whether the magnet is attached to a fixture (e.g. ore box) or not (e.g. ore bag) - /// - [ViewVariables(VVAccess.ReadWrite), DataField("isFixture")] - public bool IsFixture = false; - /// /// What container slot the magnet needs to be in to work (if not a fixture) /// [ViewVariables(VVAccess.ReadWrite), DataField("slotFlags")] public SlotFlags SlotFlags = SlotFlags.BELT; - /// - /// Is magnet active, when fixture is anchored? - /// - [ViewVariables(VVAccess.ReadWrite), DataField("pickupWhenAnchored")] - public bool PickupWhenAnchored = true; + // Everything below this line is from Frontier /// - /// Is magnet active, when fixture is not anchored? + /// Is the magnet currently enabled? /// - [ViewVariables(VVAccess.ReadWrite), DataField("pickupWhenNotAnchored")] - public bool PickupWhenNotAnchored = true; + [ViewVariables(VVAccess.ReadWrite), DataField("magnetEnabled")] + public bool MagnetEnabled = true; } diff --git a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs index a038e16620d..bda4453b1d4 100644 --- a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs +++ b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs @@ -1,8 +1,14 @@ -using Content.Server.Storage.Components; +// using Content.Server.Storage.Components; +using Content.Shared.Clothing.Components; // Frontier +using Content.Shared.Examine; // Frontier +using Content.Shared.Hands.Components; // Frontier using Content.Shared.Inventory; +using Content.Shared.Verbs; // Frontier +using Content.Shared.Storage.Components; // Frontier using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Timing; +using Robust.Shared.Utility; // Frontier namespace Content.Shared.Storage.EntitySystems; @@ -27,6 +33,8 @@ public override void Initialize() _physicsQuery = GetEntityQuery(); SubscribeLocalEvent(OnMagnetMapInit); SubscribeLocalEvent(OnMagnetUnpaused); + SubscribeLocalEvent(OnExamined); // Frontier + SubscribeLocalEvent>(AddToggleMagnetVerb); // Frontier } private void OnMagnetUnpaused(EntityUid uid, MagnetPickupComponent component, ref EntityUnpausedEvent args) @@ -39,6 +47,48 @@ private void OnMagnetMapInit(EntityUid uid, MagnetPickupComponent component, Map component.NextScan = _timing.CurTime; } + // Frontier, used to add the magnet toggle to the context menu + private void AddToggleMagnetVerb(EntityUid uid, MagnetPickupComponent component, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + if (!HasComp(args.User)) + return; + + AlternativeVerb verb = new() + { + Act = () => + { + ToggleMagnet(uid, component); + }, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/Spare/poweronoff.svg.192dpi.png")), + Text = Loc.GetString("magnet-pickup-component-toggle-verb"), + Priority = 3 + }; + + args.Verbs.Add(verb); + } + + // Frontier, used to show the magnet state on examination + private void OnExamined(EntityUid uid, MagnetPickupComponent component, ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("magnet-pickup-component-on-examine-main", + ("stateText", Loc.GetString(component.MagnetEnabled + ? "magnet-pickup-component-magnet-on" + : "magnet-pickup-component-magnet-off")))); + } + + // Frontier, used to toggle the magnet on the ore bag/box + public bool ToggleMagnet(EntityUid uid, MagnetPickupComponent comp) + { + var query = EntityQueryEnumerator(); + comp.MagnetEnabled = !comp.MagnetEnabled; + + return comp.MagnetEnabled; + } + + public override void Update(float frameTime) { base.Update(frameTime); @@ -56,18 +106,19 @@ public override void Update(float frameTime) if (storage.StorageUsed >= storage.StorageCapacityMax) continue; + // Frontier - magnet disabled + if (!comp.MagnetEnabled) + continue; - if (!comp.IsFixture) + // Frontier - is ore bag on belt? + if (HasComp(uid)) { if (!_inventory.TryGetContainingSlot(uid, out var slotDef)) continue; - + if ((slotDef.SlotFlags & comp.SlotFlags) == 0x0) continue; } - // Magnet disabled in current fixture anchor state - else if (xform.Anchored && !comp.PickupWhenAnchored || !xform.Anchored && !comp.PickupWhenNotAnchored) - continue; var parentUid = xform.ParentUid; var playedSound = false; diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5faec99fd5b..efd77b1e91a 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Implants.Components; using Content.Shared.Interaction; using Content.Shared.Item; +using Content.Shared.Item.PseudoItem; using Content.Shared.Lock; using Content.Shared.Placeable; using Content.Shared.Popups; @@ -439,6 +440,9 @@ public void TransferEntities(EntityUid source, EntityUid target, EntityUid? user foreach (var entity in entities.ToArray()) { + if (HasComp(entity)) // Nyanotrasen - They dont transfer properly + continue; + Insert(target, entity, out _, user: user, targetComp, playSound: false); } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 6f764bb9f4e..d0adcccf2ee 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Gravity; using Content.Shared.Hands; using Content.Shared.Hands.Components; +using Content.Shared.Item; // Delta-V: Felinids in duffelbags can't shoot. using Content.Shared.Popups; using Content.Shared.Projectiles; using Content.Shared.Tag; @@ -128,7 +129,8 @@ private void OnShootRequest(RequestShootEvent msg, EntitySessionEventArgs args) if (user == null || !_combatMode.IsInCombatMode(user) || - !TryGetGun(user.Value, out var ent, out var gun)) + !TryGetGun(user.Value, out var ent, out var gun) || + HasComp(user)) // Delta-V: Felinids in duffelbags can't shoot. { return; } diff --git a/Content.Shared/_NF/CCVars/CCVars.cs b/Content.Shared/_NF/CCVars/CCVars.cs index e26dbb89708..bcdad5ef8f4 100644 --- a/Content.Shared/_NF/CCVars/CCVars.cs +++ b/Content.Shared/_NF/CCVars/CCVars.cs @@ -16,4 +16,43 @@ public sealed class NF14CVars /// public static readonly CVarDef RespawnTime = CVarDef.Create("nf14.respawn.time", 600.0f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether or not returning from cryosleep is enabled. + /// + public static readonly CVarDef CryoReturnEnabled = + CVarDef.Create("nf14.uncryo.enabled", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// The time in seconds after which a cryosleeping body is considered expired and can be deleted from the storage map. + /// + public static readonly CVarDef CryoExpirationTime = + CVarDef.Create("nf14.uncryo.maxtime", 60 * 60f, CVar.SERVER | CVar.REPLICATED); + + /* + * Public Transit + */ + /// + /// Whether public transit is enabled. + /// + public static readonly CVarDef PublicTransit = + CVarDef.Create("nf14.publictransit.enabled", true, CVar.SERVERONLY); + + /// + /// The map to use for the public bus. + /// + public static readonly CVarDef PublicTransitBusMap = + CVarDef.Create("nf14.publictransit.bus_map", "/Maps/_NF/Shuttles/publicts.yml", CVar.SERVERONLY); + + /// + /// The amount of time the bus waits at a station. + /// + public static readonly CVarDef PublicTransitWaitTime = + CVarDef.Create("nf14.publictransit.wait_time", 150f, CVar.SERVERONLY); + + /// + /// The amount of time the flies through FTL space. + /// + public static readonly CVarDef PublicTransitFlyTime = + CVarDef.Create("nf14.publictransit.fly_time", 145f, CVar.SERVERONLY); } diff --git a/Content.Shared/_NF/Cloning/ITransferredByCloning.cs b/Content.Shared/_NF/Cloning/ITransferredByCloning.cs new file mode 100644 index 00000000000..e51136e9f16 --- /dev/null +++ b/Content.Shared/_NF/Cloning/ITransferredByCloning.cs @@ -0,0 +1,9 @@ +namespace Content.Shared._NF.Cloning; + +/// +/// Indicates that this Component should be transferred to the new entity when the entity is cloned (for example, using a cloner) +/// +public interface ITransferredByCloning +{ +} + diff --git a/Content.Shared/_NF/Clothing/Components/EmitsSoundOnMoveComponent.cs b/Content.Shared/_NF/Clothing/Components/EmitsSoundOnMoveComponent.cs new file mode 100644 index 00000000000..ef61c49f1ad --- /dev/null +++ b/Content.Shared/_NF/Clothing/Components/EmitsSoundOnMoveComponent.cs @@ -0,0 +1,35 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Map; + +namespace Content.Shared._NF.Clothing.Components; + +/// +/// Indicates that the clothing entity emits sound when it moves. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class EmitsSoundOnMoveComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true), AutoNetworkedField] + public SoundSpecifier SoundCollection = default!; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("requiresGravity"), AutoNetworkedField] + public bool RequiresGravity = true; + + [ViewVariables(VVAccess.ReadOnly)] + public EntityCoordinates LastPosition = EntityCoordinates.Invalid; + + /// + /// The distance moved since the played sound. + /// + [ViewVariables(VVAccess.ReadOnly)] + public float SoundDistance = 0f; + + /// + /// Whether this item is equipped in a inventory item slot. + /// + [ViewVariables(VVAccess.ReadOnly)] + public bool IsSlotValid = true; +} diff --git a/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs b/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs new file mode 100644 index 00000000000..a84ef9ef99d --- /dev/null +++ b/Content.Shared/_NF/Clothing/Systems/EmitsSoundOnMoveSystem.cs @@ -0,0 +1,99 @@ +using System.Numerics; +using Content.Shared._NF.Clothing.Components; +using Content.Shared.Clothing.Components; +using Content.Shared.Gravity; +using Content.Shared.Inventory; +using Content.Shared.Inventory.Events; +using Content.Shared.Mobs.Components; +using Content.Shared.Movement.Components; +using Robust.Shared.Physics.Components; +using Robust.Shared.Timing; + +namespace Content.Shared._NF.Clothing.Systems; + +public sealed class EmitsSoundOnMoveSystem : EntitySystem +{ + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedMapSystem _grid = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + private EntityQuery _moverQuery; + private EntityQuery _physicsQuery; + private EntityQuery _xformQuery; + private EntityQuery _clothingQuery; + + public override void Initialize() + { + _moverQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + _clothingQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); + } + + private void OnEquipped(EntityUid uid, EmitsSoundOnMoveComponent component, GotEquippedEvent args) + { + component.IsSlotValid = !args.SlotFlags.HasFlag(SlotFlags.POCKET); + } + + private void OnUnequipped(EntityUid uid, EmitsSoundOnMoveComponent component, GotUnequippedEvent args) + { + component.IsSlotValid = true; + } + + public override void Update(float frameTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp)) + { + UpdateSound(uid, comp); + } + query.Dispose(); + } + + private void UpdateSound(EntityUid uid, EmitsSoundOnMoveComponent component) + { + if (!_xformQuery.TryGetComponent(uid, out var xform) || + !_physicsQuery.TryGetComponent(uid, out var physics)) + return; + + // Space does not transmit sound + if (xform.GridUid == null) + return; + + if (component.RequiresGravity && _gravity.IsWeightless(uid, physics, xform)) + return; + + var parent = xform.ParentUid; + + var isWorn = parent is { Valid: true } && + _clothingQuery.TryGetComponent(uid, out var clothing) + && clothing.InSlot != null + && component.IsSlotValid; + // If this entity is worn by another entity, use that entity's coordinates + var coordinates = isWorn ? Transform(parent).Coordinates : xform.Coordinates; + var distanceNeeded = (isWorn && _moverQuery.TryGetComponent(parent, out var mover) && mover.Sprinting) + ? 1.5f // The parent is a mob that is currently sprinting + : 2f; // The parent is not a mob or is not sprinting + + if (!coordinates.TryDistance(EntityManager, component.LastPosition, out var distance) || distance > distanceNeeded) + component.SoundDistance = distanceNeeded; + else + component.SoundDistance += distance; + + component.LastPosition = coordinates; + if (component.SoundDistance < distanceNeeded) + return; + component.SoundDistance -= distanceNeeded; + + var sound = component.SoundCollection; + var audioParams = sound.Params + .WithVolume(sound.Params.Volume) + .WithVariation(sound.Params.Variation ?? 0f); + + _audio.PlayPredicted(sound, uid, uid, audioParams); + } +} diff --git a/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs b/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs new file mode 100644 index 00000000000..eca2a460fd0 --- /dev/null +++ b/Content.Shared/_NF/CryoSleep/SharedCryoSleepSystem.cs @@ -0,0 +1,71 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.CryoSleep; + +public abstract partial class SharedCryoSleepSystem : EntitySystem +{ + /// + /// Raised on a cryopod that an entity was shoved into, + /// only if the mind of that entity has not decided to proceed with cryosleep or cancel it. + /// + /// The target and the user of this event is the cryopod, and the "used" is the body put into it. + /// + [Serializable, NetSerializable] + public sealed partial class CryoStoreDoAfterEvent : SimpleDoAfterEvent + { + } + + /// + /// Sent from the server to the client when the server wants to know if it has a body that is cryosleeping or not. + /// + [Serializable, NetSerializable] + public sealed class GetStatusMessage : EntityEventArgs + { + /// + /// Sent from the server to the client in response to a GetStatusMessage. + /// + [Serializable, NetSerializable] + public sealed class Response : EntityEventArgs + { + public readonly bool HasCryosleepingBody; + + public Response(bool hasCryosleepingBody) + { + HasCryosleepingBody = hasCryosleepingBody; + } + } + } + + /// + /// Sent from the client to the server when the client, controlling a ghost, wants to return to a cryosleeping body. + /// + [Serializable, NetSerializable] + public sealed class WakeupRequestMessage : EntityEventArgs + { + /// + /// Sent from the server to the client in response to a WakeupRequestMessage. + /// + [Serializable, NetSerializable] + public sealed class Response : EntityEventArgs + { + public readonly ReturnToBodyStatus Status; + + public Response(ReturnToBodyStatus status) + { + Status = status; + } + } + } + + [Serializable, NetSerializable] + public enum ReturnToBodyStatus : byte + { + Success, + Occupied, + BodyMissing, + CryopodMissing, + NotAGhost, + Disabled + } +} diff --git a/Resources/Audio/Nyanotrasen/Items/attributions.yml b/Resources/Audio/Nyanotrasen/Items/attributions.yml new file mode 100644 index 00000000000..294cfe38bc4 --- /dev/null +++ b/Resources/Audio/Nyanotrasen/Items/attributions.yml @@ -0,0 +1,4 @@ +- files: ["shovel_dig.ogg"] + license: "CC-BY-3.0" + copyright: "https://freesound.org/people/cameronmusic/" + source: "https://freesound.org/people/cameronmusic/sounds/138411/" diff --git a/Resources/Audio/Nyanotrasen/Items/shovel_dig.ogg b/Resources/Audio/Nyanotrasen/Items/shovel_dig.ogg new file mode 100644 index 00000000000..16cf42eb9ad Binary files /dev/null and b/Resources/Audio/Nyanotrasen/Items/shovel_dig.ogg differ diff --git a/Resources/Audio/_NF/Effects/splat.ogg b/Resources/Audio/_NF/Effects/splat.ogg new file mode 100644 index 00000000000..c66720197e7 Binary files /dev/null and b/Resources/Audio/_NF/Effects/splat.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c655921ff1b..0ea17c22d6d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -2263,3 +2263,586 @@ Entries: across the sector! id: 4668 time: '2023-12-11T18:33:34.0000000+00:00' +- author: Cheackraze + changes: + - type: Add + message: >- + Syndicate Corps have started hiding smuggling containers on the + frontier. Visit local points of interest to find clues. + id: 4669 + time: '2023-12-15T20:39:18.0000000+00:00' +- author: Qulibly + changes: + - type: Add + message: >- + Added new Argenti Type 20 revolver. You can find it in LiberationVend. + Any Gunslinger will love it. + id: 4670 + time: '2023-12-15T21:57:29.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + ICR Chisel, NC Mission, NC Prospector, NR Sparrow were retrofitted with + atmos setups. + id: 4671 + time: '2023-12-17T17:25:31.0000000+00:00' +- author: mnemosynium + changes: + - type: Fix + message: NC Loader is no longer freezing by default. + - type: Remove + message: Removed security mask from inside Loader's walls. + id: 4672 + time: '2023-12-17T17:26:29.0000000+00:00' +- author: InsanityMoose + changes: + - type: Add + message: The shuttle console radar now has an option to hide shuttle labels + id: 4673 + time: '2023-12-17T17:28:48.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: >- + Added crossbow with assortment of bolts and special quiver, new items + can be crafted. + id: 4674 + time: '2023-12-17T18:55:39.0000000+00:00' +- author: RealIHaveANameOfficial + changes: + - type: Tweak + message: >- + The Anomalous lab has been heavily reinforced due to ongoing reports of + destructive looters. + id: 4675 + time: '2023-12-17T19:02:53.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: >- + Cryosleep chambers now allow you to shove others inside! Do not try to + put dead bodies inside, though. + - type: Add + message: You can now wake up from cryosleep as a ghost. + id: 4676 + time: '2023-12-17T22:17:30.0000000+00:00' +- author: Cheackraze + changes: + - type: Tweak + message: >- + Security eavesdropping has been curtailed, smuggler drops will reveal + less info to security. + id: 4677 + time: '2023-12-17T22:36:59.0000000+00:00' +- author: Ubaser + changes: + - type: Add + message: >- + Added the NR-Investigator, a small salvage shuttle designed for + researching artifacts. + id: 4678 + time: '2023-12-18T21:25:04.0000000+00:00' +- author: crystalHex + changes: + - type: Add + message: Added DYS Dragonfly - a salvage/cargo freighter with a chemistry wing + id: 4679 + time: '2023-12-18T21:43:29.0000000+00:00' +- author: Leander + changes: + - type: Add + message: >- + Nanotrasen just ended building their newest prisoner transport ship, now + expedition capable! + id: 4680 + time: '2023-12-18T22:10:03.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: >- + Added new crates to cargo! surgery, janitorial supplies B, bulk space + cleaner, janitorial trolley & cart, freezer + - type: Tweak + message: >- + Thrusters and gyros will now arrive in crates in cargo and wont be stuck + to the floor. + id: 4681 + time: '2023-12-21T18:21:40.0000000+00:00' +- author: dvir001 + changes: + - type: Add + message: Added the STC stamp. + id: 4682 + time: '2023-12-21T18:22:52.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Air Alarm parameters are now can be altered by Captains. + id: 4683 + time: '2023-12-21T18:24:11.0000000+00:00' +- author: mnemosynium + changes: + - type: Fix + message: Removed access restriction from the bar on the Barge + id: 4684 + time: '2023-12-21T18:24:49.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Fix + message: Cryopods should now correctly accept SSD people. + id: 4685 + time: '2023-12-21T19:39:34.0000000+00:00' +- author: DustScoundrel + changes: + - type: Add + message: Added Beacon Outpost POI for the cult-inclined. + id: 4686 + time: '2023-12-21T20:16:09.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: Added the McCargo ship, get your very own McCargo franchisee today! + id: 4687 + time: '2023-12-21T21:07:38.0000000+00:00' +- author: DustScoundrel + changes: + - type: Add + message: Added the Garden, a small botany vessel. + id: 4688 + time: '2023-12-21T21:08:09.0000000+00:00' +- author: DustScoundrel + changes: + - type: Add + message: Added Grifty's Gas and Grub bluespace POI + id: 4689 + time: '2023-12-21T21:58:47.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added NM Searchlight - a small search and rescue vessel. + id: 4690 + time: '2023-12-21T22:15:01.0000000+00:00' +- author: crystalHex + changes: + - type: Tweak + message: Minor tweaks to the Pulse. + id: 4691 + time: '2023-12-21T22:19:44.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Added more condiments to the condiments stand + id: 4692 + time: '2023-12-21T22:28:11.0000000+00:00' +- author: Wolfhauler + changes: + - type: Add + message: Added the Spectre + id: 4693 + time: '2023-12-22T00:18:24.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added the "Opportunity" prison expedition ship. + id: 4694 + time: '2023-12-22T02:19:37.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added SR carapace! + - type: Tweak + message: Removed speed penalty from captain's carapace! + id: 4695 + time: '2023-12-23T21:09:01.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + PietyVend holds a bigger stock and can be restocked like other cloth + vendomats. + id: 4696 + time: '2023-12-24T01:09:59.0000000+00:00' +- author: FoxxoTrystan + changes: + - type: Tweak + message: >- + Security are unable to pick detailed signals from arriving BlackMarket + Shipyards. + id: 4697 + time: '2023-12-24T01:11:10.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Junk food price adjust to inflation. + id: 4698 + time: '2023-12-24T03:25:59.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + The Bison and SV ships moved to the scrapyard shipyard, possibly found + in the Frontier maints. + id: 4699 + time: '2023-12-24T13:56:42.0000000+00:00' +- author: Cheackraze + changes: + - type: Add + message: >- + Added the prisoner role to a select few security ships. Whitelisted + only. + id: 4700 + time: '2023-12-24T15:51:57.0000000+00:00' +- author: crystalHex + changes: + - type: Tweak + message: >- + The magnet on the ore box (and ore bag) can now be toggled through the + context menu. + - type: Tweak + message: The ore box can now go under plastic flaps. + id: 4701 + time: '2023-12-24T15:59:51.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added new clothes for Chaplains. Check nearest PietyVend. + id: 4702 + time: '2023-12-25T00:06:07.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added weapon racks. Can be constructed. + id: 4703 + time: '2023-12-25T10:53:06.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Voice masks over radio shows you as "Unknown". + id: 4704 + time: '2023-12-25T11:22:17.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: Added a new wearable bell item to the theater vend. + id: 4705 + time: '2023-12-26T16:28:47.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added NC Lantern - a medium-sized ship for Frontier Chaplains. + id: 4706 + time: '2023-12-26T23:44:44.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added kegs. Bartenders rejoice. + id: 4707 + time: '2023-12-27T13:48:52.0000000+00:00' +- author: Cheackraze + changes: + - type: Tweak + message: Smuggling crate chance lowered from 50% to ~42% + - type: Tweak + message: Dead drop timer raised from 10-40 minutes to 15-45 minutes. + id: 4708 + time: '2023-12-27T14:00:13.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Tweaked Bocadillo - added atmos and drain. + id: 4709 + time: '2023-12-29T01:00:20.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Tweaked Honker - added atmos setup. + id: 4710 + time: '2023-12-29T01:17:00.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: Mercenary groups started to setup bases on lava planets. + id: 4711 + time: '2023-12-29T02:36:11.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added notice boards. Accessible through construction menu. + id: 4712 + time: '2023-12-29T11:40:29.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Tweak + message: >- + Crematoriums can no longer be used to cremate alive mobs and players + with an active soul + - type: Tweak + message: >- + Cloning now preserves your size. Small creatures will no longer become + massive after being cloned! + id: 4713 + time: '2023-12-29T17:09:12.0000000+00:00' +- author: dvir001 + changes: + - type: Add + message: Added squeeze bottles for ketchup & mustard. + id: 4714 + time: '2023-12-30T09:42:41.0000000+00:00' +- author: crystalHex + changes: + - type: Tweak + message: The EngiVend now sells geiger counters and holofan projectors. + - type: Tweak + message: The Vendomat now sells glass beakers. + id: 4715 + time: '2023-12-30T16:59:00.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: Added digging dirt. + id: 4716 + time: '2024-01-01T02:51:14.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Tweaked Mail Truck - added rudimentary atmos, replaced APUs with + P.A.C.M.A.N. + id: 4717 + time: '2024-01-01T03:02:00.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Tweaked Pulse - replaced APUs with P.A.C.M.A.N. + id: 4718 + time: '2024-01-01T03:05:22.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added station guard jumpsuit and jumpskirt. + id: 4719 + time: '2024-01-01T17:00:12.0000000+00:00' +- author: GingerAvalanche + changes: + - type: Add + message: Shuttle console display UI now shows ship name and designation + id: 4720 + time: '2024-01-01T18:06:11.0000000+00:00' +- author: GhostPrince + changes: + - type: Add + message: Janigang has arrived in your lobby screens! + id: 4721 + time: '2024-01-01T22:42:45.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Felinids now meow out their words. They can also sigh now. + - type: Add + message: Added a fluffy tail for the felinids. + - type: Add + message: Vulpkanins can now Sigh, Sneeze, Cough, Cry and Whistle. + id: 4722 + time: '2024-01-02T01:24:39.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Tweaked Pioneer - replaced ore processor with ore boxes. Note that raw + plasma ore can be used as a fuel for generator. + id: 4723 + time: '2024-01-02T01:39:45.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added Weapon Racks variations - Security, Command, Salvage, Mercenary. + - type: Fix + message: Fixed Weapon Rack acting as lockers in disguise. + id: 4724 + time: '2024-01-02T23:06:46.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added semitransparent plastic kegs. + id: 4725 + time: '2024-01-02T23:07:51.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Felinds can now Sneezes. Cough, Cry and Whistle. + id: 4726 + time: '2024-01-02T23:26:26.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: You can customize you clown shoes. Check out construction menu. + id: 4727 + time: '2024-01-02T23:42:17.0000000+00:00' +- author: dvir01 + changes: + - type: Add + message: Happy honk vend now sells Bulk Mystery Figurines box. + id: 4728 + time: '2024-01-03T00:21:10.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: >- + Added an IFF filtering feature to the shuttle console UI, allowing to + search for specific IFFs + id: 4729 + time: '2024-01-04T05:02:27.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added wall-mounted suit storage units. + id: 4730 + time: '2024-01-06T14:11:09.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Tweaked Barge - added waste loop to atmos. + id: 4731 + time: '2024-01-07T16:12:03.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Tweak + message: >- + The shipyard console on the Empress was changed to only sell small + security ships + - type: Tweak + message: >- + The Cleric, the Rogue and the Fighter are now only available from the + Empresses shipyard console. + id: 4732 + time: '2024-01-07T19:28:57.0000000+00:00' +- author: TsjipTsjip + changes: + - type: Tweak + message: Praeda was reworked. + id: 4733 + time: '2024-01-07T19:48:50.0000000+00:00' +- author: TsjipTsjip + changes: + - type: Tweak + message: Sprinter was reworked. + id: 4734 + time: '2024-01-07T20:45:57.0000000+00:00' +- author: ghostprince + changes: + - type: Add + message: NT Has added more ingredients to the ChefVend to allow ease of cooking. + id: 4735 + time: '2024-01-08T23:57:21.0000000+00:00' +- author: SungYandy + changes: + - type: Add + message: >- + NT Provided the janitors with fancy new lockers, coming to your ships + soon. + id: 4736 + time: '2024-01-09T03:52:40.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: >- + Added tabletop variants to common computer consoles. Available for + mappers right now. + id: 4737 + time: '2024-01-09T16:22:12.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added four new xeno spawners for mapping! + id: 4738 + time: '2024-01-10T01:20:44.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Tweak + message: Reduced the number and difficulty of the xenos at the lab. + id: 4739 + time: '2024-01-10T02:40:28.0000000+00:00' +- author: Cheackraze + changes: + - type: Add + message: The Syndicate have increased the defenses on their smuggling drops. + - type: Tweak + message: Changed the spawn rates and percentages of dead drops. + id: 4740 + time: '2024-01-11T20:39:39.0000000+00:00' +- author: Cheackraze + changes: + - type: Add + message: >- + Added the Public Transit system to a limited number of Points of + Interest + - type: Fix + message: Fixed Janitors spawning on the wrong station at round-start. + id: 4741 + time: '2024-01-11T20:42:23.0000000+00:00' +- author: VividPups + changes: + - type: Add + message: Added the USS Mayflower expeditions shuttle + id: 4742 + time: '2024-01-12T02:37:24.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Anomaly generator now require bananium processed ore. + id: 4743 + time: '2024-01-12T02:57:26.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: >- + Added a mothership console to the Caduceus, offering small medical + ships. + id: 4744 + time: '2024-01-14T01:16:16.0000000+00:00' +- author: Lokey82 + changes: + - type: Add + message: Added the NT Stellaris, A new theatre ship. + id: 4745 + time: '2024-01-14T16:11:17.0000000+00:00' +- author: VividPups + changes: + - type: Tweak + message: >- + Mayflower - Replaced wall-mounted lockers of the Merc and Prisoner with + regular ones, removed loose .45 cal ammo and speedloaders. + id: 4746 + time: '2024-01-14T16:19:12.0000000+00:00' +- author: ghostprince + changes: + - type: Tweak + message: >- + Added the new AutoTune vender, sitting on frontier and selling all the + instrument you are looking for, might or might not have some hidden + secrets in its inventory. + id: 4747 + time: '2024-01-14T22:00:29.0000000+00:00' +- author: Cheackraze + changes: + - type: Tweak + message: >- + The public transit shuttle will now announce its next destination to + local chat on both arrival and departure + - type: Fix + message: Fixed the public transit shuttle from spawning twice each round + id: 4748 + time: '2024-01-15T00:13:42.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Pilot Job with some job related drip. Check AstroVend for new looks. + id: 4749 + time: '2024-01-15T01:04:57.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: Scientists have discovered that small creatures can sleep inside bags. + id: 4750 + time: '2024-01-15T01:40:21.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/actions/sleep.ftl b/Resources/Locale/en-US/_NF/actions/sleep.ftl new file mode 100644 index 00000000000..73e164f556d --- /dev/null +++ b/Resources/Locale/en-US/_NF/actions/sleep.ftl @@ -0,0 +1 @@ +popup-sleep-in-bag = {THE($entity)} curls up and falls asleep. diff --git a/Resources/Locale/en-US/_NF/adventure/adventure.ftl b/Resources/Locale/en-US/_NF/adventure/adventure.ftl index 8afcd5794bc..bb0af576ca5 100644 --- a/Resources/Locale/en-US/_NF/adventure/adventure.ftl +++ b/Resources/Locale/en-US/_NF/adventure/adventure.ftl @@ -24,4 +24,7 @@ shipyard-rules-default2 = shuttle-ftl-proximity = Nearby objects too massive for FTL! -changelog-tab-title-Upstream = Upstream Changelog \ No newline at end of file +changelog-tab-title-Upstream = Upstream Changelog + +public-transit-departure = Now departing for {$destination}. Estimated travel time: {$flytime} seconds. +public-transit-arrival = Thank you for choosing NT Public Transit. Next transfer to {$destination} departs in {$waittime} seconds. \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl index ba803dc651c..9d71e720e80 100644 --- a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl +++ b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl @@ -1,4 +1,10 @@ chat-speech-verb-vulpkanin-1 = rawrs chat-speech-verb-vulpkanin-2 = barks chat-speech-verb-vulpkanin-3 = rurs -chat-speech-verb-vulpkanin-4 = yeeps +chat-speech-verb-vulpkanin-4 = yaps +chat-speech-verb-vulpkanin-5 = yeeps + +chat-speech-verb-felinid-1 = mraows +chat-speech-verb-felinid-2 = mews +chat-speech-verb-felinid-3 = meows +chat-speech-verb-felinid-4 = purrs out diff --git a/Resources/Locale/en-US/_NF/cryosleep/cryosleep-component.ftl b/Resources/Locale/en-US/_NF/cryosleep/cryosleep-component.ftl index d7655dd551c..47115c0304d 100644 --- a/Resources/Locale/en-US/_NF/cryosleep/cryosleep-component.ftl +++ b/Resources/Locale/en-US/_NF/cryosleep/cryosleep-component.ftl @@ -4,4 +4,19 @@ cryopod-examine-occupied = Occupied accept-cryo-window-accept-button = Accept accept-cryo-window-deny-button = Cancel accept-cryo-window-prompt-text-part = Enter cryo sleep and finish your shift? -accept-cryo-window-title = Cryo Sleep Chamber \ No newline at end of file +accept-cryo-window-title = Cryo Sleep Chamber + +cryo-wakeup-window-title = Waking up +cryo-wakeup-window-accept-button = Accept +cryo-wakeup-window-deny-button = Cancel +cryo-wakeup-window-rules = You are going to try to return from your cryosleep! You do not know anything that happened since the moment you went to sleep. Accept this and continue? +cryo-wakeup-result-occupied = The cryopod is occupied! Try waiting a bit. +cryo-wakeup-result-no-cryopod = The cryopod went missing! Uh oh. +cryo-wakeup-result-no-body = You do not have a cryosleeping body! +cryo-wakeup-result-disabled = Returning from cryosleep is disabled on this server. + +# Cryopod +cryopod-refuse-dead = The {$cryopod} refuses to accept dead patients. +cryopod-refuse-organic = The {$cryopod} refuses to accept more than 1 sentient entity at once. + +cryopod-wake-up = {$entity} returns from cryosleep! diff --git a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl index 83d6fa6ed4c..517367a8448 100644 --- a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl @@ -8,5 +8,8 @@ ghost-role-information-clippy-description = The Station Representative loyal wor ghost-role-information-clarpy-name = Clarpy ghost-role-information-clarpy-description = Avast ye mail! wanted by Nanotrasen for crimes against mice. +ghost-role-information-crispy-name = Crispy +ghost-role-information-crispy-description = Mistakes were made. + ghost-role-information-mistake-name = ????? ghost-role-information-mistake-description = Ymg' ph'nglui ah li. \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/job/job-description.ftl b/Resources/Locale/en-US/_NF/job/job-description.ftl index 0ee7916ad72..8d90993933a 100644 --- a/Resources/Locale/en-US/_NF/job/job-description.ftl +++ b/Resources/Locale/en-US/_NF/job/job-description.ftl @@ -1,2 +1,3 @@ job-description-mercenary = Execute the bidding of anyone- for the right price. Enjoy being unbound from the confines of the law. job-description-stc = Expertly de-conflict the space around the station and help the NFSD issue fines for overdocked ships. +job-description-pilot = Pilot spaceships from point A to B, outmaneuver pirates and dodge asteroids. You are a leaf on the solar wind, let others marvel at how you soar. diff --git a/Resources/Locale/en-US/_NF/job/job-names.ftl b/Resources/Locale/en-US/_NF/job/job-names.ftl index fbfa777dfb0..ef760e87d29 100644 --- a/Resources/Locale/en-US/_NF/job/job-names.ftl +++ b/Resources/Locale/en-US/_NF/job/job-names.ftl @@ -1,6 +1,8 @@ job-name-mercenary = Mercenary job-name-stc = Station Traffic Controller +job-name-pilot = Pilot # Role timers - Make these alphabetical or I cut you JobMercenary = Mercenary JobSTC = Station Traffic Controller +JobPilot = Pilot diff --git a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl index 7a3acaee265..d5c439dce56 100644 --- a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl @@ -5,3 +5,4 @@ stamp-component-unknown-job = No job stamp-component-stamped-name-psychologist = Psychologist stamp-component-stamped-name-lawyer = Lawyer +stamp-component-stamped-name-stc = Station Traffic Controller diff --git a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl index 9fb314d22a7..b31848bd937 100644 --- a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl @@ -1,3 +1,5 @@ id-card-access-level-frontier = Station Traffic Controller id-card-access-level-mercenary = Mercenary + +id-card-access-level-pilot = Pilot diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl index 329ea5453a1..c93f16494c2 100644 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl @@ -12,3 +12,6 @@ ent-FunChurchOrganInstrument = { ent-ChurchOrganInstrument } ent-FunMinimoogInstrument = { ent-MinimoogInstrument } .desc = { ent-MinimoogInstrument.desc } + +ent-FunDawInstrument = { ent-DawInstrument } + .desc = { ent-DawInstrument.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl new file mode 100644 index 00000000000..5e27cb780d1 --- /dev/null +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl @@ -0,0 +1,5 @@ +ent-ServiceJanitorial2 = { ent-CrateServiceJanitorialSupplies2 } + .desc = { ent-CrateServiceJanitorialSupplies2.desc } + +ent-ServiceVehicleJanicart = { ent-CrateVehicleJanicart } + .desc = { ent-CrateVehicleJanicart.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl new file mode 100644 index 00000000000..f5a1492fa03 --- /dev/null +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl @@ -0,0 +1,5 @@ +ent-CrateThruster = { ent-BaseThruster } + .desc = { ent-BaseThruster.desc } + +ent-CrateGyroscope = { ent-Gyroscope } + .desc = { ent-Gyroscope.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl new file mode 100644 index 00000000000..588b424a201 --- /dev/null +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl @@ -0,0 +1,8 @@ +ent-CrateServiceJanitorialSupplies2 = Janitorial supplies crate B + .desc = Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains two trash bag boxes, one box of wet floor signs and 2 spray cleaners. + +ent-CrateSpaceCleaner = Bulk space cleaner crate + .desc = For a large mess + +ent-CrateVehicleJanicart = Janicart crate + .desc = The janitor's trusty steed. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl index a40f57fb9bc..1e7a4a263b8 100644 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl @@ -18,3 +18,6 @@ ent-CrateVendingMachineRestockCondimentStationFilled = Condiment Station restock ent-CrateVendingMachineRestockLessLethalVendFilled = LessLethalVend restock crate .desc = Contains two restock boxes for the LessLethalVend vending machine. + +ent-CrateVendingMachineRestockAutoTuneVendFilled = AutoTuneVend restock crate + .desc = Contains two restock boxes for the AutoTuneVend vending machine. diff --git a/Resources/Locale/en-US/_NF/shuttles/console.ftl b/Resources/Locale/en-US/_NF/shuttles/console.ftl new file mode 100644 index 00000000000..d22ff4d3bea --- /dev/null +++ b/Resources/Locale/en-US/_NF/shuttles/console.ftl @@ -0,0 +1 @@ +shuttle-console-designation = Designation: \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/smuggling/deaddrop.ftl b/Resources/Locale/en-US/_NF/smuggling/deaddrop.ftl new file mode 100644 index 00000000000..462895c0217 --- /dev/null +++ b/Resources/Locale/en-US/_NF/smuggling/deaddrop.ftl @@ -0,0 +1,6 @@ +deaddrop-search-text = Search closer +deaddrop-security-report = Syndicate smuggling activities detected in your sector +deaddrop-hint-pretext = A Syndicate drop pod will be dispatched to the following coordinates: +deaddrop-hint-posttext = Our agents on the inside will pay anyone willing to smuggle these goods into NT territory. +deaddrop-hint-name = neatly folded paper +deaddrop-hint-desc = A piece of paper, cleanly folded to fit into a small hiding space \ No newline at end of file diff --git a/Resources/Locale/en-US/_Nyano/felinid.ftl b/Resources/Locale/en-US/_Nyano/abilities/felinid.ftl similarity index 63% rename from Resources/Locale/en-US/_Nyano/felinid.ftl rename to Resources/Locale/en-US/_Nyano/abilities/felinid.ftl index 62d4469e687..92181194167 100644 --- a/Resources/Locale/en-US/_Nyano/felinid.ftl +++ b/Resources/Locale/en-US/_Nyano/abilities/felinid.ftl @@ -1,5 +1,6 @@ -hairball-action = Cough Up Hairball -hairball-action-desc = Purge some of your chemstream, and gain a cool hairball to throw at people. +action-name-hairball = Cough Up Hairball +action-description-hairball = Purge some of your chemstream, and gain a cool hairball to throw at people. + hairball-mask = Take off your {$mask} first. hairball-cough = {CAPITALIZE(THE($name))} starts coughing up a hairball! diff --git a/Resources/Locale/en-US/_Nyano/oni.ftl b/Resources/Locale/en-US/_Nyano/abilities/oni.ftl similarity index 100% rename from Resources/Locale/en-US/_Nyano/oni.ftl rename to Resources/Locale/en-US/_Nyano/abilities/oni.ftl diff --git a/Resources/Locale/en-US/anomaly/anomaly.ftl b/Resources/Locale/en-US/anomaly/anomaly.ftl index 29d51696944..85297aedaba 100644 --- a/Resources/Locale/en-US/anomaly/anomaly.ftl +++ b/Resources/Locale/en-US/anomaly/anomaly.ftl @@ -26,7 +26,7 @@ anomaly-scanner-particle-containment = - [color=goldenrod]Containment type:[/col anomaly-scanner-pulse-timer = Time until next pulse: [color=gray]{$time}[/color] anomaly-generator-ui-title = Anomaly Generator -anomaly-generator-fuel-display = Fuel: +anomaly-generator-fuel-display = Bananium: anomaly-generator-cooldown = Cooldown: [color=gray]{$time}[/color] anomaly-generator-no-cooldown = Cooldown: [color=gray]Complete[/color] anomaly-generator-yes-fire = Status: [color=forestgreen]Ready[/color] diff --git a/Resources/Locale/en-US/deltav/advertisements/vending/pride.yml b/Resources/Locale/en-US/deltav/advertisements/vending/pride.ftl similarity index 100% rename from Resources/Locale/en-US/deltav/advertisements/vending/pride.yml rename to Resources/Locale/en-US/deltav/advertisements/vending/pride.ftl diff --git a/Resources/Locale/en-US/deltav/markings/felinid.ftl b/Resources/Locale/en-US/deltav/markings/felinid.ftl new file mode 100644 index 00000000000..89f4d43bd4e --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/felinid.ftl @@ -0,0 +1,5 @@ +marking-FelinidFluffyTail-Felinid_fluffy_tail_full = Fluffy Tail +marking-FelinidFluffyTailRings-Felinid_fluffy_tail_full = Fluffy tail +marking-FelinidFluffyTailRings-felinid_fluffy_tail_rings = Fluffy Tail Rings +marking-FelinidFluffyTail = Fluffy Tail +marking-FelinidFluffyTailRings = Fluffy Tail with rings diff --git a/Resources/Locale/en-US/ghost/ghost-gui.ftl b/Resources/Locale/en-US/ghost/ghost-gui.ftl index 909513e96ca..e325f733ad2 100644 --- a/Resources/Locale/en-US/ghost/ghost-gui.ftl +++ b/Resources/Locale/en-US/ghost/ghost-gui.ftl @@ -4,6 +4,8 @@ ghost-gui-ghost-roles-button = Ghost Roles ({$count}) ghost-gui-toggle-ghost-visibility-popup = Toggled visibility of ghosts. ghost-gui-toggle-lighting-manager-popup = Toggled all lighting. ghost-gui-toggle-fov-popup = Toggled field-of-view. +ghost-gui-respawn = Respawn +ghost-gui-uncryo = Un-cryo ghost-gui-toggle-hearing-popup-on = You can now hear all messages. ghost-gui-toggle-hearing-popup-off = You can now only hear radio and nearby messages. diff --git a/Resources/Locale/en-US/markings/felinid.ftl b/Resources/Locale/en-US/markings/felinid.ftl new file mode 100644 index 00000000000..d2e7abae4f7 --- /dev/null +++ b/Resources/Locale/en-US/markings/felinid.ftl @@ -0,0 +1,56 @@ +marking-FelinidEarsBasic = Basic Ears +marking-FelinidEarsBasic-basic_outer = Outer ear +marking-FelinidEarsBasic-basic_inner = Inner ear + +marking-FelinidEarsCurled = Curled Ears +marking-FelinidEarsCurled-curled_outer = Outer ear +marking-FelinidEarsCurled-curled_inner = Inner ear + +marking-FelinidEarsDroopy = Droopy Ears +marking-FelinidEarsDroopy-droopy_outer = Outer ear +marking-FelinidEarsDroopy-droopy_inner = Inner ear + +marking-FelinidEarsFuzzy = Fuzzy Ears +marking-FelinidEarsFuzzy-basic_outer = Outer ear +marking-FelinidEarsFuzzy-fuzzy_inner = Ear fuzz + +marking-FelinidEarsStubby = Stubby Ears +marking-FelinidEarsStubby-stubby_outer = Outer ear +marking-FelinidEarsStubby-stubby_inner = Inner ear + +marking-FelinidEarsTall = Tall Ears +marking-FelinidEarsTall-tall_outer = Outer ear +marking-FelinidEarsTall-tall_inner = Inner ear +marking-FelinidEarsTall-tall_fuzz = Ear fuzz + +marking-FelinidEarsTorn = Torn Ears +marking-FelinidEarsTorn-torn_outer = Outer ear +marking-FelinidEarsTorn-torn_inner = Inner ear + +marking-FelinidEarsWide = Wide Ears +marking-FelinidEarsWide-wide_outer = Outer ear +marking-FelinidEarsWide-wide_inner = Inner ear + +marking-FelinidTailBasic = Basic Tail +marking-FelinidTailBasic-basic_tail_tip = Tail tip +marking-FelinidTailBasic-basic_tail_stripes_even = Tail stripes, even +marking-FelinidTailBasic-basic_tail_stripes_odd = Tail stripes, odd + +marking-FelinidTailBasicWithBow = Basic Tail with Bow +marking-FelinidTailBasicWithBow-basic_tail_tip = Tail tip +marking-FelinidTailBasicWithBow-basic_tail_stripes_even = Tail stripes, even +marking-FelinidTailBasicWithBow-basic_tail_stripes_odd = Tail stripes, odd +marking-FelinidTailBasicWithBow-basic_bow = Bow + +marking-FelinidTailBasicWithBell = Basic Tail with Bell +marking-FelinidTailBasicWithBell-basic_tail_tip = Tail tip +marking-FelinidTailBasicWithBell-basic_tail_stripes_even = Tail stripes, even +marking-FelinidTailBasicWithBell-basic_tail_stripes_odd = Tail stripes, odd +marking-FelinidTailBasicWithBell-basic_bell = Bell + +marking-FelinidTailBasicWithBowAndBell = Basic Tail with Bow & Bell +marking-FelinidTailBasicWithBowAndBell-basic_tail_tip = Tail tip +marking-FelinidTailBasicWithBowAndBell-basic_tail_stripes_even = Tail stripes, even +marking-FelinidTailBasicWithBowAndBell-basic_tail_stripes_odd = Tail stripes, odd +marking-FelinidTailBasicWithBowAndBell-basic_bow = Bow +marking-FelinidTailBasicWithBowAndBell-basic_bell = Bell diff --git a/Resources/Locale/en-US/nyanotrasen/tools/tool-qualities.ftl b/Resources/Locale/en-US/nyanotrasen/tools/tool-qualities.ftl new file mode 100644 index 00000000000..c3c4e6ad2f5 --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/tools/tool-qualities.ftl @@ -0,0 +1,2 @@ +tool-quality-digging-name = Digging +tool-quality-digging-tool-name = Shovel diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl index 50b984425c4..99423491659 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/vending-crates.ftl @@ -2,7 +2,7 @@ ent-CrateVendingMachineRestockBoozeFilled = Booze-O-Mat restock crate .desc = Contains two restock boxes for the Booze-O-Mat. ent-CrateVendingMachineRestockClothesFilled = Clothing restock crate - .desc = Contains eight restock boxes, one for the ClothesMate and one for the AutoDrobe. + .desc = Contains eight restock boxes, seven for the ClothesMate and one for the AutoDrobe. ent-CrateVendingMachineRestockDinnerwareFilled = Plasteel Chef restock crate .desc = Contains two restock boxes for the Plasteel Chef vending machine. @@ -50,19 +50,19 @@ ent-CrateVendingMachineRestockTankDispenserFilled = Tank dispenser restock crate .desc = Contains two restock boxes for an Engineering or Atmospherics tank dispenser. ent-CrateVendingMachineRestockHappyHonkFilled = Happy honk restock crate - .desc = Contains two restock boxes for a happy honk dispenser. + .desc = Contains eight restock boxes for a happy honk dispenser. ent-CrateVendingMachineRestockGetmoreChocolateCorpFilled = Getmore Chocolate Corp restock crate - .desc = Contains two restock boxes for a Getmore Chocolate Corp dispenser. + .desc = Contains eight restock boxes for a Getmore Chocolate Corp dispenser. ent-CrateVendingMachineRestockChangFilled = Chang restock crate - .desc = Contains two restock boxes for a Mr. Chang dispenser. + .desc = Contains eight restock boxes for a Mr. Chang dispenser. ent-CrateVendingMachineRestockDiscountDansFilled = Discount Dans restock crate - .desc = Contains two restock boxes for a Discount Dan's dispenser. + .desc = Contains eight restock boxes for a Discount Dan's dispenser. ent-CrateVendingMachineRestockDonutFilled = Donut restock crate - .desc = Contains two restock boxes for a Monkin' Donuts dispenser. + .desc = Contains eight restock boxes for a Monkin' Donuts dispenser. ent-CrateVendingMachineRestockChemVendFilled = ChemVend restock crate .desc = Contains two restock boxes for the ChemVend. diff --git a/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl b/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl index 64851e49073..b5706954402 100644 --- a/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl +++ b/Resources/Locale/en-US/shipyard/shipyard-console-component.ftl @@ -1,10 +1,10 @@ ## UI -shipyard-console-invalid-vessel = Cannot purchase vessel: +shipyard-console-invalid-vessel = Cannot purchase vessel: shipyard-console-menu-title = Shipyard Menu shipyard-console-docking = Captain {$owner} shuttle {$vessel} en route, eta 10 seconds. shipyard-console-leaving = Captain {$owner} shuttle {$vessel} sold by {$player}. -shipyard-console-docking-secret = shuttle {$vessel} en route, eta 10 seconds. -shipyard-console-leaving-secret = shuttle {$vessel} sold. +shipyard-console-docking-secret = Unregistered vessel detected entering your sector. +shipyard-console-leaving-secret = Unregistered vessel detected leaving your sector. shipyard-commands-purchase-desc = Spawns and FTL docks a specified shuttle from a grid file. shipyard-console-no-idcard = No ID card present shipyard-console-already-deeded = ID card already has a Deed @@ -12,4 +12,4 @@ shipyard-console-invalid-station = Not a valid station shipyard-console-no-bank = No bank account found shipyard-console-no-deed = No ship deed found shipyard-console-sale-reqs = Ship must be docked and all crew disembarked -shipyard-console-deed-label = Registered Ship: \ No newline at end of file +shipyard-console-deed-label = Registered Ship: diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl index d442402f45a..b8bb9a83e56 100644 --- a/Resources/Locale/en-US/shuttles/console.ftl +++ b/Resources/Locale/en-US/shuttles/console.ftl @@ -34,8 +34,11 @@ shuttle-console-hyperspace-none = No destinations found shuttle-console-unknown = Unknown shuttle-console-iff-label = {$name} ({$distance}m) +shuttle-console-iff-search = Search IFF + # Buttons shuttle-console-strafing = Strafing mode shuttle-console-iff-toggle = Show IFF +shuttle-console-iffshuttles-toggle = Show Shuttle Labels shuttle-console-dock-toggle = Show docks shuttle-console-undock = Undock diff --git a/Resources/Locale/en-US/storage/components/magnet-pickup-component.ftl b/Resources/Locale/en-US/storage/components/magnet-pickup-component.ftl new file mode 100644 index 00000000000..01cf2fbce70 --- /dev/null +++ b/Resources/Locale/en-US/storage/components/magnet-pickup-component.ftl @@ -0,0 +1,4 @@ +magnet-pickup-component-toggle-verb = Toggle magnet +magnet-pickup-component-on-examine-main = The magnet appears to be {$stateText}. +magnet-pickup-component-magnet-on = [color=darkgreen]on[/color] +magnet-pickup-component-magnet-off = [color=darkred]off[/color] \ No newline at end of file diff --git a/Resources/Maps/Dungeon/cave_factory.yml b/Resources/Maps/Dungeon/cave_factory.yml index 19e938d867b..f453ee93b44 100644 --- a/Resources/Maps/Dungeon/cave_factory.yml +++ b/Resources/Maps/Dungeon/cave_factory.yml @@ -1,25 +1,25 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 23: FloorCave - 26: FloorDark - 31: FloorDarkMono - 39: FloorElevatorShaft - 48: FloorGreenCircuit - 55: FloorLino - 57: FloorMetalDiamond - 64: FloorReinforced - 69: FloorShuttleOrange - 75: FloorSteel - 82: FloorSteelMini - 83: FloorSteelMono - 87: FloorTechMaint - 91: FloorWhite - 95: FloorWhiteMini - 101: FloorWood - 104: Plating + 20: FloorCave + 27: FloorDark + 32: FloorDarkMono + 40: FloorElevatorShaft + 52: FloorGreenCircuit + 60: FloorLino + 62: FloorMetalDiamond + 72: FloorReinforced + 77: FloorShuttleOrange + 84: FloorSteel + 91: FloorSteelMini + 92: FloorSteelMono + 96: FloorTechMaint + 100: FloorWhite + 104: FloorWhiteMini + 110: FloorWood + 113: Plating entities: - proto: "" entities: @@ -34,64 +34,84 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 0,0: ind: 0,0 - tiles: SwAAAUsAAAJLAAAASwAAA0sAAAFLAAACaAAAABcAAAEXAAAEFwAABGgAAABLAAACSwAAAEsAAABLAAAASwAAA0sAAABoAAAASwAAAmgAAABoAAAASwAAAEsAAAEXAAAGFwAABhcAAARLAAABSwAAA2gAAABLAAADaAAAAGgAAABLAAADSwAAA0sAAANLAAADSwAAAUsAAAIfAAAAGgAAARcAAAIaAAAAHwAAAEsAAAJLAAADSwAAAGgAAABLAAAAVwAAAFcAAABoAAAAaAAAAFcAAABXAAAASwAAARcAAAIXAAAEFwAABEsAAAFXAAAAaAAAAFcAAABXAAAAVwAAAFcAAABXAAAAaAAAAFcAAABXAAAAVwAAAGgAAAAXAAAAFwAAAxcAAAZoAAAAVwAAAFcAAABXAAAAaAAAAGgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAARoAAAAaAAADFwAABBcAAAEXAAACFwAABBcAAAUaAAACGgAAAhoAAAFFAAAAUwAAAksAAABTAAAAaAAAABoAAAIfAAADaAAAABcAAAMXAAAEFwAABhcAAAEXAAADaAAAAB8AAAIaAAABRQAAAFIAAANSAAABUgAAAmgAAAAaAAAAHwAAA2gAAAAXAAABFwAAAxcAAAYXAAACFwAABWgAAAAfAAAAGgAAAEUAAABSAAAAUgAAAFIAAANLAAABGgAAAB8AAAFoAAAAFwAABRcAAAIXAAADFwAAAhcAAAVoAAAAHwAAAhoAAANFAAAAUgAAAFIAAABSAAABaAAAABoAAAIaAAAAGgAAARcAAAAXAAABFwAAAhcAAAEXAAACGgAAARoAAAIaAAADRQAAAFMAAAJLAAACUwAAAmgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAABoAAANoAAAAGgAAAWgAAAAaAAADGgAAAkUAAABXAAAAaAAAAGUAAAJlAAACZQAAAmUAAANlAAABRQAAABoAAAAaAAADGgAAAhoAAAAaAAABGgAAAxoAAAJFAAAAVwAAAGgAAABlAAACZQAAAWUAAAFlAAABZQAAAkUAAAAaAAABGgAAAhcAAAUXAAACFwAAAxoAAAEaAAAARQAAAFcAAABoAAAAZQAAAmUAAABlAAACZQAAAWUAAANFAAAAGgAAABoAAAEaAAACGgAAAxoAAAAaAAACGgAAAkUAAABXAAAAaAAAAGgAAABXAAAAaAAAAGgAAABlAAADRQAAAA== + tiles: VAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAFAAAAAABFAAAAAAEFAAAAAAEcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABFAAAAAAGFAAAAAAGFAAAAAAEVAAAAAABVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACIAAAAAAAGwAAAAABFAAAAAACGwAAAAAAIAAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAABFAAAAAACFAAAAAAEFAAAAAAEVAAAAAABYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAFAAAAAAAFAAAAAADFAAAAAAGcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAABGwAAAAAAGwAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFGwAAAAACGwAAAAACGwAAAAABTQAAAAAAXAAAAAACVAAAAAAAXAAAAAAAcQAAAAAAGwAAAAACIAAAAAADcQAAAAAAFAAAAAADFAAAAAAEFAAAAAAGFAAAAAABFAAAAAADcQAAAAAAIAAAAAACGwAAAAABTQAAAAAAWwAAAAADWwAAAAABWwAAAAACcQAAAAAAGwAAAAAAIAAAAAADcQAAAAAAFAAAAAABFAAAAAADFAAAAAAGFAAAAAACFAAAAAAFcQAAAAAAIAAAAAAAGwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAADVAAAAAABGwAAAAAAIAAAAAABcQAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAACFAAAAAAFcQAAAAAAIAAAAAACGwAAAAADTQAAAAAAWwAAAAAAWwAAAAAAWwAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAACGwAAAAABGwAAAAACGwAAAAADTQAAAAAAXAAAAAACVAAAAAACXAAAAAACcQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAGwAAAAABcQAAAAAAGwAAAAADGwAAAAACTQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAABTQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAACTQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAACTQAAAAAAGwAAAAABGwAAAAACFAAAAAAFFAAAAAACFAAAAAADGwAAAAABGwAAAAAATQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAADTQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACTQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADTQAAAAAA + version: 6 0,1: ind: 0,1 - tiles: GgAAAxoAAANoAAAAGgAAAmgAAAAaAAADGgAAAUUAAABXAAAAVwAAAFcAAABXAAAAVwAAAGgAAABlAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAABGgAAABoAAAAaAAADGgAAAkUAAABLAAACSwAAAEsAAABLAAADSwAAAUUAAABXAAAAaAAAAEsAAABXAAAAGgAAAWgAAAAXAAADaAAAABoAAAJFAAAASwAAAFIAAAJSAAADUgAAAUsAAAJFAAAAVwAAAFcAAABLAAADaAAAABoAAAIXAAACFwAABRcAAAMaAAADRQAAAEsAAAFSAAADUgAAAlIAAAFLAAAARQAAAEsAAANLAAAASwAAA0sAAAEaAAAAaAAAABcAAABoAAAAGgAAA0UAAABLAAAAUgAAAVIAAANSAAADSwAAAEUAAABXAAAAVwAAAEsAAAFLAAACGgAAABoAAAIaAAABGgAAARoAAANFAAAASwAAAksAAAJLAAABSwAAAEsAAAFFAAAAVwAAAFcAAABLAAADSwAAA0UAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAACGgAAAxoAAABFAAAAVwAAAFcAAABoAAAARQAAAF8AAABfAAAAXwAAA0UAAABLAAACSwAAAVMAAAFFAAAAGgAAAxcAAAMaAAABRQAAAGgAAABoAAAAaAAAAEUAAABfAAAAXwAAAV8AAANFAAAASwAAA0sAAABTAAADRQAAABoAAAAXAAACGgAAAkUAAABoAAAAaAAAAGgAAABFAAAAXwAAAF8AAANfAAADRQAAAEsAAANLAAACSwAAAkUAAAAaAAABFwAAAxoAAAJFAAAAaAAAAGgAAABoAAAARQAAAF8AAAJfAAAAXwAAAUUAAABTAAABSwAAAEsAAAFFAAAAGgAAABoAAAMaAAAARQAAAGgAAABXAAAAaAAAAEUAAABfAAAAXwAAAl8AAAJFAAAAUwAAAksAAAFLAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAACGgAAARcAAAEXAAAGFwAABBcAAAEXAAADFwAAABcAAAAXAAAGFwAABhoAAAAaAAAARQAAAEsAAABLAAACGgAAAxoAAAMaAAAAFwAABhcAAAMXAAABFwAAARcAAAAXAAADFwAAARoAAAEaAAAAGgAAA0UAAABXAAAAaAAAAA== + tiles: GwAAAAADGwAAAAADcQAAAAAAGwAAAAACcQAAAAAAGwAAAAADGwAAAAABTQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACTQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABTQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAGwAAAAABcQAAAAAAFAAAAAADcQAAAAAAGwAAAAACTQAAAAAAVAAAAAAAWwAAAAACWwAAAAADWwAAAAABVAAAAAACTQAAAAAAYAAAAAAAYAAAAAAAVAAAAAADcQAAAAAAGwAAAAACFAAAAAACFAAAAAAFFAAAAAADGwAAAAADTQAAAAAAVAAAAAABWwAAAAADWwAAAAACWwAAAAABVAAAAAAATQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABGwAAAAAAcQAAAAAAFAAAAAAAcQAAAAAAGwAAAAADTQAAAAAAVAAAAAAAWwAAAAABWwAAAAADWwAAAAADVAAAAAAATQAAAAAAYAAAAAAAYAAAAAAAVAAAAAABVAAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADTQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABTQAAAAAAYAAAAAAAYAAAAAAAVAAAAAADVAAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAACGwAAAAADGwAAAAAATQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAATQAAAAAAaAAAAAAAaAAAAAAAaAAAAAADTQAAAAAAVAAAAAACVAAAAAABXAAAAAABTQAAAAAAGwAAAAADFAAAAAADGwAAAAABTQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAAaAAAAAAAaAAAAAABaAAAAAADTQAAAAAAVAAAAAADVAAAAAAAXAAAAAADTQAAAAAAGwAAAAAAFAAAAAACGwAAAAACTQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAAaAAAAAAAaAAAAAADaAAAAAADTQAAAAAAVAAAAAADVAAAAAACVAAAAAACTQAAAAAAGwAAAAABFAAAAAADGwAAAAACTQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAAaAAAAAACaAAAAAAAaAAAAAABTQAAAAAAXAAAAAABVAAAAAAAVAAAAAABTQAAAAAAGwAAAAAAGwAAAAADGwAAAAAATQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAATQAAAAAAaAAAAAAAaAAAAAACaAAAAAACTQAAAAAAXAAAAAACVAAAAAABVAAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAACGwAAAAABFAAAAAABFAAAAAAGFAAAAAAEFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAGFAAAAAAGGwAAAAAAGwAAAAAATQAAAAAAVAAAAAAAVAAAAAACGwAAAAADGwAAAAADGwAAAAAAFAAAAAAGFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAABGwAAAAABGwAAAAAAGwAAAAADTQAAAAAAYAAAAAAAcQAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 1,0: ind: 1,0 - tiles: SwAAAUUAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAAaAAADGgAAAhoAAAIaAAABGgAAABoAAAMaAAACaAAAAEsAAAFFAAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAADGgAAABoAAAEaAAADGgAAAhoAAAIaAAACGgAAA2gAAABLAAABRQAAADcAAAA3AAAANwAAADcAAAAfAAABGgAAAhoAAAAaAAADGgAAABoAAAAaAAAAGgAAABoAAAMaAAABaAAAAEUAAAA3AAAANwAAADcAAAA3AAAAaAAAABoAAAAaAAADGgAAAxoAAAIaAAADGgAAAhoAAAEaAAABaAAAAFcAAABFAAAANwAAADcAAAA3AAAANwAAAGgAAAAaAAABGgAAAhoAAAMaAAABGgAAARoAAAEaAAADGgAAAWgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAksAAAFLAAAAaAAAAFMAAABLAAACUwAAAUUAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEsAAABLAAACSwAAAmgAAABSAAAAUgAAAVIAAABFAAAAQAAAAGgAAAAfAAAAaAAAAGgAAABoAAAAaAAAAGgAAABLAAACSwAAAEsAAAFLAAACUgAAAVIAAABSAAAARQAAAEAAAABoAAAAJwAAAGgAAAAnAAAAJwAAACcAAABoAAAASwAAAksAAAJLAAABaAAAAFIAAAJSAAADUgAAAkUAAABAAAAAaAAAAGgAAABoAAAAaAAAAB8AAABoAAAAaAAAAEsAAABLAAACSwAAAGgAAABTAAAASwAAAlMAAANFAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAEsAAANLAAABSwAAAEsAAAFLAAADSwAAAEUAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAARQAAAEsAAANSAAABUgAAA1IAAANSAAAAUgAAA0sAAAFFAAAAVwAAAGgAAABXAAAAVwAAAFcAAABLAAACaAAAAEUAAABLAAACUgAAAFIAAABSAAAAUgAAAVIAAAJLAAACRQAAAFcAAABoAAAAaAAAAGgAAABoAAAASwAAAFcAAABFAAAASwAAAlIAAANSAAACUgAAA1IAAABSAAAASwAAAEUAAABXAAAAaAAAAFcAAABXAAAAVwAAAEsAAAFoAAAARQAAAA== + tiles: VAAAAAABTQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAVAAAAAABTQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADcQAAAAAAVAAAAAABTQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIAAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAATQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAAYAAAAAAATQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAABcQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAXAAAAAAAVAAAAAACXAAAAAABTQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAWwAAAAAAWwAAAAABWwAAAAAATQAAAAAASAAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACWwAAAAABWwAAAAAAWwAAAAAATQAAAAAASAAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAWwAAAAACWwAAAAADWwAAAAACTQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAXAAAAAAAVAAAAAACXAAAAAADTQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAADVAAAAAABTQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACcQAAAAAATQAAAAAAVAAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACVAAAAAACTQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYAAAAAAATQAAAAAAVAAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAVAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABcQAAAAAATQAAAAAA + version: 6 1,1: ind: 1,1 - tiles: SwAAAUsAAANLAAABSwAAA0sAAABLAAAASwAAAkUAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABXAAAARQAAAEsAAAJLAAACSwAAAksAAAFLAAABRQAAAGgAAABXAAAAVwAAAFcAAABoAAAARQAAABoAAAEfAAABVwAAAEUAAABLAAADUgAAA1IAAAJSAAAASwAAAkUAAABoAAAAaAAAAFcAAABoAAAAaAAAAEUAAAAfAAACaAAAAEsAAAJFAAAASwAAAVIAAAJSAAADUgAAAksAAABFAAAAaAAAAEsAAANoAAAASwAAA2gAAABFAAAAGgAAAWgAAABLAAABRQAAAEsAAABSAAACUgAAA1IAAABLAAADRQAAAGgAAABXAAAAVwAAAFcAAABoAAAARQAAAB8AAANoAAAASwAAAkUAAABLAAABSwAAA0sAAABLAAACSwAAA0UAAABoAAAAVwAAAFcAAABXAAAAaAAAAEUAAAAaAAACHwAAA0UAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAAASwAAAEsAAAJFAAAAVwAAAGgAAABXAAAARQAAAFcAAABoAAAAaAAAAEUAAABLAAADSwAAAlMAAANFAAAASwAAAksAAANLAAAARQAAAFcAAABoAAAAVwAAAEUAAABoAAAAaAAAAFcAAABFAAAASwAAAksAAABTAAABRQAAAEsAAANLAAADSwAAAEUAAABLAAADSwAAAEsAAAFFAAAASwAAAksAAAJLAAACRQAAAEsAAABLAAABSwAAAEUAAABTAAABSwAAAFMAAAJFAAAAVwAAAGgAAABXAAAARQAAAFcAAABoAAAAaAAAAEUAAABTAAACSwAAAEsAAABFAAAAUwAAAEsAAABTAAABRQAAAFcAAABoAAAAVwAAAEUAAABXAAAAaAAAAFcAAABFAAAAUwAAAUsAAAJLAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAACSwAAAksAAABLAAAASwAAAUsAAABLAAADSwAAAEsAAABLAAAASwAAAkUAAABFAAAARQAAAEUAAABFAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: VAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACTQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYAAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAABTQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAATQAAAAAAGwAAAAABIAAAAAABYAAAAAAATQAAAAAAVAAAAAADWwAAAAADWwAAAAACWwAAAAAAVAAAAAACTQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAATQAAAAAAIAAAAAACcQAAAAAAVAAAAAACTQAAAAAAVAAAAAABWwAAAAACWwAAAAADWwAAAAACVAAAAAAATQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAATQAAAAAAGwAAAAABcQAAAAAAVAAAAAABTQAAAAAAVAAAAAAAWwAAAAACWwAAAAADWwAAAAAAVAAAAAADTQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAATQAAAAAAIAAAAAADcQAAAAAAVAAAAAACTQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADTQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAATQAAAAAAGwAAAAACIAAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACTQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAATQAAAAAAVAAAAAADVAAAAAACXAAAAAADTQAAAAAAVAAAAAACVAAAAAADVAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAATQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAACVAAAAAAAXAAAAAABTQAAAAAAVAAAAAADVAAAAAADVAAAAAAATQAAAAAAVAAAAAADVAAAAAAAVAAAAAABTQAAAAAAVAAAAAACVAAAAAACVAAAAAACTQAAAAAAVAAAAAAAVAAAAAABVAAAAAAATQAAAAAAXAAAAAABVAAAAAAAXAAAAAACTQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAATQAAAAAAXAAAAAACVAAAAAAAVAAAAAAATQAAAAAAXAAAAAAAVAAAAAAAXAAAAAABTQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAATQAAAAAAXAAAAAABVAAAAAACVAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: GgAAARoAAAEXAAADFwAABBcAAAUXAAAAFwAABRcAAAEXAAACFwAABhcAAAMaAAAAGgAAAEUAAABXAAAAVwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABXAAAAaAAAAFcAAABXAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEUAAABlAAADZQAAAWUAAANoAAAAVwAAAGgAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABFAAAAZQAAAWUAAAFlAAACSwAAAVcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABXAAAAaAAAAFcAAABXAAAARQAAAGUAAAFlAAAAZQAAA2gAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAAhcAAAUXAAAGFwAABhcAAAQXAAADGgAAAEUAAAAaAAACQAAAAEAAAABAAAAAQAAAAEAAAAAaAAACRQAAABoAAAEXAAAEFwAABhcAAAQXAAACFwAAAhoAAAJFAAAAGgAAA0AAAAAwAAAAMAAAADAAAABAAAAAGgAAAUUAAAAaAAACFwAAAhcAAAQXAAAFFwAAARcAAAMaAAABRQAAABoAAABAAAAAQAAAAEAAAABAAAAAQAAAABoAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABcAAAAXAAAAaAAAAB8AAAFoAAAAFwAABBcAAAZFAAAAWwAAAVsAAABbAAAAWwAAA1sAAAFbAAAAWwAAAEUAAAAXAAAAFwAAAhcAAAUaAAABFwAABBcAAAMXAAAFRQAAAFsAAAFbAAAAaAAAAFsAAAFoAAAAWwAAAVsAAANFAAAAaAAAABcAAAQXAAAGFwAAABcAAAUXAAAAaAAAAEUAAAAfAAABHwAAAx8AAABXAAAAHwAAAh8AAAEfAAACRQAAAB8AAAIaAAAAFwAABBcAAAMXAAAGGgAAAR8AAABFAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAEUAAABoAAAAFwAAAxcAAAMXAAAGFwAABhcAAANoAAAARQAAAB8AAAEfAAACHwAAAlcAAAAfAAAAHwAAAx8AAANFAAAAFwAABBcAAAUXAAABGgAAAxcAAAYXAAAAFwAAAUUAAAA5AAAAOQAAAB8AAAFXAAAAHwAAAzkAAAA5AAAARQAAAA== + tiles: GwAAAAABGwAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAAGFAAAAAADGwAAAAAAGwAAAAAATQAAAAAAYAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAbgAAAAADbgAAAAABbgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAbgAAAAABbgAAAAABbgAAAAACVAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAATQAAAAAAbgAAAAABbgAAAAAAbgAAAAADcQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAACFAAAAAAFFAAAAAAGFAAAAAAGFAAAAAAEFAAAAAADGwAAAAAATQAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAACTQAAAAAAGwAAAAABFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAACFAAAAAACGwAAAAACTQAAAAAAGwAAAAADSAAAAAAANAAAAAAANAAAAAAANAAAAAAASAAAAAAAGwAAAAABTQAAAAAAGwAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADGwAAAAABTQAAAAAAGwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAFAAAAAAAFAAAAAAAcQAAAAAAIAAAAAABcQAAAAAAFAAAAAAEFAAAAAAGTQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAATQAAAAAAFAAAAAAAFAAAAAACFAAAAAAFGwAAAAABFAAAAAAEFAAAAAADFAAAAAAFTQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAZAAAAAABcQAAAAAAZAAAAAABZAAAAAADTQAAAAAAcQAAAAAAFAAAAAAEFAAAAAAGFAAAAAAAFAAAAAAFFAAAAAAAcQAAAAAATQAAAAAAIAAAAAABIAAAAAADIAAAAAAAYAAAAAAAIAAAAAACIAAAAAABIAAAAAACTQAAAAAAIAAAAAACGwAAAAAAFAAAAAAEFAAAAAADFAAAAAAGGwAAAAABIAAAAAAATQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATQAAAAAAcQAAAAAAFAAAAAADFAAAAAADFAAAAAAGFAAAAAAGFAAAAAADcQAAAAAATQAAAAAAIAAAAAABIAAAAAACIAAAAAACYAAAAAAAIAAAAAAAIAAAAAADIAAAAAADTQAAAAAAFAAAAAAEFAAAAAAFFAAAAAABGwAAAAADFAAAAAAGFAAAAAAAFAAAAAABTQAAAAAAPgAAAAAAPgAAAAAAIAAAAAABYAAAAAAAIAAAAAADPgAAAAAAPgAAAAAATQAAAAAA + version: 6 0,3: ind: 0,3 - tiles: FwAAAxcAAAFoAAAAHwAAAmgAAAAXAAAEFwAAA0UAAAA5AAAAOQAAAB8AAABXAAAAHwAAADkAAAA5AAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FAAAAAADFAAAAAABcQAAAAAAIAAAAAACcQAAAAAAFAAAAAAEFAAAAAADTQAAAAAAPgAAAAAAPgAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAPgAAAAAAPgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: VwAAAFcAAABXAAAAaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAVwAAAFcAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABSAAABUgAAA1IAAABoAAAAZQAAAGUAAABlAAAARQAAABoAAANoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUgAAAFIAAANSAAACSwAAAmUAAAJlAAABZQAAAUUAAAAaAAACaAAAAGgAAABoAAAAVwAAAFcAAABXAAAAaAAAAFIAAANSAAADUgAAAGgAAABlAAACZQAAAWUAAANFAAAAGgAAAGgAAABoAAAAVwAAAGgAAABoAAAAaAAAAFcAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAUsAAANLAAACSwAAAksAAANLAAACSwAAAUUAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAARQAAAEsAAAFSAAADUgAAAFIAAAFSAAADUgAAAEsAAAJFAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEUAAABLAAADSwAAA0sAAAJLAAAASwAAAEsAAAFLAAAARQAAAFcAAABoAAAAaAAAAGgAAABoAAAAVwAAAFcAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABFAAAASwAAAksAAAJLAAADSwAAAUsAAABLAAACSwAAAUUAAABXAAAAaAAAAGgAAABoAAAAaAAAAGgAAABXAAAARQAAAEsAAANLAAABaAAAAEsAAABoAAAASwAAA0sAAANFAAAAVwAAAGgAAABXAAAAaAAAAFcAAABoAAAAVwAAAEUAAABoAAAAaAAAAGgAAABXAAAAaAAAAGgAAABoAAAARQAAAFcAAABLAAAAaAAAAGgAAABoAAAASwAAA1cAAABFAAAAHwAAAh8AAAEfAAAAHwAAAh8AAAAfAAABHwAAAEUAAABXAAAASwAAA1cAAABXAAAAVwAAAEsAAAFXAAAARQAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABFAAAAVwAAAEsAAAFoAAAAaAAAAGgAAABLAAAAVwAAAEUAAABLAAABSwAAAWgAAABLAAADaAAAAEsAAAFLAAABRQAAAA== + tiles: YAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAABWwAAAAADWwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWwAAAAAAWwAAAAADWwAAAAACVAAAAAACbgAAAAACbgAAAAABbgAAAAABTQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWwAAAAADWwAAAAADWwAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADTQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABTQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAVAAAAAACTQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAATQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABTQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADTQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAATQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADYAAAAAAATQAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAATQAAAAAAYAAAAAAAVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABYAAAAAAATQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAAYAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYAAAAAAATQAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAABTQAAAAAA + version: 6 1,3: ind: 1,3 - tiles: VwAAAGgAAABoAAAAaAAAAGgAAABoAAAAVwAAAEUAAABLAAAASwAAAEsAAANLAAADSwAAAEsAAANLAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAATQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: UwAAAlMAAAFLAAADRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABTAAACSwAAAUUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADGgAAA0sAAAJFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAVMAAABLAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFMAAAFTAAABSwAAA0UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAANoAAAAQAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAaAAAAEAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XAAAAAACXAAAAAABVAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACVAAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADVAAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAVAAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAABVAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADcQAAAAAASAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAcQAAAAAASAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,1: ind: 2,1 - tiles: RQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADHwAAAxoAAAJFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAfAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAA0UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAB8AAANFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAB8AAAMaAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAACGgAAAh8AAANFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAhoAAAAfAAADRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAADHwAAAh8AAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAMaAAACRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADIAAAAAADGwAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAIAAAAAADGwAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACGwAAAAACIAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACGwAAAAAAIAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADGwAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: RQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAABoAAAJFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAAaAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAGgAAAkUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,3: ind: 2,3 - tiles: RQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier @@ -3356,8 +3376,6 @@ entities: - pos: 3.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 44 components: - pos: 0.5,8.5 @@ -3548,8 +3566,6 @@ entities: - pos: 9.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 91 components: - pos: 8.5,14.5 @@ -3870,8 +3886,6 @@ entities: - pos: 7.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 172 components: - pos: 10.5,31.5 @@ -3897,78 +3911,56 @@ entities: - pos: 25.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 179 components: - pos: 24.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 180 components: - pos: 23.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 181 components: - pos: 22.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 182 components: - pos: 21.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 183 components: - pos: 20.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 184 components: - pos: 19.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 185 components: - pos: 18.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 186 components: - pos: 17.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 187 components: - pos: 16.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 188 components: - pos: 15.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 189 components: - pos: 14.5,31.5 @@ -3979,8 +3971,6 @@ entities: - pos: 20.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 191 components: - pos: 20.5,30.5 @@ -4061,15 +4051,11 @@ entities: - pos: 5.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 217 components: - pos: 5.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 218 components: - pos: 0.5,39.5 @@ -4080,8 +4066,6 @@ entities: - pos: 3.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 224 components: - pos: 6.5,39.5 @@ -4182,22 +4166,16 @@ entities: - pos: 6.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 266 components: - pos: 7.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 267 components: - pos: 4.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 285 components: - pos: 29.5,26.5 @@ -4223,8 +4201,6 @@ entities: - pos: 6.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 310 components: - pos: 2.5,15.5 @@ -4240,92 +4216,66 @@ entities: - pos: 6.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 342 components: - pos: 6.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 352 components: - pos: 5.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 353 components: - pos: 4.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 354 components: - pos: 3.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 355 components: - pos: 6.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 357 components: - pos: 8.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 358 components: - pos: 9.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 369 components: - pos: 2.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 370 components: - pos: 3.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 371 components: - pos: 5.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 372 components: - pos: 3.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 402 components: - pos: 4.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - pos: 1.5,10.5 @@ -4336,8 +4286,6 @@ entities: - pos: 1.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 438 components: - pos: 1.5,9.5 @@ -4368,22 +4316,16 @@ entities: - pos: 7.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 449 components: - pos: 5.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 450 components: - pos: 3.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 451 components: - pos: 8.5,6.5 @@ -4434,43 +4376,31 @@ entities: - pos: 25.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 494 components: - pos: 25.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 495 components: - pos: 26.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 496 components: - pos: 27.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 497 components: - pos: 28.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 498 components: - pos: 29.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 500 components: - pos: 24.5,12.5 @@ -4496,36 +4426,26 @@ entities: - pos: 25.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 506 components: - pos: 26.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 507 components: - pos: 27.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 508 components: - pos: 28.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 509 components: - pos: 29.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 514 components: - pos: 29.5,13.5 @@ -4776,8 +4696,6 @@ entities: - pos: 25.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 779 components: - pos: 25.5,18.5 @@ -4788,36 +4706,26 @@ entities: - pos: 24.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 781 components: - pos: 24.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 782 components: - pos: 24.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 783 components: - pos: 24.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 784 components: - pos: 24.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 785 components: - pos: 25.5,22.5 @@ -4838,36 +4746,26 @@ entities: - pos: 28.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 789 components: - pos: 28.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 790 components: - pos: 28.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 791 components: - pos: 28.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 792 components: - pos: 28.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 793 components: - pos: 27.5,18.5 @@ -4908,36 +4806,26 @@ entities: - pos: 4.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 825 components: - pos: 5.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 850 components: - pos: 29.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 851 components: - pos: 31.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 852 components: - pos: 30.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 853 components: - pos: 31.5,36.5 @@ -4948,22 +4836,16 @@ entities: - pos: 28.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 855 components: - pos: 27.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 856 components: - pos: 30.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 866 components: - pos: 5.5,24.5 @@ -4974,36 +4856,26 @@ entities: - pos: 6.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 868 components: - pos: 6.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 869 components: - pos: 6.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 870 components: - pos: 6.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 871 components: - pos: 6.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 872 components: - pos: 5.5,28.5 @@ -5014,22 +4886,16 @@ entities: - pos: 4.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 874 components: - pos: 4.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 875 components: - pos: 4.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 922 components: - pos: 34.5,36.5 @@ -5040,15 +4906,11 @@ entities: - pos: 32.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 991 components: - pos: 21.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1031 components: - pos: 7.5,2.5 @@ -5064,36 +4926,26 @@ entities: - pos: 8.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1036 components: - pos: 8.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1038 components: - pos: 8.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1039 components: - pos: 8.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1041 components: - pos: 8.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1044 components: - pos: 10.5,2.5 @@ -5119,8 +4971,6 @@ entities: - pos: 14.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1049 components: - pos: 15.5,2.5 @@ -5166,15 +5016,11 @@ entities: - pos: 2.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1062 components: - pos: 2.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1066 components: - pos: 2.5,1.5 @@ -5190,8 +5036,6 @@ entities: - pos: 14.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1072 components: - pos: 14.5,0.5 @@ -5207,22 +5051,16 @@ entities: - pos: 14.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1076 components: - pos: 32.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1077 components: - pos: 29.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1078 components: - pos: 24.5,35.5 @@ -5258,15 +5096,11 @@ entities: - pos: 4.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1085 components: - pos: 33.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1086 components: - pos: 5.5,35.5 @@ -5277,8 +5111,6 @@ entities: - pos: 29.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1088 components: - pos: 34.5,34.5 @@ -5304,8 +5136,6 @@ entities: - pos: 33.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1093 components: - pos: 4.5,0.5 @@ -5376,29 +5206,21 @@ entities: - pos: 21.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1126 components: - pos: 21.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1127 components: - pos: 21.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1128 components: - pos: 21.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1129 components: - pos: 24.5,26.5 @@ -5419,57 +5241,41 @@ entities: - pos: 25.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1133 components: - pos: 25.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1134 components: - pos: 25.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1135 components: - pos: 25.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1163 components: - pos: 26.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1165 components: - pos: 3.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1166 components: - pos: 2.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1167 components: - pos: 1.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1168 components: - pos: 0.5,36.5 @@ -5485,29 +5291,21 @@ entities: - pos: 6.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1171 components: - pos: 7.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1172 components: - pos: 8.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1173 components: - pos: 9.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1174 components: - pos: 10.5,34.5 @@ -5518,8 +5316,6 @@ entities: - pos: 25.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1243 components: - pos: 24.5,34.5 @@ -5535,15 +5331,11 @@ entities: - pos: 25.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1246 components: - pos: 26.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1247 components: - pos: 27.5,36.5 @@ -5554,8 +5346,6 @@ entities: - pos: 28.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1263 components: - pos: 30.5,26.5 @@ -5621,22 +5411,16 @@ entities: - pos: 27.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1302 components: - pos: 26.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1303 components: - pos: 25.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1304 components: - pos: 24.5,40.5 @@ -5657,36 +5441,26 @@ entities: - pos: 25.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1308 components: - pos: 26.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1309 components: - pos: 27.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1310 components: - pos: 28.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1311 components: - pos: 29.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1312 components: - pos: 30.5,38.5 @@ -5787,8 +5561,6 @@ entities: - pos: 10.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1439 components: - pos: 9.5,43.5 @@ -5799,8 +5571,6 @@ entities: - pos: 12.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1441 components: - pos: 13.5,43.5 @@ -5821,22 +5591,16 @@ entities: - pos: 3.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1445 components: - pos: 3.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1446 components: - pos: 3.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1447 components: - pos: 3.5,47.5 @@ -5862,22 +5626,16 @@ entities: - pos: 2.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1452 components: - pos: 3.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1453 components: - pos: 4.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1454 components: - pos: 5.5,45.5 @@ -5893,29 +5651,21 @@ entities: - pos: 19.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1525 components: - pos: 19.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1526 components: - pos: 18.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1527 components: - pos: 17.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1528 components: - pos: 16.5,48.5 @@ -5956,36 +5706,26 @@ entities: - pos: 17.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1536 components: - pos: 18.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1537 components: - pos: 19.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1538 components: - pos: 20.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1539 components: - pos: 21.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1540 components: - pos: 22.5,42.5 @@ -6026,36 +5766,26 @@ entities: - pos: 21.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1548 components: - pos: 20.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1549 components: - pos: 19.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1550 components: - pos: 19.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1551 components: - pos: 19.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1552 components: - pos: 19.5,46.5 @@ -6959,22 +6689,16 @@ entities: - pos: 26.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 487 components: - pos: 27.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 488 components: - pos: 28.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 489 components: - pos: 28.5,15.5 @@ -6995,8 +6719,6 @@ entities: - pos: 26.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 745 components: - pos: 25.5,21.5 @@ -7012,8 +6734,6 @@ entities: - pos: 27.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 973 components: - pos: 16.5,32.5 @@ -7024,50 +6744,36 @@ entities: - pos: 15.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 975 components: - pos: 16.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 976 components: - pos: 17.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 977 components: - pos: 18.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 978 components: - pos: 22.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 979 components: - pos: 23.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 980 components: - pos: 24.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 981 components: - pos: 24.5,32.5 @@ -7078,8 +6784,6 @@ entities: - pos: 25.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 984 components: - pos: 18.5,32.5 @@ -7090,22 +6794,16 @@ entities: - pos: 19.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 986 components: - pos: 20.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 987 components: - pos: 21.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 988 components: - pos: 22.5,32.5 @@ -7131,15 +6829,11 @@ entities: - pos: 18.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1507 components: - pos: 20.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1508 components: - pos: 20.5,44.5 @@ -7150,8 +6844,6 @@ entities: - pos: 19.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1517 components: - pos: 17.5,46.5 @@ -7194,15 +6886,11 @@ entities: - pos: 25.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 774 components: - pos: 27.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 775 components: - pos: 26.5,19.5 @@ -7213,8 +6901,6 @@ entities: - pos: 25.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1522 components: - pos: 19.5,46.5 @@ -7225,29 +6911,21 @@ entities: - pos: 19.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1818 components: - pos: 27.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1819 components: - pos: 26.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1820 components: - pos: 25.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 463 @@ -8864,20 +8542,8 @@ entities: - pos: 26.5,30.5 parent: 1 type: Transform -- proto: CrateMaterialGlass - entities: - - uid: 344 - components: - - pos: 23.5,4.5 - parent: 1 - type: Transform - proto: CrateMaterialSteel entities: - - uid: 366 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - uid: 368 components: - pos: 14.5,0.5 @@ -9054,8 +8720,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 280 components: @@ -9065,8 +8729,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 324 components: @@ -9075,8 +8737,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1412 components: @@ -9086,8 +8746,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1413 components: @@ -9096,8 +8754,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1710 components: @@ -9107,8 +8763,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1711 components: @@ -9117,8 +8771,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1715 components: @@ -9128,8 +8780,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1716 components: @@ -9138,8 +8788,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1718 components: @@ -9149,8 +8797,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1720 components: @@ -9160,8 +8806,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1721 components: @@ -9171,8 +8815,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1722 components: @@ -9182,8 +8824,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1723 components: @@ -9193,8 +8833,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1724 components: @@ -9204,8 +8842,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1725 components: @@ -9215,8 +8851,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1726 components: @@ -9226,8 +8860,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1727 components: @@ -9237,8 +8869,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1728 components: @@ -9247,8 +8877,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1729 components: @@ -9258,8 +8886,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1730 components: @@ -9268,8 +8894,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1731 components: @@ -9279,8 +8903,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1732 components: @@ -9290,8 +8912,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1733 components: @@ -9301,8 +8921,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1734 components: @@ -9312,8 +8930,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1736 components: @@ -9323,8 +8939,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1738 components: @@ -9334,8 +8948,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1739 components: @@ -9345,8 +8957,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1740 components: @@ -9356,8 +8966,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1741 components: @@ -9367,8 +8975,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1742 components: @@ -9378,8 +8984,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1743 components: @@ -9389,8 +8993,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1744 components: @@ -9400,8 +9002,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1745 components: @@ -9410,8 +9010,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 1746 components: @@ -9421,8 +9019,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyRollerBed entities: @@ -9513,9 +9109,9 @@ entities: - pos: 28.495766,8.649539 parent: 1 type: Transform -- proto: FireAxeCabinetFilledOpen +- proto: FireAxeCabinetFilled entities: - - uid: 1907 + - uid: 344 components: - rot: 1.5707963267948966 rad pos: 33.5,35.5 @@ -9692,64 +9288,48 @@ entities: pos: 28.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1285 components: - rot: -1.5707963267948966 rad pos: 30.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1286 components: - rot: -1.5707963267948966 rad pos: 26.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1290 components: - rot: -1.5707963267948966 rad pos: 25.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1326 components: - rot: -1.5707963267948966 rad pos: 32.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - rot: -1.5707963267948966 rad pos: 33.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1337 components: - rot: -1.5707963267948966 rad pos: 33.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1340 components: - rot: 1.5707963267948966 rad pos: 25.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1341 components: - pos: 24.5,35.5 @@ -9768,8 +9348,6 @@ entities: pos: 29.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: GasPort entities: - uid: 1251 @@ -9852,18 +9430,6 @@ entities: - pos: 1.3594894,8.628089 parent: 1 type: Transform -- proto: GeneratorPlasma - entities: - - uid: 962 - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform - - uid: 964 - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform - proto: GeneratorRTG entities: - uid: 741 @@ -9883,28 +9449,6 @@ entities: - pos: 32.5,20.5 parent: 1 type: Transform -- proto: GeneratorUranium - entities: - - uid: 51 - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: 28.5,15.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - pos: 18.5,44.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - pos: 20.5,44.5 - parent: 1 - type: Transform - proto: Girder entities: - uid: 1296 @@ -10080,9 +9624,12 @@ entities: pos: 8.5,24.5 parent: 1 type: Transform - - SecondsUntilStateChange: -12279.954 - state: Opening + - enabled: False + type: Occluder + - state: Open type: Door + - canCollide: False + type: Physics - uid: 945 components: - rot: 1.5707963267948966 rad @@ -10265,9 +9812,9 @@ entities: - pos: 12.5,28.5 parent: 1 type: Transform -- proto: LockerChiefEngineer +- proto: LockerChiefEngineerFilled entities: - - uid: 1934 + - uid: 366 components: - pos: 18.5,4.5 parent: 1 @@ -10703,6 +10250,40 @@ entities: - pos: 20.590317,3.594551 parent: 1 type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 962 + components: + - pos: 16.5,32.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 24.5,32.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 51 + components: + - pos: 26.5,15.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - pos: 18.5,44.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - pos: 20.5,44.5 + parent: 1 + type: Transform - proto: PortableScrubber entities: - uid: 1096 @@ -12148,6 +11729,18 @@ entities: - pos: 21.5,34.5 parent: 1 type: Transform +- proto: RandomCargoSpawner + entities: + - uid: 275 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 23.5,4.5 + parent: 1 + type: Transform - proto: RandomDrinkBottle entities: - uid: 581 @@ -12848,6 +12441,11 @@ entities: - pos: 22.5,15.5 parent: 1 type: Transform + - uid: 662 + components: + - pos: 29.5,40.5 + parent: 1 + type: Transform - uid: 1211 components: - pos: 14.5,32.5 @@ -12858,11 +12456,6 @@ entities: - pos: 2.5,34.5 parent: 1 type: Transform - - uid: 1324 - components: - - pos: 29.5,40.5 - parent: 1 - type: Transform - uid: 1558 components: - pos: 17.5,47.5 @@ -13261,14 +12854,6 @@ entities: - pos: 10.5,43.5 parent: 1 type: Transform -- proto: SingularityToy - entities: - - uid: 1377 - components: - - rot: 1.5707963267948966 rad - pos: 32.49328,20.505915 - parent: 1 - type: Transform - proto: Sink entities: - uid: 930 @@ -13524,18 +13109,11 @@ entities: - pos: 19.5,32.5 parent: 1 type: Transform -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 752 - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 278 + - uid: 705 components: - - pos: 14.5,15.5 + - pos: 14.5,16.5 parent: 1 type: Transform - proto: SyringeEphedrine @@ -14808,13 +14386,6 @@ entities: - pos: 21.5,12.5 parent: 1 type: Transform -- proto: WeaponForceGun - entities: - - uid: 662 - components: - - pos: 10.546083,39.580364 - parent: 1 - type: Transform - proto: WeaponGrapplingGun entities: - uid: 1888 @@ -14843,13 +14414,6 @@ entities: - pos: 11.295292,39.495438 parent: 1 type: Transform -- proto: WeaponTetherGun - entities: - - uid: 1933 - components: - - pos: 20.46575,3.0186253 - parent: 1 - type: Transform - proto: WelderIndustrial entities: - uid: 846 diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index fbabc011081..f3e5c8826e0 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -1,39 +1,39 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 18: FloorBlueCircuit - 26: FloorDark - 29: FloorDarkHerringbone - 33: FloorDarkPavement - 34: FloorDarkPavementVertical - 35: FloorDarkPlastic - 41: FloorFreezer - 44: FloorGrass - 46: FloorGrassJungle - 48: FloorGreenCircuit - 52: FloorHydro - 54: FloorLaundry - 55: FloorLino - 61: FloorPlanetGrass - 62: FloorPlastic - 64: FloorReinforced - 67: FloorShowroom - 69: FloorShuttleOrange - 75: FloorSteel - 78: FloorSteelDiagonal - 82: FloorSteelMini - 83: FloorSteelMono - 86: FloorSteelPavementVertical - 87: FloorTechMaint - 88: FloorTechMaint2 - 89: FloorTechMaint3 - 91: FloorWhite - 96: FloorWhiteMono - 100: FloorWhitePlastic - 101: FloorWood - 104: Plating + 15: FloorBlueCircuit + 27: FloorDark + 30: FloorDarkHerringbone + 34: FloorDarkPavement + 35: FloorDarkPavementVertical + 36: FloorDarkPlastic + 42: FloorFreezer + 45: FloorGrass + 47: FloorGrassJungle + 52: FloorGreenCircuit + 56: FloorHydro + 59: FloorLaundry + 60: FloorLino + 69: FloorPlanetGrass + 70: FloorPlastic + 72: FloorReinforced + 75: FloorShowroom + 77: FloorShuttleOrange + 84: FloorSteel + 87: FloorSteelDiagonal + 91: FloorSteelMini + 92: FloorSteelMono + 95: FloorSteelPavementVertical + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 105: FloorWhiteMono + 109: FloorWhitePlastic + 110: FloorWood + 113: Plating entities: - proto: "" entities: @@ -48,73 +48,96 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 0,0: ind: 0,0 - tiles: YAAAAEsAAAJLAAAASwAAA0sAAAFLAAAASwAAA0sAAABLAAADSwAAAUsAAANLAAACSwAAAksAAAFLAAAASwAAA1sAAABLAAAASwAAA0sAAANLAAABSwAAAEsAAANLAAACSwAAAEsAAAFLAAAASwAAAEsAAANLAAACSwAAAEsAAABbAAAASwAAAUsAAANoAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAAaAAAAEsAAAFLAAABWwAAAEsAAANLAAABSwAAAEsAAAJLAAACSwAAAksAAABLAAABSwAAAUsAAABLAAAASwAAAksAAAJLAAACSwAAAWAAAABLAAAASwAAAksAAABLAAAASwAAA0sAAABLAAADSwAAAEsAAANLAAABSwAAAUsAAANLAAADSwAAAUsAAANFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAPgAAAGQAAAE+AAAAPgAAAWQAAAE+AAAASwAAAEsAAANLAAAASwAAA0sAAAFFAAAAHQAAACEAAAAhAAAAIQAAAD4AAANkAAABPgAAAD4AAAJkAAAAPgAAAksAAANLAAAASwAAAUsAAABLAAADRQAAACIAAAA0AAAAVgAAADQAAABLAAAAZQAAAWUAAABlAAABZQAAAGUAAANlAAACZQAAAWUAAABlAAABZQAAA0UAAAAiAAAANAAAAFYAAAA0AAAAPgAAAmUAAAFlAAABZQAAAGUAAAJlAAABZQAAAWUAAABlAAACZQAAAGUAAAJFAAAAIgAAADQAAABWAAAANAAAAD4AAAE+AAACPgAAAD4AAAI+AAABPgAAAT4AAAE+AAAAPgAAAj4AAAE+AAABRQAAAB0AAAAhAAAAIQAAACEAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAaAAAABoAAAFLAAADSwAAAksAAAMaAAACaAAAAEUAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAARQAAAGgAAAAaAAACSwAAAUsAAAFLAAABGgAAA2gAAABFAAAAGgAAAGgAAABoAAAAWAAAAGgAAABoAAAAGgAAAEUAAABLAAACSwAAAksAAABoAAAASwAAAksAAAFLAAAARQAAABoAAABoAAAAQAAAAEAAAABAAAAAaAAAABoAAABFAAAASwAAAksAAANLAAABSwAAAUsAAANLAAACSwAAA0UAAAAaAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAaAAAARQAAAA== + tiles: aQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADZAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAZAAAAAAAVAAAAAABVAAAAAADcQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAAAVAAAAAABVAAAAAABZAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABaQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAARgAAAAAAbQAAAAABRgAAAAAARgAAAAABbQAAAAABRgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABTQAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARgAAAAADbQAAAAABRgAAAAAARgAAAAACbQAAAAAARgAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADTQAAAAAAIwAAAAAAOAAAAAAAXwAAAAAAOAAAAAAAVAAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAABbgAAAAADTQAAAAAAIwAAAAAAOAAAAAAAXwAAAAAAOAAAAAAARgAAAAACbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACTQAAAAAAIwAAAAAAOAAAAAAAXwAAAAAAOAAAAAAARgAAAAABRgAAAAACRgAAAAAARgAAAAACRgAAAAABRgAAAAABRgAAAAABRgAAAAAARgAAAAACRgAAAAABRgAAAAABTQAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAGwAAAAABVAAAAAADVAAAAAACVAAAAAADGwAAAAACcQAAAAAATQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAATQAAAAAAcQAAAAAAGwAAAAACVAAAAAABVAAAAAABVAAAAAABGwAAAAADcQAAAAAATQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAATQAAAAAAGwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAAATQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADTQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAATQAAAAAA + version: 6 0,1: ind: 0,1 - tiles: SwAAAEsAAANLAAACSwAAAksAAAFLAAACSwAAAUUAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAApAAAAKQAAACkAAAApAAAAKQAAAEUAAABLAAABWwAAAlsAAAJbAAADSwAAAUUAAAAuAAAAWwAAA1sAAANbAAAAKQAAACkAAAApAAAAaAAAAGgAAABFAAAAWwAAAVsAAAMuAAAAWwAAA1sAAANFAAAAWwAAAlsAAANbAAADWwAAAikAAAApAAAAZAAAA2QAAANkAAADRQAAAFsAAAMuAAAALgAAAC4AAABbAAABRQAAAFsAAAFbAAADSwAAAVsAAAMpAAAAaAAAAGQAAANbAAACWwAAAkUAAABbAAABWwAAAi4AAABbAAABWwAAAEUAAABbAAACWwAAAFsAAANbAAABKQAAAGgAAABkAAADWwAAAFsAAANFAAAASwAAAFsAAANbAAAAWwAAAUsAAAFFAAAAWwAAAVsAAANbAAABWwAAAkUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABAAAAAQAAAAEAAAABFAAAASwAAAEsAAAFLAAADRQAAAEMAAABDAAAAKQAAAEUAAABSAAACUgAAAlMAAABFAAAAQAAAABIAAABAAAAARQAAAFcAAABLAAAASwAAA0UAAAApAAAAQwAAACkAAABFAAAAUgAAAlIAAAJTAAACRQAAAEAAAAASAAAAQAAAAEUAAABLAAADSwAAAksAAANFAAAAKQAAACkAAAApAAAARQAAAFIAAANSAAACUwAAAkUAAABAAAAAEgAAAEAAAABFAAAASwAAA0sAAAFLAAABRQAAACkAAABDAAAAKQAAAEUAAABSAAACUgAAA1MAAAFFAAAAQAAAAEAAAABAAAAARQAAAEsAAAFLAAAASwAAAkUAAAApAAAAKQAAAEMAAABFAAAAUgAAA1IAAABTAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAAASwAAAksAAABLAAADSwAAAVsAAAFLAAACWwAAAFsAAANoAAAAGgAAABoAAAAaAAACRQAAAFsAAABbAAACSwAAABoAAAEaAAABGgAAAEsAAAFLAAAASwAAA0sAAAFLAAADGgAAARoAAAEaAAADSwAAA0UAAABbAAACWwAAAg== + tiles: VAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABTQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAAVAAAAAABZAAAAAACZAAAAAACZAAAAAADVAAAAAABTQAAAAAALwAAAAAAZAAAAAADZAAAAAADZAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAATQAAAAAAZAAAAAABZAAAAAADLwAAAAAAZAAAAAADZAAAAAADTQAAAAAAZAAAAAACZAAAAAADZAAAAAADZAAAAAACKgAAAAAAKgAAAAAAbQAAAAADbQAAAAADbQAAAAADTQAAAAAAZAAAAAADLwAAAAAALwAAAAAALwAAAAAAZAAAAAABTQAAAAAAZAAAAAABZAAAAAADVAAAAAABZAAAAAADKgAAAAAAcQAAAAAAbQAAAAADZAAAAAACZAAAAAACTQAAAAAAZAAAAAABZAAAAAACLwAAAAAAZAAAAAABZAAAAAAATQAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABKgAAAAAAcQAAAAAAbQAAAAADZAAAAAAAZAAAAAADTQAAAAAAVAAAAAAAZAAAAAADZAAAAAAAZAAAAAABVAAAAAABTQAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAASAAAAAAASAAAAAAASAAAAAAATQAAAAAAVAAAAAAAVAAAAAABVAAAAAADTQAAAAAASwAAAAAASwAAAAAAKgAAAAAATQAAAAAAWwAAAAACWwAAAAACXAAAAAAATQAAAAAASAAAAAAADwAAAAAASAAAAAAATQAAAAAAYAAAAAAAVAAAAAAAVAAAAAADTQAAAAAAKgAAAAAASwAAAAAAKgAAAAAATQAAAAAAWwAAAAACWwAAAAACXAAAAAACTQAAAAAASAAAAAAADwAAAAAASAAAAAAATQAAAAAAVAAAAAADVAAAAAACVAAAAAADTQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAAWwAAAAADWwAAAAACXAAAAAACTQAAAAAASAAAAAAADwAAAAAASAAAAAAATQAAAAAAVAAAAAADVAAAAAABVAAAAAABTQAAAAAAKgAAAAAASwAAAAAAKgAAAAAATQAAAAAAWwAAAAACWwAAAAADXAAAAAABTQAAAAAASAAAAAAASAAAAAAASAAAAAAATQAAAAAAVAAAAAABVAAAAAAAVAAAAAACTQAAAAAAKgAAAAAAKgAAAAAASwAAAAAATQAAAAAAWwAAAAADWwAAAAAAXAAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABZAAAAAABVAAAAAACZAAAAAAAZAAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACTQAAAAAAZAAAAAAAZAAAAAACVAAAAAAAGwAAAAABGwAAAAABGwAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADGwAAAAABGwAAAAABGwAAAAADVAAAAAADTQAAAAAAZAAAAAACZAAAAAAC + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 1,0: ind: 1,0 - tiles: YAAAAEUAAABLAAAAQAAAAEAAAABAAAAASwAAAEAAAABAAAAAQAAAAEsAAABAAAAAQAAAAEAAAABLAAAAQAAAAFsAAABFAAAASwAAAEAAAABAAAAAQAAAAEsAAABAAAAAQAAAAEAAAABLAAAAQAAAAEAAAABAAAAASwAAAEAAAABbAAAARQAAAEsAAABLAAAAQAAAAEsAAABLAAAASwAAAEAAAABLAAAASwAAAEsAAABAAAAASwAAAEsAAABLAAAAWwAAAEUAAABLAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAGAAAABFAAAASwAAAGgAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAIQAAACEAAAAhAAAAIQAAACEAAAAhAAAAHQAAAEUAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAEsAAABWAAAASwAAADQAAABWAAAANAAAACIAAABFAAAAVwAAAEsAAAAaAAAAGgAAAGgAAABoAAAAaAAAABoAAABLAAAAVgAAAEsAAAA0AAAAVgAAADQAAAAiAAAARQAAAFcAAABLAAAAGgAAABoAAABoAAAAaAAAAGgAAAAaAAAASwAAAFYAAABLAAAANAAAAFYAAAA0AAAAIgAAAEUAAABXAAAASwAAABoAAAAaAAAAaAAAAGgAAABoAAAAGgAAACEAAAAhAAAAIQAAACEAAAAhAAAAIQAAAB0AAABFAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAUsAAANLAAAASwAAAUsAAAJLAAABSwAAA0UAAABAAAAAQAAAAEAAAABbAAAAGgAAABoAAAAaAAAARQAAAEsAAAI9AAAAPQAAAD0AAAA9AAAAPQAAAEsAAAFFAAAAQAAAAEAAAABAAAAAWwAAAFsAAABbAAAAGgAAAEUAAABLAAABPQAAAD0AAAA9AAAAPQAAAD0AAABLAAADRQAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAABFAAAASwAAAT0AAAA9AAAAPQAAAD0AAAA9AAAASwAAAEUAAAAaAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAARQAAAA== + tiles: aQAAAAAATQAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAAZAAAAAAATQAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAAZAAAAAAATQAAAAAAVAAAAAAAVAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAATQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAaQAAAAAATQAAAAAAVAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAATQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAOAAAAAAAXwAAAAAAOAAAAAAAIwAAAAAATQAAAAAAYAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAOAAAAAAAXwAAAAAAOAAAAAAAIwAAAAAATQAAAAAAYAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAXwAAAAAAVAAAAAAAOAAAAAAAXwAAAAAAOAAAAAAAIwAAAAAATQAAAAAAYAAAAAAAVAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAATQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADTQAAAAAASAAAAAAASAAAAAAASAAAAAAAZAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAATQAAAAAAVAAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAVAAAAAABTQAAAAAASAAAAAAASAAAAAAASAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAATQAAAAAAVAAAAAABRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAVAAAAAADTQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAAVAAAAAABRQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAVAAAAAAATQAAAAAAGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAA + version: 6 1,1: ind: 1,1 - tiles: SwAAAEsAAANLAAADSwAAA0sAAAJLAAADSwAAAkUAAAAaAAAAGgAAABoAAABbAAAAWwAAAFsAAABbAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABbAAADRQAAAC4AAABLAAABSwAAAUsAAAEuAAAARQAAAEsAAABLAAADSwAAA0sAAABLAAADRQAAAFsAAABbAAABWwAAAEUAAABLAAAASwAAAEsAAABLAAADSwAAA0UAAABLAAACaAAAAGgAAABoAAAASwAAA0UAAABbAAABWwAAA1sAAAFFAAAASwAAAUsAAAJLAAABSwAAAksAAAFFAAAASwAAA2gAAABoAAAAaAAAAEsAAAJFAAAASwAAAksAAABbAAABRQAAAEsAAANLAAABSwAAA0sAAAFLAAADRQAAAEsAAAJoAAAAaAAAAGgAAABLAAACRQAAAEsAAANLAAACWwAAA0UAAAAuAAAASwAAAksAAABLAAABLgAAAEUAAABLAAABSwAAAUsAAAFLAAADaAAAAEUAAABLAAACSwAAAUUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAADGgAAAhoAAABFAAAATgAAAE4AAANOAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAAxoAAAAaAAADRQAAAE4AAABOAAAAWAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABoAAAEaAAAAGgAAA0UAAABOAAADTgAAAlgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAAAGgAAABoAAAJFAAAATgAAAE4AAAFYAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAABoAAAAaAAACRQAAAE4AAABOAAABTgAAA0UAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABbAAADaAAAAEsAAAFLAAACSwAAAksAAAFLAAADSwAAAksAAABLAAABSwAAAUUAAAAaAAADGgAAABoAAAIaAAABWwAAA1cAAABLAAADSwAAAUsAAABLAAACSwAAAEsAAABLAAADSwAAA0sAAABFAAAAGgAAABoAAAAaAAACGgAAAw== + tiles: VAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACTQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAADTQAAAAAALwAAAAAAVAAAAAABVAAAAAABVAAAAAABLwAAAAAATQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADTQAAAAAAZAAAAAAAZAAAAAABZAAAAAAATQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADTQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADTQAAAAAAZAAAAAABZAAAAAADZAAAAAABTQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAABTQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACTQAAAAAAVAAAAAACVAAAAAAAZAAAAAABTQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADTQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACTQAAAAAAVAAAAAADVAAAAAACZAAAAAADTQAAAAAALwAAAAAAVAAAAAACVAAAAAAAVAAAAAABLwAAAAAATQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADcQAAAAAATQAAAAAAVAAAAAACVAAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAADGwAAAAACGwAAAAAATQAAAAAAVwAAAAAAVwAAAAADVwAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAADGwAAAAAAGwAAAAADTQAAAAAAVwAAAAAAVwAAAAAAYQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAABGwAAAAAAGwAAAAADTQAAAAAAVwAAAAADVwAAAAACYQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACTQAAAAAAVwAAAAAAVwAAAAABYQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACTQAAAAAAVwAAAAAAVwAAAAABVwAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABTQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAABZAAAAAADYAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAATQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAD + version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: GgAAAxoAAAIaAAAAaAAAAFsAAABbAAAASwAAAVsAAAFLAAAASwAAAEsAAAJLAAACSwAAA0UAAABbAAADWwAAAkUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAACSwAAAksAAABLAAADYAAAAGAAAABgAAADSwAAA0sAAAJLAAACSwAAAUUAAABLAAADSwAAAWgAAABoAAAASwAAAksAAANLAAACSwAAAFMAAANTAAAAUwAAAUsAAAJLAAABSwAAAEsAAAFFAAAASwAAAmAAAAFgAAABaAAAAEsAAABLAAAASwAAAksAAAFgAAABYAAAAGAAAAJLAAABSwAAAEsAAAJLAAABRQAAAEsAAANLAAADSwAAAksAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAksAAAFLAAAASwAAAEsAAABLAAADSwAAA0UAAABLAAACSwAAA0sAAAFLAAADSwAAA0sAAABLAAAARQAAAEsAAABLAAABSwAAAUsAAANLAAADSwAAAEsAAAFFAAAASwAAA0sAAAEwAAAAMAAAADAAAABLAAABSwAAA0UAAABLAAAASwAAAksAAANLAAABSwAAAUsAAAFLAAAARQAAAEsAAABLAAABSwAAAEsAAAJLAAAASwAAAksAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEsAAANLAAABSwAAAVsAAANAAAAAQAAAAEAAAABFAAAAaAAAABoAAAEaAAACGgAAAxoAAAIaAAABGgAAAUUAAABLAAABSwAAAUsAAANbAAAAQAAAAEAAAABAAAAARQAAAGgAAABoAAAAGgAAARoAAAAaAAACaAAAAGgAAABFAAAASwAAAUsAAABLAAADWwAAAkAAAABAAAAAQAAAAEUAAABLAAACWAAAAFgAAABYAAAAWAAAAFgAAABLAAAARQAAAEsAAAJLAAAASwAAA2gAAABbAAACWwAAAFsAAANFAAAASwAAA1gAAABoAAAAaAAAAGgAAABYAAAASwAAAUUAAABLAAADSwAAAUsAAANbAAABWwAAA2gAAABbAAACRQAAAEsAAAJYAAAAaAAAAGgAAABoAAAAWAAAAEsAAAFFAAAAZAAAAGQAAAFkAAAAWwAAAWgAAABbAAABWwAAA0UAAABLAAADWQAAAlgAAABZAAAAWAAAAFkAAABLAAABRQAAAA== + tiles: GwAAAAADGwAAAAACGwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAVAAAAAABZAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADTQAAAAAAZAAAAAADZAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADaQAAAAAAaQAAAAAAaQAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAABTQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAXAAAAAADXAAAAAAAXAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABTQAAAAAAVAAAAAACaQAAAAABaQAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABaQAAAAABaQAAAAAAaQAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAABTQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADTQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAAATQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABTQAAAAAAVAAAAAADVAAAAAABNAAAAAAANAAAAAAANAAAAAAAVAAAAAABVAAAAAADTQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAAATQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAADVAAAAAABVAAAAAABZAAAAAADSAAAAAAASAAAAAAASAAAAAAATQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAABTQAAAAAAVAAAAAABVAAAAAABVAAAAAADZAAAAAAASAAAAAAASAAAAAAASAAAAAAATQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAATQAAAAAAVAAAAAABVAAAAAAAVAAAAAADZAAAAAACSAAAAAAASAAAAAAASAAAAAAATQAAAAAAVAAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVAAAAAAATQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAZAAAAAACZAAAAAAAZAAAAAADTQAAAAAAVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABTQAAAAAAVAAAAAADVAAAAAABVAAAAAADZAAAAAABZAAAAAADcQAAAAAAZAAAAAACTQAAAAAAVAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABTQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAZAAAAAABcQAAAAAAZAAAAAABZAAAAAADTQAAAAAAVAAAAAADYgAAAAACYQAAAAAAYgAAAAAAYQAAAAAAYgAAAAAAVAAAAAABTQAAAAAA + version: 6 0,3: ind: 0,3 - tiles: ZAAAAmQAAAFkAAABaAAAAGgAAABbAAADaAAAAEUAAABLAAABSwAAAksAAABLAAABSwAAAEsAAABLAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bQAAAAACbQAAAAABbQAAAAABcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAATQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: WwAAAWgAAABLAAACSwAAAUsAAAFLAAABSwAAA0sAAAJLAAACSwAAAUsAAAJFAAAAGgAAARoAAAEaAAABGgAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABoAAAAaAAAAGgAAABLAAABSwAAA0sAAANLAAACRQAAACwAAABLAAADSwAAAksAAAFLAAADSwAAAUsAAABLAAABYAAAAWgAAABoAAAAaAAAAGAAAABoAAAASwAAA0UAAABbAAAASwAAA0sAAANLAAACSwAAAUsAAANLAAACSwAAAGgAAABoAAAAaAAAAGgAAABLAAADSwAAAEsAAAJFAAAALAAAAEsAAAJLAAACSwAAAksAAANLAAACSwAAAEsAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAUsAAAJLAAADSwAAA0sAAABLAAABSwAAAUUAAABLAAABSwAAA2gAAABLAAAAaAAAAEsAAAJLAAADRQAAAEsAAAJLAAAASwAAA0sAAABLAAAASwAAA0sAAABFAAAASwAAAksAAABLAAADSwAAAEsAAANLAAACSwAAA0UAAABLAAACSwAAAEsAAAFLAAAASwAAAEsAAAFLAAACRQAAAEsAAAJLAAADaAAAAEsAAANoAAAASwAAAksAAAJFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAACMAAAMaAAACGgAAASMAAAMaAAACGgAAAiMAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAABaAAAADAAAABoAAAAMAAAAGgAAAAaAAACRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAzAAAAAwAAAAaAAAADAAAAAwAAAAGgAAA0UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAAAFoAAAAaAAAAGgAAABoAAAAaAAAACMAAAJFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAADMAAAADAAAABoAAAAMAAAADAAAAAaAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAWgAAAAwAAAAaAAAADAAAABoAAAAGgAAA0UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ZAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACTQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACTQAAAAAALQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAABaQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAAAcQAAAAAAVAAAAAADTQAAAAAAZAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACTQAAAAAALQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABTQAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADTQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAATQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADTQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACTQAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAJAAAAAADGwAAAAACGwAAAAABJAAAAAADGwAAAAACGwAAAAACJAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAANAAAAAAAcQAAAAAANAAAAAAAcQAAAAAAGwAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADNAAAAAAANAAAAAAAcQAAAAAANAAAAAAANAAAAAAAGwAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADNAAAAAAANAAAAAAAcQAAAAAANAAAAAAANAAAAAAAGwAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAANAAAAAAAcQAAAAAANAAAAAAAcQAAAAAAGwAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,3: ind: 1,3 - tiles: IwAAAxoAAAAaAAAAIwAAABoAAAAaAAADIwAAA0UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: JAAAAAADGwAAAAAAGwAAAAAAJAAAAAAAGwAAAAAAGwAAAAADJAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: QAAAAEAAAABLAAAARQAAAEsAAANLAAACSwAAAmgAAAA3AAAANwAAADcAAABoAAAASwAAAEsAAABLAAAAaAAAAEAAAABAAAAASwAAAEUAAABLAAACSwAAAksAAAFoAAAAaAAAAFgAAABoAAAAaAAAAEsAAABLAAAASwAAAGgAAABAAAAASwAAAEsAAABFAAAASwAAA0sAAANLAAACSwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAAWwAAAFsAAABLAAAARQAAAEsAAABLAAABSwAAAWgAAABoAAAAWAAAAGgAAABoAAAANgAAADYAAAA2AAAAaAAAAFsAAABoAAAASwAAAEUAAABLAAAASwAAAUsAAAJoAAAAZQAAAGUAAABlAAAAaAAAADYAAAA2AAAANgAAAGgAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAVwAAAFcAAABXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAABoAAABLAAAAVwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAAASwAAAFcAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAAEsAAABXAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFcAAABXAAAAVwAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAA0sAAAJLAAADWwAAAFsAAABbAAAAWwAAAEUAAAAjAAAAIwAAACMAAAAjAAAAaAAAACMAAAAjAAAARQAAAEsAAAFLAAACSwAAA1sAAABbAAAAWwAAAFsAAABFAAAAIwAAACMAAAAjAAAAIwAAACMAAAAjAAAAIwAAAEUAAAAaAAAAGgAAAEsAAAFLAAACSwAAA1sAAABbAAAARQAAAEsAAABLAAADSwAAAGgAAABLAAAAaAAAAGgAAABFAAAAaAAAABoAAABLAAACSwAAAksAAAJbAAAAWwAAAEUAAABLAAAASwAAAGgAAABoAAAAaAAAAGgAAABLAAADRQAAAA== + tiles: SAAAAAAASAAAAAAAVAAAAAAATQAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAATQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAATQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAVAAAAAAATQAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAAAVAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAAAVAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAAAVAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAADVAAAAAACVAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAATQAAAAAAVAAAAAABVAAAAAACVAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAATQAAAAAAGwAAAAAAGwAAAAAAVAAAAAABVAAAAAACVAAAAAADZAAAAAAAZAAAAAAATQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAATQAAAAAAcQAAAAAAGwAAAAAAVAAAAAACVAAAAAACVAAAAAACZAAAAAAAZAAAAAAATQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADTQAAAAAA + version: 6 3,0: ind: 3,0 - tiles: ZQAAAGUAAABlAAAAaAAAAEsAAAFLAAACSwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABYAAAAaAAAAGgAAABLAAABSwAAA0sAAANFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAASwAAAEsAAABLAAAASwAAAksAAABLAAADRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABoAAAAaAAAAEsAAAJLAAAASwAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAABlAAAAZQAAAGgAAABLAAABSwAAA0sAAANFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,2: ind: 3,2 - tiles: RQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: TQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: GgAAARoAAAMaAAACGgAAARoAAAMaAAABGgAAAxoAAAEaAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABLAAACSwAAAiwAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAksAAANbAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEsAAABLAAAALAAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAASwAAAEsAAAJLAAAASwAAAmgAAABLAAADaAAAAEUAAABLAAADSwAAAUsAAAFLAAABSwAAAEsAAANLAAACRQAAAEsAAABLAAACSwAAAWgAAABLAAACSwAAAEsAAAJFAAAASwAAA0sAAANLAAABSwAAA0sAAANLAAABSwAAAEUAAABLAAAAaAAAAGgAAABLAAACSwAAAGgAAABoAAAARQAAAEsAAAJLAAACSwAAAUsAAANLAAACSwAAAUsAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAACVAAAAAACLQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAACVAAAAAADZAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAVAAAAAAALQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADcQAAAAAATQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACTQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACTQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAATQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAATQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,1: ind: 2,1 - tiles: GgAAABoAAABoAAAASwAAAUsAAAFbAAAAWwAAAEUAAABLAAADSwAAAmgAAABLAAABaAAAAEsAAAFLAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABbAAACWwAAAFsAAANFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAWwAAAFsAAAJbAAACRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAFsAAANbAAACWwAAA0UAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABbAAACQAAAAEAAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAWwAAAEAAAABAAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAEUAAAAaAAADGgAAABoAAAAaAAACGgAAABoAAAIaAAADGgAAAxoAAAFFAAAARQAAAEUAAABFAAAARQAAAEUAAABFAAAAGgAAAxoAAAEaAAABGgAAAxoAAAEaAAABGgAAARoAAAAaAAABRQAAAEUAAABFAAAARQAAAEUAAABFAAAARQAAAA== + tiles: GwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAABZAAAAAAAZAAAAAAATQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAACZAAAAAAAZAAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAACZAAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAADZAAAAAACZAAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAACSAAAAAAASAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAASAAAAAAASAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAA + version: 6 type: MapGrid - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier @@ -2697,8 +2720,6 @@ entities: - pos: 35.5,39.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 33 components: - pos: 36.5,39.5 @@ -2814,8 +2835,6 @@ entities: - pos: 21.5,35.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 56 components: - pos: 20.5,35.5 @@ -2826,22 +2845,16 @@ entities: - pos: 19.5,35.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 58 components: - pos: 18.5,35.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 59 components: - pos: 17.5,35.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 60 components: - pos: 16.5,35.5 @@ -2852,8 +2865,6 @@ entities: - pos: 15.5,35.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 62 components: - pos: 14.5,35.5 @@ -2944,8 +2955,6 @@ entities: - pos: 3.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 80 components: - pos: 3.5,46.5 @@ -2961,8 +2970,6 @@ entities: - pos: 3.5,48.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 83 components: - pos: 0.5,45.5 @@ -3008,22 +3015,16 @@ entities: - pos: 10.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 92 components: - pos: 11.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 93 components: - pos: 12.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 94 components: - pos: 13.5,45.5 @@ -3054,8 +3055,6 @@ entities: - pos: 11.5,46.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 100 components: - pos: 11.5,47.5 @@ -3076,36 +3075,26 @@ entities: - pos: 17.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 104 components: - pos: 18.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 105 components: - pos: 19.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 106 components: - pos: 20.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 107 components: - pos: 21.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 108 components: - pos: 22.5,45.5 @@ -3121,29 +3110,21 @@ entities: - pos: 19.5,43.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 111 components: - pos: 19.5,44.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 112 components: - pos: 19.5,46.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 113 components: - pos: 19.5,47.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 114 components: - pos: 19.5,48.5 @@ -3524,15 +3505,11 @@ entities: - pos: 17.5,34.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 190 components: - pos: 17.5,36.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 191 components: - pos: 5.5,34.5 @@ -3868,22 +3845,16 @@ entities: - pos: 26.5,19.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 258 components: - pos: 26.5,20.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 259 components: - pos: 26.5,21.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 260 components: - pos: 26.5,22.5 @@ -3894,8 +3865,6 @@ entities: - pos: 27.5,20.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 264 components: - pos: 28.5,20.5 @@ -4231,8 +4200,6 @@ entities: - pos: 43.5,14.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 333 components: - pos: 44.5,14.5 @@ -4243,15 +4210,11 @@ entities: - pos: 45.5,14.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 335 components: - pos: 46.5,14.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 336 components: - pos: 43.5,13.5 @@ -4267,8 +4230,6 @@ entities: - pos: 43.5,15.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 339 components: - pos: 43.5,16.5 @@ -4299,22 +4260,16 @@ entities: - pos: 30.5,8.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 345 components: - pos: 29.5,8.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 346 components: - pos: 28.5,8.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 347 components: - pos: 27.5,8.5 @@ -4340,8 +4295,6 @@ entities: - pos: 29.5,9.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 352 components: - pos: 29.5,10.5 @@ -4832,8 +4785,6 @@ entities: - pos: 13.5,43.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 906 components: - pos: 9.5,18.5 @@ -4879,8 +4830,6 @@ entities: - pos: 28.5,22.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1031 components: - pos: 25.5,18.5 @@ -5171,8 +5120,6 @@ entities: - pos: 30.5,9.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1511 components: - pos: 31.5,7.5 @@ -5232,15 +5179,11 @@ entities: - pos: 11.5,46.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 545 components: - pos: 10.5,46.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 546 components: - pos: 9.5,46.5 @@ -5251,8 +5194,6 @@ entities: - pos: 12.5,46.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 548 components: - pos: 13.5,46.5 @@ -5278,8 +5219,6 @@ entities: - pos: 11.5,45.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 553 components: - pos: 11.5,44.5 @@ -5310,43 +5249,31 @@ entities: - pos: 8.5,42.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1014 components: - pos: 25.5,19.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1015 components: - pos: 25.5,20.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1016 components: - pos: 25.5,21.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1017 components: - pos: 26.5,20.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1018 components: - pos: 27.5,20.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1019 components: - pos: 28.5,20.5 @@ -5367,43 +5294,31 @@ entities: - pos: 28.5,8.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1489 components: - pos: 29.5,8.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1490 components: - pos: 30.5,8.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1491 components: - pos: 28.5,7.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1492 components: - pos: 29.5,7.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1493 components: - pos: 30.5,7.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1494 components: - pos: 27.5,7.5 @@ -5444,8 +5359,6 @@ entities: - pos: 29.5,9.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1503 components: - pos: 25.5,7.5 @@ -5475,8 +5388,6 @@ entities: - pos: 8.5,42.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 574 components: - pos: 9.5,42.5 @@ -5507,8 +5418,6 @@ entities: - pos: 13.5,43.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1024 components: - pos: 28.5,18.5 @@ -5534,22 +5443,16 @@ entities: - pos: 28.5,22.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1508 components: - pos: 29.5,9.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - uid: 1509 components: - pos: 30.5,9.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 825 @@ -6364,11 +6267,11 @@ entities: - pos: 14.5,42.5 parent: 1653 type: Transform -- proto: ClothingBeltUtility +- proto: ClothingBeltUtilityEngineering entities: - - uid: 1077 + - uid: 786 components: - - pos: 30.536415,19.542816 + - pos: 30.535934,19.609272 parent: 1653 type: Transform - proto: ClothingEyesGlassesMeson @@ -6603,13 +6506,6 @@ entities: - pos: 8.491919,3.5715053 parent: 1653 type: Transform -- proto: CyberPen - entities: - - uid: 786 - components: - - pos: 19.52091,32.612823 - parent: 1653 - type: Transform - proto: DisposalTrunk entities: - uid: 1436 @@ -7115,8 +7011,6 @@ entities: pos: 5.5,46.5 parent: 1653 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeStraight entities: - uid: 482 @@ -7253,18 +7147,6 @@ entities: - pos: 5.5,47.5 parent: 1653 type: Transform -- proto: GeneratorPlasma - entities: - - uid: 1528 - components: - - pos: 25.5,8.5 - parent: 1653 - type: Transform - - uid: 1529 - components: - - pos: 33.5,8.5 - parent: 1653 - type: Transform - proto: GeneratorRTG entities: - uid: 261 @@ -7774,6 +7656,13 @@ entities: - pos: 33.42354,40.437122 parent: 1653 type: Transform +- proto: Pen + entities: + - uid: 1077 + components: + - pos: 19.504536,32.587963 + parent: 1653 + type: Transform - proto: PillCanister entities: - uid: 1574 @@ -7857,6 +7746,18 @@ entities: - pos: 28.542555,0.5099404 parent: 1653 type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 1528 + components: + - pos: 25.5,8.5 + parent: 1653 + type: Transform + - uid: 1529 + components: + - pos: 33.5,8.5 + parent: 1653 + type: Transform - proto: PortableScrubber entities: - uid: 836 @@ -10785,6 +10686,13 @@ entities: - pos: 7.5,3.5 parent: 1653 type: Transform +- proto: WeaponEnergyGun + entities: + - uid: 1152 + components: + - pos: 10.540278,14.546922 + parent: 1653 + type: Transform - proto: WeaponLaserGun entities: - uid: 1150 @@ -10797,13 +10705,6 @@ entities: - pos: 12.593685,14.371384 parent: 1653 type: Transform -- proto: WeaponXrayCannon - entities: - - uid: 1152 - components: - - pos: 10.48431,14.543259 - parent: 1653 - type: Transform - proto: Welder entities: - uid: 663 diff --git a/Resources/Maps/Dungeon/lava_mercenary.yml b/Resources/Maps/Dungeon/lava_mercenary.yml new file mode 100644 index 00000000000..b320964f168 --- /dev/null +++ b/Resources/Maps/Dungeon/lava_mercenary.yml @@ -0,0 +1,12844 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 13: FloorBasalt + 28: FloorDark + 32: FloorDarkMini + 33: FloorDarkMono + 41: FloorElevatorShaft + 53: FloorGreenCircuit + 61: FloorLino + 73: FloorReinforced + 78: FloorShuttleOrange + 85: FloorSteel + 92: FloorSteelMini + 93: FloorSteelMono + 97: FloorTechMaint + 101: FloorWhite + 105: FloorWhiteMini + 111: FloorWood + 114: Plating +entities: +- proto: "" + entities: + - uid: 588 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: VQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABcgAAAAAADQAAAAAAHAAAAAABDQAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAADVQAAAAADcgAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAABIQAAAAABHAAAAAABDQAAAAAAHAAAAAACIQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAADQAAAAAAHAAAAAACDQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHAAAAAABHAAAAAABHAAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAABHAAAAAADHAAAAAABTgAAAAAAXQAAAAACVQAAAAAAXQAAAAACcgAAAAAAHAAAAAAAIQAAAAADcgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAAIQAAAAACHAAAAAACTgAAAAAAXAAAAAACXAAAAAAAXAAAAAAAcgAAAAAAHAAAAAABIQAAAAACcgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAAIQAAAAABHAAAAAADTgAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAACHAAAAAAAIQAAAAADcgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAAIQAAAAAAHAAAAAABTgAAAAAAXAAAAAADXAAAAAABXAAAAAABcgAAAAAAHAAAAAADHAAAAAADHAAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAABHAAAAAABHAAAAAAATgAAAAAAXQAAAAABVQAAAAABXQAAAAACcgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHAAAAAAAHAAAAAABcgAAAAAAHAAAAAADcgAAAAAAHAAAAAADHAAAAAADTgAAAAAAYQAAAAAAcgAAAAAAbwAAAAADbwAAAAABbwAAAAADbwAAAAAAbwAAAAADTgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAATgAAAAAAYQAAAAAAcgAAAAAAbwAAAAABbwAAAAACbwAAAAAAbwAAAAACbwAAAAACTgAAAAAAHAAAAAADHAAAAAACDQAAAAAADQAAAAAADQAAAAAAHAAAAAACHAAAAAACTgAAAAAAYQAAAAAAcgAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAACbwAAAAADTgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAABTgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAbwAAAAABTgAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: HAAAAAAAHAAAAAADcgAAAAAAHAAAAAACcgAAAAAAHAAAAAADHAAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAbwAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAABTgAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAAATgAAAAAAYQAAAAAAcgAAAAAAVQAAAAABYQAAAAAAHAAAAAACcgAAAAAADQAAAAAAcgAAAAAAHAAAAAACTgAAAAAAVQAAAAADXAAAAAAAXAAAAAABXAAAAAADVQAAAAABTgAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAcgAAAAAAHAAAAAABDQAAAAAADQAAAAAADQAAAAAAHAAAAAAATgAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACVQAAAAADTgAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAAAHAAAAAAAcgAAAAAADQAAAAAAcgAAAAAAHAAAAAAATgAAAAAAVQAAAAABXAAAAAABXAAAAAABXAAAAAABVQAAAAADTgAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAVQAAAAABHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAABTgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAABTgAAAAAAYQAAAAAAYQAAAAAAVQAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHAAAAAAAHAAAAAADHAAAAAAATgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAAaQAAAAACaQAAAAACaQAAAAABTgAAAAAAVQAAAAADVQAAAAADXQAAAAAATgAAAAAAHAAAAAAADQAAAAAAHAAAAAACTgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAATgAAAAAAaQAAAAADaQAAAAACaQAAAAADTgAAAAAAVQAAAAAAVQAAAAABXQAAAAABTgAAAAAAHAAAAAACDQAAAAAAHAAAAAAATgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAATgAAAAAAaQAAAAADaQAAAAAAaQAAAAAATgAAAAAAVQAAAAABVQAAAAABVQAAAAABTgAAAAAAHAAAAAACDQAAAAAAHAAAAAABTgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAATgAAAAAAaQAAAAADaQAAAAADaQAAAAABTgAAAAAAXQAAAAACVQAAAAABVQAAAAACTgAAAAAAHAAAAAADHAAAAAACHAAAAAADTgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAATgAAAAAAaQAAAAACaQAAAAACaQAAAAADTgAAAAAAXQAAAAACVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHAAAAAAAHAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAADHAAAAAACTgAAAAAAVQAAAAABVQAAAAACHAAAAAACHAAAAAABHAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAADHAAAAAADHAAAAAAATgAAAAAAYQAAAAAAcgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: VQAAAAABTgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAADVQAAAAADTgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABVQAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAIQAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAHAAAAAABYQAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAABYQAAAAAATgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAABVQAAAAACVQAAAAACcgAAAAAAXQAAAAAAVQAAAAABXQAAAAAATgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAcgAAAAAAXAAAAAAAXAAAAAAAXAAAAAABTgAAAAAASQAAAAAAcgAAAAAAIQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADXAAAAAADXAAAAAAAXAAAAAADTgAAAAAASQAAAAAAcgAAAAAAKQAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAABcgAAAAAAXAAAAAACXAAAAAABXAAAAAADTgAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAABcgAAAAAAcgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAcgAAAAAAXQAAAAADVQAAAAABXQAAAAACTgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAADTgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAVQAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACVQAAAAAATgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAcgAAAAAATgAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAVQAAAAACTgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADYQAAAAAATgAAAAAAVQAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAAAXAAAAAABVQAAAAAATgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAcgAAAAAATgAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: VQAAAAABVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACTgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAYQAAAAAATgAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAADTgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAAVQAAAAACVQAAAAACYQAAAAAATgAAAAAAVQAAAAADXAAAAAACXAAAAAABXAAAAAAAVQAAAAABTgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAATgAAAAAAVQAAAAADXAAAAAADVQAAAAACTgAAAAAAVQAAAAADXAAAAAADXAAAAAADXAAAAAADVQAAAAABTgAAAAAAcgAAAAAAVQAAAAABcgAAAAAAVQAAAAABcgAAAAAATgAAAAAAVQAAAAAAXAAAAAABVQAAAAADTgAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAACVQAAAAADTgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAAVQAAAAADXAAAAAADVQAAAAACTgAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAADVQAAAAACTgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAAVQAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAADVQAAAAABVQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAAVQAAAAABVQAAAAACXQAAAAACTgAAAAAAVQAAAAABVQAAAAAAVQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAATgAAAAAAVQAAAAACVQAAAAADXQAAAAABTgAAAAAAVQAAAAACVQAAAAAAVQAAAAACTgAAAAAAVQAAAAACVQAAAAAAVQAAAAACTgAAAAAAVQAAAAADVQAAAAAAVQAAAAADTgAAAAAAVQAAAAADVQAAAAACVQAAAAADTgAAAAAAXQAAAAADVQAAAAACXQAAAAADTgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAAXQAAAAAAVQAAAAADVQAAAAACTgAAAAAAXQAAAAABVQAAAAABXQAAAAABTgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAATgAAAAAAXQAAAAADVQAAAAADVQAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: HAAAAAACHAAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAADHAAAAAAATgAAAAAAYQAAAAAAYQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAADYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAAATgAAAAAAHAAAAAABSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAHAAAAAABTgAAAAAAHAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAAATgAAAAAAHAAAAAAASQAAAAAANQAAAAAANQAAAAAANQAAAAAASQAAAAAAHAAAAAAATgAAAAAAHAAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAACTgAAAAAAHAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAHAAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAADQAAAAAADQAAAAAAcgAAAAAAIQAAAAABcgAAAAAADQAAAAAADQAAAAAATgAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAADZQAAAAABZQAAAAABTgAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAAADQAAAAAADQAAAAAADQAAAAAATgAAAAAAZQAAAAABZQAAAAABcgAAAAAAZQAAAAAAcgAAAAAAZQAAAAABZQAAAAADTgAAAAAAcgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAATgAAAAAAIQAAAAABIQAAAAABIQAAAAACYQAAAAAAIQAAAAADIQAAAAACIQAAAAABTgAAAAAAIQAAAAAAHAAAAAACDQAAAAAADQAAAAAADQAAAAAAHAAAAAAAIQAAAAABTgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAcgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcgAAAAAATgAAAAAAIQAAAAACIQAAAAAAIQAAAAABYQAAAAAAIQAAAAABIQAAAAACIQAAAAAATgAAAAAADQAAAAAADQAAAAAADQAAAAAAHAAAAAADDQAAAAAADQAAAAAADQAAAAAATgAAAAAAIQAAAAAAIQAAAAAAIQAAAAACYQAAAAAAIQAAAAAAIQAAAAACIQAAAAADTgAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: DQAAAAAADQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAADQAAAAAADQAAAAAATgAAAAAAIQAAAAACIQAAAAAAIQAAAAAAYQAAAAAAIQAAAAABIQAAAAACIQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: YQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAACXAAAAAADXAAAAAABcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAHAAAAAACHAAAAAADHAAAAAACSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAXAAAAAACXAAAAAAAXAAAAAABVQAAAAACYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAHAAAAAACHAAAAAABHAAAAAABSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAXAAAAAADXAAAAAADXAAAAAADcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAHAAAAAADHAAAAAABHAAAAAABSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAAATgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAVQAAAAACXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAAAVQAAAAAATgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADTgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAACXAAAAAAAXAAAAAADXAAAAAADTgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAADXAAAAAABXAAAAAABXAAAAAACTgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAATgAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACXAAAAAADXAAAAAABXAAAAAACTgAAAAAAYQAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACYQAAAAAATgAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAADTgAAAAAAYQAAAAAAVQAAAAABYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAYQAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACIAAAAAABIAAAAAADVQAAAAACTgAAAAAAYQAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAABIAAAAAAAIAAAAAABVQAAAAABTgAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: YQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAATgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: HAAAAAAAHAAAAAABVQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAACVQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACVQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAADVQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAAAVQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADcgAAAAAASQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAcgAAAAAASQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAASQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAACVQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAABVQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABVQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAVQAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACHAAAAAAAIQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACHAAAAAACIQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAADHAAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABIQAAAAACIQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAADHAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAHAAAAAADHAAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABcgAAAAAAHAAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAHAAAAAAAHAAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#5E7C16FF' + id: Bot + decals: + 1036: 14,25 + 1037: 14,24 + - node: + color: '#52B4E996' + id: BotGreyscale + decals: + 157: 30,25 + 158: 30,24 + 159: 28,27 + 160: 28,27 + 161: 28,28 + 162: 28,28 + 163: 30,25 + 164: 30,24 + - node: + color: '#5E7C16FF' + id: BotGreyscale + decals: + 964: 6,2 + 965: 10,2 + 1050: 14,10 + 1051: 14,6 + 1052: 20,6 + 1053: 20,10 + 1054: 22,10 + 1055: 22,6 + 1056: 12,10 + 1057: 12,6 + 1058: 14,25 + 1059: 14,24 + 1060: 34,25 + 1061: 32,25 + 1062: 32,24 + 1065: 9,7 + 1066: 9,9 + 1067: 9,8 + 1068: 1,9 + 1069: 1,8 + 1070: 1,7 + 1166: 18,27 + 1167: 18,28 + 1168: 16,28 + 1169: 16,27 + 1170: 12,27 + 1171: 12,28 + - node: + color: '#DE3A3A96' + id: BotGreyscale + decals: + 109: 32,25 + 110: 32,24 + 111: 34,25 + 112: 34,24 + 113: 16,28 + 114: 18,28 + 115: 18,27 + 116: 16,27 + 117: 12,27 + 118: 12,28 + 201: 26,7 + 202: 32,7 + 203: 29,9 + 267: 1,9 + 268: 1,8 + 269: 1,7 + 270: 9,9 + 271: 9,8 + 272: 9,7 + 273: 20,10 + 274: 14,6 + 275: 20,6 + 276: 22,6 + 277: 22,10 + 278: 12,10 + 279: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 19: 10,44 + 152: 30,28 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 20: 12,44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 7: 10,46 + 41: 14,42 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 10: 12,46 + 39: 8,42 + 149: 28,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 8: 10,47 + 9: 10,48 + 42: 14,43 + 151: 30,27 + 253: 5,45 + 256: 33,36 + 257: 33,34 + 258: 10,31 + 262: 8,10 + 263: 8,6 + 264: 7,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 17: 8,44 + 18: 9,44 + 21: 13,44 + 22: 14,44 + 254: 3,47 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 13: 8,46 + 14: 9,46 + 15: 13,46 + 16: 14,46 + 43: 9,42 + 44: 10,42 + 45: 13,42 + 46: 12,42 + 255: 3,43 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 11: 12,47 + 12: 12,48 + 40: 8,43 + 150: 28,25 + 252: 1,45 + 259: 2,31 + 260: 2,10 + 261: 2,6 + 265: 9,2 + 266: 30,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 103: 33,21 + 775: 30,44 + 787: 29,47 + 1146: 22,9 + 1147: 14,9 + 1163: 21,15 + 1164: 21,21 + 1165: 9,21 + 1172: 18,36 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 104: 31,21 + 776: 28,44 + 788: 28,47 + 1173: 20,9 + 1174: 12,9 + 1175: 17,15 + 1176: 19,21 + 1177: 7,21 + 1178: 16,36 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 77: 26,30 + 106: 33,19 + 774: 30,42 + 785: 29,46 + 1190: 18,34 + 1194: 9,19 + 1203: 21,19 + 1212: 21,13 + 1219: 14,7 + 1227: 22,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 6: 3,35 + 78: 14,30 + 105: 31,19 + 773: 28,42 + 786: 28,46 + 1191: 16,34 + 1198: 7,19 + 1199: 19,19 + 1213: 17,13 + 1218: 12,7 + 1226: 20,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 1180: 21,39 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 1179: 17,39 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineE + decals: + 480: 32,2 + 482: 31,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 55: 17,45 + 56: 17,46 + 57: 17,47 + 92: 27,20 + 101: 16,21 + 108: 33,20 + 478: 33,2 + 777: 30,43 + 1188: 18,35 + 1195: 9,20 + 1202: 21,20 + 1211: 21,14 + 1220: 14,8 + 1224: 22,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 780: 29,44 + 1181: 20,39 + 1182: 19,39 + 1183: 18,39 + 1187: 17,36 + 1196: 8,21 + 1200: 20,21 + 1206: 32,21 + 1207: 20,15 + 1208: 19,15 + 1209: 18,15 + 1222: 13,9 + 1223: 21,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 67: 15,30 + 68: 16,30 + 69: 17,30 + 70: 18,30 + 71: 19,30 + 72: 21,30 + 73: 22,30 + 74: 23,30 + 75: 24,30 + 76: 25,30 + 779: 29,42 + 1184: 18,39 + 1185: 19,39 + 1186: 20,39 + 1192: 17,34 + 1193: 8,19 + 1204: 20,19 + 1205: 32,19 + 1214: 18,13 + 1215: 19,13 + 1216: 20,13 + 1217: 13,7 + 1225: 21,7 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineW + decals: + 479: 33,2 + 481: 32,2 + 483: 31,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 58: 21,45 + 59: 21,46 + 60: 21,47 + 91: 25,20 + 95: 29,15 + 96: 29,14 + 97: 29,13 + 107: 31,20 + 778: 28,43 + 1189: 16,35 + 1197: 7,20 + 1201: 19,20 + 1210: 17,14 + 1221: 12,8 + 1228: 20,8 + - node: + color: '#474F52FF' + id: BrickTileWhiteCornerNe + decals: + 1006: 21,4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 33: 10,44 + 156: 30,28 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteCornerNe + decals: + 1040: 34,36 + 1229: 10,10 + 1243: 22,16 + 1258: 6,16 + 1271: 34,22 + 1272: 22,22 + 1286: 16,22 + 1289: 10,22 + 1300: 4,22 + 1314: 12,25 + 1315: 16,25 + 1330: 6,40 + 1344: 22,40 + 1345: 30,48 + 1352: 12,32 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 166: 10,28 + - node: + color: '#474F52FF' + id: BrickTileWhiteCornerNw + decals: + 1009: 18,4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 34: 12,44 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteCornerNw + decals: + 1027: 23,4 + 1042: 24,36 + 1232: 0,10 + 1248: 16,16 + 1255: 0,16 + 1267: 30,22 + 1273: 18,22 + 1297: 6,22 + 1298: 0,22 + 1318: 18,25 + 1331: 0,40 + 1342: 16,40 + 1353: 0,32 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 165: 8,28 + - node: + color: '#474F52FF' + id: BrickTileWhiteCornerSe + decals: + 1004: 21,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 32: 10,46 + 48: 14,42 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteCornerSe + decals: + 971: 5,0 + 991: 16,0 + 1041: 34,34 + 1063: 10,6 + 1240: 22,12 + 1261: 6,12 + 1262: 34,18 + 1277: 22,18 + 1291: 10,18 + 1299: 4,18 + 1329: 6,38 + 1341: 22,38 + 1357: 12,30 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 80: 26,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 167: 10,24 + - node: + color: '#474F52FF' + id: BrickTileWhiteCornerSw + decals: + 1000: 18,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 31: 12,46 + 47: 8,42 + 153: 28,24 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteCornerSw + decals: + 973: 0,0 + 993: 11,0 + 1013: 23,0 + 1043: 24,34 + 1235: 0,6 + 1251: 16,12 + 1252: 0,12 + 1270: 30,18 + 1276: 18,18 + 1292: 6,18 + 1301: 0,18 + 1332: 0,38 + 1343: 16,38 + 1354: 0,30 + 1615: 14,27 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 79: 14,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 168: 8,24 + - node: + color: '#474F52FF' + id: BrickTileWhiteLineE + decals: + 1003: 21,1 + 1005: 21,3 + 1010: 21,2 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 27: 10,47 + 28: 10,48 + 49: 14,43 + 155: 30,27 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteLineE + decals: + 972: 5,1 + 992: 16,1 + 1028: 34,4 + 1029: 34,3 + 1030: 34,1 + 1031: 34,0 + 1032: 10,7 + 1033: 10,9 + 1034: 6,2 + 1035: 10,2 + 1241: 22,13 + 1242: 22,15 + 1259: 6,15 + 1260: 6,13 + 1263: 34,19 + 1264: 34,21 + 1278: 22,19 + 1279: 22,21 + 1287: 16,21 + 1288: 10,21 + 1290: 10,19 + 1302: 4,19 + 1303: 4,21 + 1310: 0,25 + 1311: 0,27 + 1316: 12,24 + 1317: 16,24 + 1326: 14,34 + 1327: 14,35 + 1328: 14,36 + 1335: 14,40 + 1336: 14,38 + 1348: 30,47 + 1349: 30,46 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineE + decals: + 222: 2,6 + 223: 2,10 + 227: 9,2 + 228: 30,2 + 233: 1,45 + 235: 2,31 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 102: 16,21 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 61: 17,45 + 62: 17,46 + 63: 17,47 + 93: 27,20 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 170: 10,27 + 171: 10,26 + 172: 10,25 + - node: + color: '#474F52FF' + id: BrickTileWhiteLineN + decals: + 1007: 20,4 + 1008: 19,4 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 35: 9,44 + 36: 8,44 + 37: 13,44 + 38: 14,44 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteLineN + decals: + 1014: 24,4 + 1015: 25,4 + 1016: 26,4 + 1017: 27,4 + 1018: 28,4 + 1019: 29,4 + 1020: 30,4 + 1046: 25,36 + 1047: 26,36 + 1230: 9,10 + 1231: 1,10 + 1236: 16,10 + 1237: 18,10 + 1244: 21,16 + 1245: 20,16 + 1246: 18,16 + 1247: 17,16 + 1256: 1,16 + 1257: 5,16 + 1265: 33,22 + 1266: 31,22 + 1280: 21,22 + 1281: 19,22 + 1285: 15,22 + 1295: 7,22 + 1296: 9,22 + 1306: 1,22 + 1307: 3,22 + 1308: 2,28 + 1309: 0,28 + 1337: 17,40 + 1338: 18,40 + 1339: 20,40 + 1340: 21,40 + 1346: 29,48 + 1347: 28,48 + 1355: 1,32 + 1356: 11,32 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineN + decals: + 234: 3,43 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 169: 9,28 + - node: + color: '#474F52FF' + id: BrickTileWhiteLineS + decals: + 1001: 19,0 + 1002: 20,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 23: 8,46 + 24: 9,46 + 25: 13,46 + 26: 14,46 + 51: 9,42 + 52: 10,42 + 53: 12,42 + 54: 13,42 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteLineS + decals: + 967: 4,0 + 968: 3,0 + 969: 2,0 + 970: 1,0 + 975: 0,3 + 976: 1,3 + 977: 2,3 + 978: 3,3 + 979: 4,3 + 980: 5,3 + 981: 11,3 + 982: 12,3 + 983: 13,3 + 984: 14,3 + 985: 15,3 + 986: 16,3 + 987: 12,0 + 988: 13,0 + 989: 14,0 + 990: 15,0 + 1021: 30,0 + 1022: 29,0 + 1023: 28,0 + 1024: 27,0 + 1025: 25,0 + 1026: 24,0 + 1044: 26,34 + 1045: 25,34 + 1064: 9,6 + 1071: 1,6 + 1072: 1,12 + 1073: 5,12 + 1074: 18,12 + 1075: 17,12 + 1076: 21,12 + 1077: 31,18 + 1078: 33,18 + 1079: 21,18 + 1080: 19,18 + 1081: 9,18 + 1082: 7,18 + 1083: 3,18 + 1084: 1,18 + 1085: 0,24 + 1086: 2,24 + 1087: 11,30 + 1088: 1,30 + 1089: 21,38 + 1090: 20,38 + 1091: 18,38 + 1092: 17,38 + 1238: 16,6 + 1239: 18,6 + 1488: 20,12 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineS + decals: + 232: 3,47 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 81: 15,30 + 82: 16,30 + 83: 17,30 + 84: 18,30 + 85: 19,30 + 86: 21,30 + 87: 22,30 + 88: 23,30 + 89: 24,30 + 90: 25,30 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 173: 9,24 + - node: + color: '#474F52FF' + id: BrickTileWhiteLineW + decals: + 997: 18,2 + 998: 18,3 + 999: 18,1 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 29: 12,47 + 30: 12,48 + 50: 8,43 + 154: 28,25 + - node: + color: '#5E7C16FF' + id: BrickTileWhiteLineW + decals: + 974: 0,1 + 994: 11,1 + 995: 23,1 + 996: 23,3 + 1233: 0,9 + 1234: 0,7 + 1249: 16,15 + 1250: 16,13 + 1253: 0,13 + 1254: 0,15 + 1268: 30,21 + 1269: 30,19 + 1274: 18,21 + 1275: 18,19 + 1293: 6,19 + 1294: 6,21 + 1304: 0,19 + 1305: 0,21 + 1312: 2,27 + 1313: 2,25 + 1319: 18,24 + 1323: 20,34 + 1324: 20,35 + 1325: 20,36 + 1333: 8,38 + 1334: 8,40 + 1350: 24,46 + 1351: 24,44 + 1616: 14,28 + - node: + color: '#D4D4D419' + id: BrickTileWhiteLineW + decals: + 224: 8,10 + 225: 8,6 + 226: 7,2 + 229: 33,36 + 230: 33,34 + 231: 5,45 + 236: 10,31 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 64: 21,45 + 65: 21,46 + 66: 21,47 + 94: 25,20 + 98: 29,13 + 99: 29,14 + 100: 29,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 174: 8,25 + 175: 8,26 + 176: 8,27 + - node: + color: '#A4610696' + id: Dirt + decals: + 484: 31,2 + 485: 32,2 + 486: 33,2 + 487: 30,2 + 488: 33,3 + 489: 31,4 + 490: 32,3 + 491: 32,1 + 492: 31,1 + 493: 31,0 + 494: 33,0 + 495: 32,0 + 496: 33,3 + 497: 33,4 + 498: 32,4 + 499: 31,3 + 500: 32,1 + 501: 33,1 + - node: + cleanable: True + color: '#A4610696' + id: Dirt + decals: + 280: 3,47 + 281: 3,43 + 282: 5,45 + 283: 1,45 + 284: 13,45 + 285: 12,45 + 286: 11,47 + 287: 9,45 + 288: 8,46 + 289: 10,47 + 290: 13,47 + 291: 14,46 + 292: 11,43 + 293: 9,42 + 294: 10,42 + 295: 13,42 + 296: 12,42 + 297: 13,43 + 298: 9,43 + 299: 11,44 + 300: 11,45 + 301: 11,47 + 302: 9,46 + 303: 11,46 + 304: 16,46 + 305: 16,47 + 306: 16,44 + 307: 17,45 + 308: 17,46 + 309: 21,45 + 310: 22,44 + 311: 22,43 + 312: 22,46 + 313: 21,45 + 314: 21,46 + 315: 22,47 + 316: 24,38 + 317: 24,40 + 318: 27,39 + 319: 27,39 + 320: 30,40 + 321: 30,38 + 322: 33,34 + 323: 33,36 + 324: 21,35 + 325: 13,35 + 326: 16,30 + 327: 16,30 + 328: 18,30 + 329: 19,30 + 330: 22,30 + 331: 24,30 + 332: 25,30 + 333: 26,30 + 334: 15,30 + 335: 14,30 + 336: 10,31 + 337: 2,31 + 338: 5,35 + 339: 6,36 + 340: 9,35 + 341: 9,35 + 342: 10,34 + 343: 0,36 + 344: 5,36 + 345: 6,36 + 346: 9,39 + 347: 9,38 + 348: 10,40 + 349: 13,39 + 350: 13,39 + 351: 13,40 + 352: 24,38 + 353: 24,40 + 354: 17,32 + 355: 24,32 + 356: 23,32 + 357: 33,26 + 358: 32,27 + 359: 34,27 + 360: 32,25 + 361: 33,25 + 362: 29,27 + 363: 29,25 + 364: 25,26 + 365: 25,27 + 366: 24,28 + 367: 25,28 + 368: 24,27 + 369: 24,24 + 370: 25,25 + 371: 26,25 + 372: 21,25 + 373: 21,27 + 374: 17,27 + 375: 17,25 + 376: 17,26 + 377: 13,27 + 378: 13,26 + 379: 13,25 + 380: 9,26 + 381: 9,27 + 382: 9,28 + 383: 8,28 + 384: 8,27 + 385: 8,26 + 386: 9,25 + 387: 8,25 + 388: 8,24 + 389: 9,24 + 390: 10,24 + 391: 10,25 + 392: 10,26 + 393: 10,27 + 394: 10,28 + 395: 1,19 + 396: 0,17 + 397: 8,13 + 398: 8,13 + 399: 11,16 + 400: 11,16 + 401: 10,16 + 402: 9,16 + 403: 8,15 + 404: 8,14 + 405: 8,16 + 406: 10,16 + 407: 9,16 + 408: 12,14 + 409: 11,14 + 410: 11,12 + 411: 10,12 + 412: 14,12 + 413: 14,14 + 414: 14,15 + 415: 13,14 + 416: 12,14 + 417: 11,14 + 418: 11,13 + 419: 3,13 + 420: 2,13 + 421: 4,13 + 422: 3,15 + 423: 2,15 + 424: 4,15 + 425: 5,14 + 426: 1,14 + 427: 1,15 + 428: 5,15 + 429: 2,10 + 430: 2,6 + 431: 8,6 + 432: 8,10 + 433: 7,2 + 434: 9,2 + 435: 4,1 + 436: 2,1 + 437: 1,2 + 438: 2,2 + 439: 4,2 + 440: 3,2 + 441: 4,1 + 442: 3,1 + 443: 12,2 + 444: 13,1 + 445: 14,1 + 446: 13,2 + 447: 14,2 + 448: 19,2 + 449: 20,2 + 450: 19,3 + 451: 20,3 + 452: 20,1 + 453: 19,1 + 454: 28,2 + 455: 29,2 + 456: 30,2 + 457: 26,2 + 458: 26,1 + 459: 24,2 + 460: 25,2 + 461: 27,2 + 462: 24,3 + 545: 13,6 + 546: 13,10 + 547: 17,9 + 548: 18,9 + 549: 18,8 + 550: 17,8 + 551: 16,7 + 552: 18,7 + 553: 21,10 + 554: 21,6 + 572: 31,21 + 789: 25,45 + 790: 28,43 + 791: 29,43 + 792: 30,43 + 793: 24,42 + 794: 25,43 + 795: 26,42 + 796: 25,42 + 797: 26,48 + 798: 25,47 + 799: 26,47 + 800: 25,47 + 801: 25,48 + 802: 27,47 + 803: 27,45 + 804: 27,46 + 805: 26,45 + 806: 28,45 + 807: 26,44 + 808: 27,44 + 809: 25,46 + 810: 26,46 + 811: 29,45 + - node: + color: '#A4610696' + id: DirtHeavy + decals: + 502: 11,31 + 503: 1,31 + 504: 5,45 + - node: + cleanable: True + color: '#A4610696' + id: DirtHeavy + decals: + 505: 25,35 + 506: 14,30 + 507: 18,30 + 508: 22,30 + 509: 29,27 + 510: 33,25 + 511: 9,26 + 512: 9,28 + 513: 8,28 + 514: 8,24 + 515: 10,25 + 516: 0,36 + 517: 7,36 + 518: 5,35 + 519: 9,35 + 520: 11,44 + 521: 9,42 + 522: 13,43 + 523: 3,47 + 524: 14,20 + 525: 15,21 + 526: 12,21 + 527: 13,22 + 528: 13,21 + 529: 13,19 + 530: 16,19 + 531: 16,19 + 532: 15,20 + 533: 27,22 + 534: 25,22 + 535: 27,18 + 536: 31,20 + 537: 29,14 + 538: 24,13 + 539: 29,13 + 540: 32,3 + 541: 30,1 + 542: 26,1 + 543: 26,1 + 544: 16,8 + 555: 16,8 + 556: 18,8 + 557: 13,6 + 558: 13,10 + 559: 21,10 + 560: 21,6 + 561: 2,6 + 562: 8,10 + 563: 5,14 + 564: 4,15 + 565: 5,15 + 566: 11,16 + 567: 8,13 + 568: 11,12 + 569: 10,13 + 570: 29,15 + 571: 29,13 + 816: 25,44 + 817: 29,45 + 818: 29,46 + 819: 29,47 + 820: 25,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1367: 0,0 + 1368: 5,1 + 1369: 0,3 + 1370: 3,3 + 1374: 5,3 + 1375: 1,0 + 1376: 11,1 + 1377: 12,0 + 1390: 23,1 + 1391: 29,4 + 1392: 24,4 + 1393: 29,0 + 1394: 25,0 + 1403: 34,1 + 1404: 34,3 + 1405: 34,4 + 1406: 23,2 + 1407: 30,4 + 1413: 20,7 + 1414: 22,7 + 1419: 20,10 + 1420: 22,10 + 1421: 16,10 + 1422: 17,6 + 1423: 16,9 + 1434: 14,8 + 1435: 14,7 + 1436: 12,6 + 1469: 0,12 + 1470: 6,15 + 1471: 3,16 + 1472: 3,12 + 1473: 5,12 + 1474: 1,13 + 1475: 17,15 + 1476: 19,16 + 1477: 18,13 + 1478: 22,14 + 1479: 21,16 + 1480: 21,13 + 1481: 17,13 + 1482: 16,14 + 1483: 16,12 + 1484: 16,15 + 1485: 18,16 + 1486: 22,13 + 1487: 20,12 + 1497: 30,18 + 1498: 33,18 + 1499: 34,22 + 1500: 31,22 + 1523: 29,24 + 1524: 28,26 + 1537: 12,26 + 1540: 5,28 + 1541: 4,24 + 1542: 0,26 + 1555: 26,34 + 1556: 24,36 + 1557: 24,34 + 1558: 24,35 + 1568: 17,35 + 1569: 16,35 + 1570: 14,36 + 1576: 0,35 + 1577: 10,35 + 1584: 0,39 + 1585: 8,38 + 1586: 14,40 + 1587: 14,38 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1359: 0,30 + 1362: 0,32 + 1363: 0,31 + 1378: 11,0 + 1381: 16,1 + 1383: 16,2 + 1388: 12,3 + 1389: 16,3 + 1399: 28,4 + 1400: 30,0 + 1401: 34,0 + 1402: 34,2 + 1431: 12,9 + 1432: 14,9 + 1433: 12,7 + 1439: 12,10 + 1440: 10,6 + 1441: 0,6 + 1442: 0,9 + 1443: 0,7 + 1444: 10,10 + 1445: 9,10 + 1446: 10,8 + 1447: 0,8 + 1453: 10,8 + 1454: 9,10 + 1455: 10,7 + 1456: 0,10 + 1457: 1,10 + 1489: 19,12 + 1490: 21,15 + 1493: 18,15 + 1494: 17,16 + 1495: 30,14 + 1496: 24,14 + 1511: 30,19 + 1514: 32,20 + 1515: 32,28 + 1520: 32,24 + 1521: 34,25 + 1522: 32,28 + 1538: 14,26 + 1539: 5,24 + 1543: 0,28 + 1544: 2,28 + 1545: 2,27 + 1546: 0,24 + 1547: 2,25 + 1553: 34,34 + 1554: 25,34 + 1559: 26,36 + 1560: 34,35 + 1561: 18,34 + 1562: 17,34 + 1563: 18,36 + 1564: 17,36 + 1573: 20,35 + 1574: 20,34 + 1575: 14,34 + 1592: 17,40 + 1593: 20,39 + 1594: 22,40 + 1595: 17,39 + 1596: 18,38 + 1597: 21,38 + 1598: 22,39 + 1599: 22,38 + 1606: 27,48 + 1607: 30,48 + 1608: 30,46 + 1609: 30,45 + 1617: 14,28 + - node: + cleanable: True + color: '#A4610696' + id: DirtLight + decals: + 573: 4,1 + 574: 2,1 + 575: 7,2 + 576: 9,2 + 577: 14,2 + 578: 10,3 + 579: 14,1 + 580: 15,1 + 581: 26,2 + 582: 28,2 + 583: 30,2 + 584: 31,1 + 585: 33,0 + 586: 16,8 + 587: 17,9 + 588: 13,6 + 589: 8,10 + 590: 2,10 + 591: 2,6 + 592: 1,14 + 593: 3,15 + 594: 5,14 + 595: 5,15 + 596: 3,13 + 597: 8,13 + 598: 10,16 + 599: 11,16 + 600: 29,14 + 601: 29,15 + 602: 25,22 + 603: 25,20 + 604: 27,20 + 605: 27,22 + 606: 25,20 + 607: 27,20 + 608: 27,18 + 609: 25,18 + 610: 16,21 + 611: 13,21 + 612: 13,22 + 613: 13,19 + 614: 13,19 + 615: 14,20 + 616: 9,26 + 617: 9,27 + 618: 9,24 + 619: 8,24 + 620: 10,24 + 621: 10,26 + 622: 13,26 + 623: 12,28 + 624: 13,25 + 625: 17,25 + 626: 21,26 + 627: 21,27 + 628: 21,25 + 629: 25,26 + 630: 25,26 + 631: 25,26 + 632: 26,25 + 633: 24,27 + 634: 29,26 + 635: 29,27 + 636: 33,26 + 637: 21,30 + 638: 17,30 + 639: 15,30 + 640: 10,31 + 641: 2,31 + 642: -1,35 + 643: 0,36 + 644: 5,35 + 645: 10,34 + 646: 3,43 + 647: 3,47 + 648: 4,45 + 649: 5,45 + 650: 11,46 + 651: 11,45 + 652: 13,42 + 653: 9,42 + 654: 10,44 + 655: 11,44 + 656: 11,45 + 657: 16,47 + 658: 17,45 + 659: 21,45 + 660: 16,48 + 661: 16,43 + 662: 23,43 + 663: 22,42 + 664: 30,38 + 665: 30,40 + 666: 24,38 + 667: 9,39 + 668: 10,40 + 669: 12,38 + 670: 10,38 + 671: 10,38 + 821: 26,44 + 822: 27,43 + 823: 30,43 + 824: 29,42 + 825: 28,47 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1360: 1,30 + 1361: 1,32 + 1371: 2,3 + 1372: 1,3 + 1373: 4,3 + 1410: 21,7 + 1411: 21,9 + 1412: 21,8 + 1418: 22,6 + 1424: 16,6 + 1425: 18,10 + 1426: 18,6 + 1438: 14,10 + 1448: 0,9 + 1449: 1,10 + 1450: 1,6 + 1451: 9,6 + 1452: 10,9 + 1458: 0,12 + 1459: 0,15 + 1460: 6,13 + 1461: 6,14 + 1462: 6,15 + 1463: 5,16 + 1464: 5,12 + 1501: 30,22 + 1502: 31,18 + 1503: 34,19 + 1504: 32,18 + 1505: 30,20 + 1512: 32,21 + 1513: 32,19 + 1516: 34,28 + 1517: 33,28 + 1525: 29,28 + 1526: 30,26 + 1527: 26,26 + 1532: 16,26 + 1533: 17,24 + 1534: 22,26 + 1565: 18,35 + 1566: 16,34 + 1567: 16,36 + 1578: 0,40 + 1579: 0,39 + 1580: 6,38 + 1581: 6,40 + 1588: 8,39 + 1589: 8,40 + 1590: 14,39 + 1591: 16,40 + 1610: 30,47 + 1611: 28,48 + 1612: 24,44 + 1618: 14,27 + - node: + cleanable: True + color: '#A4610696' + id: DirtMedium + decals: + 672: 3,43 + 673: 1,45 + 674: 11,45 + 675: 21,45 + 676: 24,38 + 677: 33,36 + 678: 33,34 + 679: 5,35 + 680: 1,31 + 681: 2,31 + 682: 11,31 + 683: 9,26 + 684: 8,26 + 685: 9,27 + 686: 9,28 + 687: 10,26 + 688: 10,25 + 689: 9,25 + 690: 13,26 + 691: 25,27 + 692: 24,27 + 693: 24,28 + 694: 24,25 + 695: 25,25 + 696: 24,24 + 697: 26,25 + 698: 25,26 + 699: 25,26 + 700: 25,26 + 701: 29,27 + 702: 29,25 + 703: 33,26 + 704: 31,20 + 705: 25,18 + 706: 25,18 + 707: 27,20 + 708: 27,22 + 709: 29,15 + 710: 29,12 + 711: 24,15 + 712: 24,16 + 713: 17,20 + 714: 15,20 + 715: 14,21 + 716: 15,21 + 717: 16,21 + 718: 15,18 + 719: 16,19 + 720: 16,19 + 721: 13,19 + 722: 12,19 + 723: 12,19 + 724: 12,18 + 725: 15,18 + 726: 15,18 + 727: 2,13 + 728: 3,13 + 729: 8,15 + 730: 8,16 + 731: 9,16 + 732: 9,16 + 733: 24,13 + 734: 30,12 + 735: 29,16 + 736: 24,16 + 737: 24,16 + 738: 25,6 + 739: 24,7 + 740: 26,9 + 741: 27,10 + 742: 28,10 + 743: 34,10 + 744: 34,7 + 745: 33,6 + 746: 30,6 + 747: 27,6 + 748: 16,8 + 749: 18,8 + 750: 8,10 + 751: 2,6 + 752: 4,1 + 753: 3,1 + 754: 7,2 + 755: 9,2 + 756: 13,1 + 757: 15,1 + 758: 26,2 + 759: 29,3 + 760: 30,2 + 761: 33,2 + 762: 33,3 + 763: 31,1 + 812: 28,45 + 813: 26,45 + 814: 28,47 + 815: 27,44 + 826: 27,45 + 827: 26,46 + 828: 26,42 + 829: 25,42 + 830: 25,47 + 831: 25,47 + 832: 26,48 + 833: 26,47 + 834: 26,47 + 835: 26,43 + 836: 26,43 + 837: 27,43 + 838: 6,1 + 839: 10,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1364: 0,1 + 1365: 5,0 + 1366: 1,1 + 1379: 13,0 + 1380: 16,0 + 1382: 11,2 + 1384: 15,3 + 1385: 14,3 + 1386: 13,3 + 1387: 11,3 + 1395: 23,0 + 1396: 23,3 + 1397: 23,4 + 1398: 30,4 + 1408: 22,9 + 1409: 20,8 + 1415: 20,9 + 1416: 22,8 + 1417: 20,6 + 1427: 13,7 + 1428: 12,8 + 1429: 13,9 + 1430: 13,8 + 1437: 14,6 + 1465: 6,12 + 1466: 6,16 + 1467: 0,16 + 1468: 0,15 + 1491: 20,16 + 1492: 19,13 + 1506: 34,20 + 1507: 30,21 + 1508: 33,22 + 1509: 34,18 + 1510: 34,21 + 1518: 33,24 + 1519: 32,26 + 1528: 24,26 + 1529: 20,26 + 1530: 18,26 + 1531: 17,28 + 1535: 13,24 + 1536: 13,28 + 1548: 2,24 + 1549: 0,25 + 1550: 2,27 + 1551: 0,27 + 1552: 34,36 + 1571: 14,35 + 1572: 20,35 + 1582: 6,39 + 1583: 0,38 + 1600: 16,38 + 1601: 20,38 + 1602: 16,40 + 1603: 21,39 + 1604: 16,39 + 1605: 22,39 + 1613: 24,46 + 1614: 24,45 + - node: + color: '#D4D4D41B' + id: FullTileOverlayGreyscale + decals: + 463: 31,4 + 464: 31,3 + 465: 31,2 + 466: 31,1 + 467: 31,0 + - node: + color: '#D4D4D433' + id: FullTileOverlayGreyscale + decals: + 468: 32,0 + 469: 32,1 + 470: 32,2 + 471: 32,3 + 472: 32,4 + - node: + color: '#D4D4D44C' + id: FullTileOverlayGreyscale + decals: + 473: 33,0 + 474: 33,1 + 475: 33,2 + 476: 33,3 + 477: 33,4 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale + decals: + 250: 3,47 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale + decals: + 220: 3,43 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale180 + decals: + 251: 3,43 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale180 + decals: + 221: 3,47 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale270 + decals: + 237: 30,2 + 238: 9,2 + 241: 2,6 + 242: 2,10 + 245: 2,31 + 249: 1,45 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale270 + decals: + 209: 7,2 + 210: 8,6 + 211: 8,10 + 215: 10,31 + 216: 33,34 + 217: 33,36 + 218: 5,45 + - node: + color: '#D4D4D40C' + id: HalfTileOverlayGreyscale90 + decals: + 239: 7,2 + 240: 8,6 + 243: 8,10 + 244: 10,31 + 246: 33,34 + 247: 33,36 + 248: 5,45 + - node: + color: '#D4D4D419' + id: HalfTileOverlayGreyscale90 + decals: + 207: 30,2 + 208: 9,2 + 212: 2,6 + 213: 2,10 + 214: 2,31 + 219: 1,45 + - node: + color: '#5E7C16FF' + id: MiniTileCheckerAOverlay + decals: + 1093: 12,7 + 1094: 12,8 + 1095: 12,9 + 1096: 13,9 + 1097: 14,9 + 1098: 14,8 + 1099: 13,8 + 1100: 13,7 + 1101: 14,7 + 1102: 21,8 + 1103: 20,8 + 1104: 20,9 + 1105: 21,9 + 1106: 22,9 + 1107: 22,8 + 1108: 22,7 + 1109: 21,7 + 1110: 20,7 + 1141: 17,39 + 1142: 18,39 + 1143: 19,39 + 1144: 20,39 + 1145: 21,39 + 1148: 17,13 + 1149: 17,14 + 1150: 17,15 + 1151: 18,15 + 1152: 19,13 + 1153: 18,13 + 1154: 18,14 + 1155: 19,14 + 1156: 19,15 + 1157: 20,15 + 1158: 21,15 + 1159: 21,14 + 1160: 20,14 + 1161: 20,13 + 1162: 21,13 + - node: + color: '#9FED5896' + id: MiniTileCheckerAOverlay + decals: + 764: 28,42 + 765: 29,42 + 766: 30,42 + 767: 28,43 + 768: 29,43 + 769: 30,43 + 770: 28,44 + 771: 29,44 + 772: 30,44 + - node: + color: '#FFFFFFFF' + id: MiniTileCheckerAOverlay + decals: + 781: 28,46 + 782: 28,47 + 783: 29,47 + 784: 29,46 + - node: + color: '#5E7C16FF' + id: MiniTileCheckerBOverlay + decals: + 1111: 32,20 + 1112: 32,21 + 1113: 32,19 + 1114: 21,19 + 1115: 20,19 + 1116: 19,19 + 1117: 19,20 + 1118: 19,21 + 1119: 20,21 + 1120: 21,21 + 1121: 21,20 + 1122: 20,20 + 1123: 9,19 + 1124: 8,19 + 1125: 7,19 + 1126: 7,20 + 1127: 7,21 + 1128: 8,21 + 1129: 9,21 + 1130: 9,20 + 1131: 8,20 + 1132: 18,34 + 1133: 17,34 + 1134: 16,34 + 1135: 16,35 + 1136: 16,36 + 1137: 17,36 + 1138: 17,35 + 1139: 18,35 + 1140: 18,36 + - node: + color: '#9FED5896' + id: MiniTileCheckerBOverlay + decals: + 0: 31,21 + 1: 31,20 + 2: 31,19 + 3: 33,21 + 4: 33,20 + 5: 33,19 + - node: + color: '#5E7C16FF' + id: StandClear + decals: + 963: 6,2 + 966: 10,2 + - node: + color: '#DE3A3A96' + id: StandClearGreyscale + decals: + 204: 26,7 + 205: 32,7 + 206: 29,9 + - node: + color: '#5E7C16FF' + id: Tunnel + decals: + 1358: 3,34 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 126: 13,40 + 200: 34,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 127: 9,40 + 194: 24,10 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 125: 13,38 + 199: 34,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 119: 9,38 + 193: 24,6 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 140: 32,35 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 128: 13,39 + 129: 26,35 + 197: 34,7 + 198: 34,9 + 1048: 26,36 + 1049: 26,34 + - node: + color: '#5E7C16FF' + id: WarnLineGreyscaleE + decals: + 852: 16,2 + 853: 5,2 + 854: 10,8 + 855: 34,2 + 856: 34,8 + 857: 34,20 + 858: 34,26 + 859: 30,26 + 860: 26,26 + 861: 22,26 + 862: 18,26 + 863: 14,26 + 864: 2,26 + 865: 12,31 + 866: 26,31 + 867: 34,35 + 868: 30,39 + 869: 30,45 + 870: 22,45 + 871: 14,45 + 872: 6,45 + 873: 6,39 + 874: 10,35 + 875: 14,39 + 876: 22,35 + 877: 22,39 + 878: 30,14 + 879: 22,14 + 880: 6,14 + 942: 4,20 + 1011: 21,2 + 1282: 22,20 + 1283: 16,20 + 1284: 10,20 + - node: + color: '#5E7C16FF' + id: WarnLineGreyscaleN + decals: + 881: 29,10 + 882: 17,10 + 883: 3,16 + 884: 19,16 + 885: 32,22 + 886: 26,22 + 887: 20,22 + 888: 14,22 + 889: 8,22 + 890: 2,22 + 891: 1,28 + 892: 5,28 + 893: 13,28 + 894: 17,28 + 895: 21,28 + 896: 29,28 + 897: 29,36 + 898: 19,40 + 899: 11,40 + 900: 3,48 + 901: 11,48 + 902: 27,48 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 145: 27,35 + 146: 28,35 + 147: 30,35 + 148: 31,35 + 1038: 29,35 + - node: + color: '#5E7C16FF' + id: WarnLineGreyscaleS + decals: + 903: 26,0 + 904: 17,6 + 905: 29,6 + 906: 19,12 + 907: 3,12 + 908: 2,18 + 909: 8,18 + 910: 14,18 + 911: 20,18 + 912: 26,18 + 913: 32,18 + 914: 33,24 + 915: 29,24 + 916: 25,24 + 917: 21,24 + 918: 17,24 + 919: 13,24 + 920: 5,24 + 921: 1,24 + 922: 20,30 + 923: 29,34 + 924: 11,38 + 925: 19,38 + 926: 27,42 + 927: 11,42 + 928: 3,42 + 1320: 32,28 + 1321: 33,28 + 1322: 34,28 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 141: 27,35 + 142: 28,35 + 143: 30,35 + 144: 31,35 + 1039: 29,35 + - node: + color: '#5E7C16FF' + id: WarnLineGreyscaleW + decals: + 929: 0,2 + 930: 11,2 + 931: 23,2 + 932: 24,8 + 933: 0,8 + 934: 0,14 + 935: 16,14 + 936: 24,14 + 937: 30,20 + 938: 18,20 + 939: 12,20 + 940: 6,20 + 941: 0,20 + 943: 0,26 + 944: 12,26 + 945: 16,26 + 946: 20,26 + 947: 24,26 + 948: 28,26 + 949: 32,26 + 950: 14,31 + 951: 0,31 + 952: 0,35 + 953: 12,35 + 954: 24,35 + 955: 24,39 + 956: 16,39 + 957: 8,39 + 958: 0,39 + 959: 0,45 + 960: 8,45 + 961: 16,45 + 962: 24,45 + 1012: 18,2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 122: 10,38 + 123: 12,38 + 130: 27,34 + 131: 28,34 + 132: 30,34 + 133: 31,34 + 134: 32,34 + 185: 28,6 + 186: 27,6 + 187: 26,6 + 188: 25,6 + 189: 30,6 + 190: 31,6 + 191: 32,6 + 192: 33,6 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 124: 9,39 + 195: 24,7 + 196: 24,9 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 120: 10,40 + 121: 12,40 + 135: 27,36 + 136: 28,36 + 137: 30,36 + 138: 31,36 + 139: 32,36 + 177: 25,10 + 178: 26,10 + 179: 28,10 + 180: 27,10 + 181: 30,10 + 182: 31,10 + 183: 32,10 + 184: 33,10 + - node: + cleanable: True + color: '#80C71F7F' + id: revolution + decals: + 850: 14.060958,20.754644 + 851: 13.607299,19.803425 + - node: + cleanable: True + color: '#B02E60A3' + id: revolution + decals: + 849: 25.02975,25.438416 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#B02E2644' + id: splatter + decals: + 845: 27.967218,24.104916 + - node: + cleanable: True + color: '#B02E2666' + id: splatter + decals: + 840: 8.891183,43.065514 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#B02E266F' + id: splatter + decals: + 846: 32.200607,35.087025 + 847: 13.24002,46.473877 + 848: 24.497486,47.84553 + - node: + cleanable: True + angle: -4.71238898038469 rad + color: '#B02E26B4' + id: splatter + decals: + 842: 8.788744,42.524048 + 843: 15.538555,20.953827 + 844: 24.864944,27.488853 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#B02E26B4' + id: splatter + decals: + 841: 9.110695,42.81673 + type: DecalGrid + - type: RadiationGridResistance + - type: LoadedMap + - type: SpreaderGrid + - type: GridTree + - type: MovedGrids + - type: GridPathfinding +- proto: AirlockEngineering + entities: + - uid: 1515 + components: + - pos: 19.5,43.5 + parent: 588 + type: Transform +- proto: AirlockMercenaryGlassLocked + entities: + - uid: 254 + components: + - pos: 15.5,35.5 + parent: 588 + type: Transform + - uid: 262 + components: + - pos: 19.5,35.5 + parent: 588 + type: Transform + - uid: 263 + components: + - pos: 22.5,2.5 + parent: 588 + type: Transform + - uid: 265 + components: + - pos: 11.5,15.5 + parent: 588 + type: Transform + - uid: 276 + components: + - pos: 19.5,8.5 + parent: 588 + type: Transform + - uid: 286 + components: + - pos: 15.5,8.5 + parent: 588 + type: Transform + - uid: 287 + components: + - pos: 10.5,2.5 + parent: 588 + type: Transform + - uid: 339 + components: + - pos: 6.5,2.5 + parent: 588 + type: Transform +- proto: AmmoTechFabCircuitboard + entities: + - uid: 1216 + components: + - pos: 32.555534,8.5612135 + parent: 588 + type: Transform +- proto: APCBasic + entities: + - uid: 484 + components: + - pos: 25.5,13.5 + parent: 588 + type: Transform + - uid: 773 + components: + - pos: 25.5,19.5 + parent: 588 + type: Transform + - uid: 973 + components: + - pos: 21.5,32.5 + parent: 588 + type: Transform + - uid: 1509 + components: + - rot: 3.141592653589793 rad + pos: 19.5,47.5 + parent: 588 + type: Transform +- proto: BannerRevolution + entities: + - uid: 372 + components: + - pos: 18.5,10.5 + parent: 588 + type: Transform + - uid: 374 + components: + - pos: 16.5,6.5 + parent: 588 + type: Transform +- proto: BasaltFive + entities: + - uid: 608 + components: + - pos: 2.5,14.5 + parent: 588 + type: Transform + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 588 + type: Transform + - uid: 899 + components: + - rot: 3.141592653589793 rad + pos: 10.5,30.5 + parent: 588 + type: Transform + - uid: 1264 + components: + - pos: 9.5,0.5 + parent: 588 + type: Transform + - uid: 1384 + components: + - pos: 5.5,48.5 + parent: 588 + type: Transform + - uid: 1386 + components: + - pos: 0.5,47.5 + parent: 588 + type: Transform + - uid: 1387 + components: + - pos: 0.5,42.5 + parent: 588 + type: Transform + - uid: 1388 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 588 + type: Transform +- proto: BasaltFour + entities: + - uid: 900 + components: + - rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 588 + type: Transform + - uid: 904 + components: + - rot: 3.141592653589793 rad + pos: 2.5,40.5 + parent: 588 + type: Transform + - uid: 1381 + components: + - pos: 1.5,44.5 + parent: 588 + type: Transform + - uid: 1385 + components: + - pos: 6.5,48.5 + parent: 588 + type: Transform +- proto: BasaltOne + entities: + - uid: 813 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + type: Transform + - uid: 897 + components: + - rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + type: Transform + - uid: 901 + components: + - rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 588 + type: Transform + - uid: 903 + components: + - rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 588 + type: Transform + - uid: 1382 + components: + - pos: 1.5,48.5 + parent: 588 + type: Transform +- proto: BasaltRandom + entities: + - uid: 613 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 588 + type: Transform + - uid: 615 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 588 + type: Transform +- proto: BasaltThree + entities: + - uid: 616 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 588 + type: Transform + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 588 + type: Transform + - uid: 898 + components: + - rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + type: Transform + - uid: 905 + components: + - pos: 4.5,38.5 + parent: 588 + type: Transform + - uid: 1265 + components: + - pos: 7.5,1.5 + parent: 588 + type: Transform + - uid: 1266 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + type: Transform + - uid: 1383 + components: + - pos: 6.5,47.5 + parent: 588 + type: Transform +- proto: BasaltTwo + entities: + - uid: 610 + components: + - pos: 3.5,14.5 + parent: 588 + type: Transform + - uid: 617 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 588 + type: Transform + - uid: 618 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 588 + type: Transform + - uid: 646 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 588 + type: Transform + - uid: 814 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + type: Transform + - uid: 896 + components: + - rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 588 + type: Transform + - uid: 902 + components: + - rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + type: Transform + - uid: 1263 + components: + - pos: 7.5,4.5 + parent: 588 + type: Transform + - uid: 1380 + components: + - pos: 1.5,43.5 + parent: 588 + type: Transform +- proto: Bed + entities: + - uid: 257 + components: + - pos: 15.5,4.5 + parent: 588 + type: Transform + - uid: 282 + components: + - pos: 1.5,4.5 + parent: 588 + type: Transform + - uid: 293 + components: + - pos: 3.5,4.5 + parent: 588 + type: Transform + - uid: 294 + components: + - pos: 5.5,4.5 + parent: 588 + type: Transform + - uid: 295 + components: + - pos: 11.5,4.5 + parent: 588 + type: Transform + - uid: 296 + components: + - pos: 13.5,4.5 + parent: 588 + type: Transform + - uid: 700 + components: + - pos: 12.5,22.5 + parent: 588 + type: Transform + - uid: 701 + components: + - pos: 16.5,18.5 + parent: 588 + type: Transform + - uid: 1043 + components: + - pos: 20.5,28.5 + parent: 588 + type: Transform + - uid: 1044 + components: + - pos: 22.5,24.5 + parent: 588 + type: Transform + - uid: 1075 + components: + - pos: 24.5,28.5 + parent: 588 + type: Transform + - uid: 1099 + components: + - pos: 20.5,36.5 + parent: 588 + type: Transform + - uid: 1100 + components: + - pos: 14.5,34.5 + parent: 588 + type: Transform + - uid: 1763 + components: + - pos: 24.5,48.5 + parent: 588 + type: Transform + - uid: 1764 + components: + - pos: 24.5,42.5 + parent: 588 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 1150 + components: + - pos: 28.5,24.5 + parent: 588 + type: Transform + - uid: 1151 + components: + - pos: 28.5,25.5 + parent: 588 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 298 + components: + - pos: 3.5,4.5 + parent: 588 + type: Transform + - uid: 299 + components: + - pos: 5.5,4.5 + parent: 588 + type: Transform + - uid: 300 + components: + - pos: 13.5,4.5 + parent: 588 + type: Transform + - uid: 1765 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 588 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 301 + components: + - pos: 11.5,4.5 + parent: 588 + type: Transform + - uid: 1041 + components: + - pos: 20.5,28.5 + parent: 588 + type: Transform + - uid: 1225 + components: + - pos: 14.5,34.5 + parent: 588 + type: Transform + - uid: 1226 + components: + - pos: 20.5,36.5 + parent: 588 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 1037 + components: + - pos: 22.5,24.5 + parent: 588 + type: Transform + - uid: 1766 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,48.5 + parent: 588 + type: Transform +- proto: BlastDoor + entities: + - uid: 1600 + components: + - pos: 26.5,7.5 + parent: 588 + type: Transform + - uid: 1601 + components: + - pos: 29.5,9.5 + parent: 588 + type: Transform + - uid: 1602 + components: + - pos: 32.5,7.5 + parent: 588 + type: Transform +- proto: Bola + entities: + - uid: 1157 + components: + - pos: 15.616387,0.61007345 + parent: 588 + type: Transform +- proto: BookHowToSurvive + entities: + - uid: 329 + components: + - pos: 19.515087,0.66057134 + parent: 588 + type: Transform +- proto: BookRandom + entities: + - uid: 1835 + components: + - pos: 24.420084,44.539436 + parent: 588 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 340 + components: + - pos: 21.640549,3.6813393 + parent: 588 + type: Transform + - uid: 341 + components: + - pos: 24.823723,1.650089 + parent: 588 + type: Transform + - uid: 365 + components: + - pos: 27.841173,1.5632035 + parent: 588 + type: Transform + - uid: 728 + components: + - pos: 10.690479,19.262342 + parent: 588 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 364 + components: + - pos: 25.072409,1.4780562 + parent: 588 + type: Transform + - uid: 727 + components: + - pos: 7.2148314,22.575037 + parent: 588 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 726 + components: + - pos: 10.428753,19.429379 + parent: 588 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 342 + components: + - pos: 28.104973,1.6709224 + parent: 588 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 1476 + components: + - pos: 12.356534,44.605965 + parent: 588 + type: Transform +- proto: BoxMRE + entities: + - uid: 1027 + components: + - pos: 6.6091695,19.790632 + parent: 588 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 1477 + components: + - pos: 12.683106,44.705303 + parent: 588 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 325 + components: + - pos: 19.413612,4.6972914 + parent: 588 + type: Transform +- proto: BrokenBottle + entities: + - uid: 1691 + components: + - rot: -1.5707963267948966 rad + pos: 25.063513,27.520548 + parent: 588 + type: Transform +- proto: Bucket + entities: + - uid: 1839 + components: + - pos: 29.616838,43.531868 + parent: 588 + type: Transform + - uid: 1857 + components: + - pos: 30.264944,21.705044 + parent: 588 + type: Transform +- proto: CableApcExtension + entities: + - uid: 1 + components: + - pos: 0.5,2.5 + parent: 588 + type: Transform + - uid: 2 + components: + - pos: 1.5,2.5 + parent: 588 + type: Transform + - uid: 3 + components: + - pos: 2.5,2.5 + parent: 588 + type: Transform + - uid: 4 + components: + - pos: 3.5,2.5 + parent: 588 + type: Transform + - uid: 5 + components: + - pos: 4.5,2.5 + parent: 588 + type: Transform + - uid: 6 + components: + - pos: 5.5,2.5 + parent: 588 + type: Transform + - uid: 7 + components: + - pos: 6.5,2.5 + parent: 588 + type: Transform + - uid: 8 + components: + - pos: 7.5,2.5 + parent: 588 + type: Transform + - uid: 9 + components: + - pos: 8.5,2.5 + parent: 588 + type: Transform + - uid: 10 + components: + - pos: 9.5,2.5 + parent: 588 + type: Transform + - uid: 11 + components: + - pos: 10.5,2.5 + parent: 588 + type: Transform + - uid: 12 + components: + - pos: 11.5,2.5 + parent: 588 + type: Transform + - uid: 13 + components: + - pos: 12.5,2.5 + parent: 588 + type: Transform + - uid: 14 + components: + - pos: 13.5,2.5 + parent: 588 + type: Transform + - uid: 15 + components: + - pos: 14.5,2.5 + parent: 588 + type: Transform + - uid: 16 + components: + - pos: 15.5,2.5 + parent: 588 + type: Transform + - uid: 17 + components: + - pos: 16.5,2.5 + parent: 588 + type: Transform + - uid: 18 + components: + - pos: 8.5,4.5 + parent: 588 + type: Transform + - uid: 19 + components: + - pos: 8.5,3.5 + parent: 588 + type: Transform + - uid: 20 + components: + - pos: 8.5,1.5 + parent: 588 + type: Transform + - uid: 21 + components: + - pos: 8.5,0.5 + parent: 588 + type: Transform + - uid: 22 + components: + - pos: 18.5,2.5 + parent: 588 + type: Transform + - uid: 23 + components: + - pos: 19.5,2.5 + parent: 588 + type: Transform + - uid: 24 + components: + - pos: 20.5,2.5 + parent: 588 + type: Transform + - uid: 25 + components: + - pos: 21.5,2.5 + parent: 588 + type: Transform + - uid: 26 + components: + - pos: 22.5,2.5 + parent: 588 + type: Transform + - uid: 27 + components: + - pos: 23.5,2.5 + parent: 588 + type: Transform + - uid: 28 + components: + - pos: 24.5,2.5 + parent: 588 + type: Transform + - uid: 29 + components: + - pos: 25.5,2.5 + parent: 588 + type: Transform + - uid: 30 + components: + - pos: 26.5,2.5 + parent: 588 + type: Transform + - uid: 31 + components: + - pos: 27.5,2.5 + parent: 588 + type: Transform + - uid: 32 + components: + - pos: 28.5,2.5 + parent: 588 + type: Transform + - uid: 33 + components: + - pos: 29.5,2.5 + parent: 588 + type: Transform + - uid: 34 + components: + - pos: 30.5,2.5 + parent: 588 + type: Transform + - uid: 35 + components: + - pos: 31.5,2.5 + parent: 588 + type: Transform + - uid: 36 + components: + - pos: 32.5,2.5 + parent: 588 + type: Transform + - uid: 37 + components: + - pos: 33.5,2.5 + parent: 588 + type: Transform + - uid: 38 + components: + - pos: 34.5,2.5 + parent: 588 + type: Transform + - uid: 39 + components: + - pos: 26.5,4.5 + parent: 588 + type: Transform + - uid: 40 + components: + - pos: 26.5,3.5 + parent: 588 + type: Transform + - uid: 41 + components: + - pos: 26.5,1.5 + parent: 588 + type: Transform + - uid: 42 + components: + - pos: 26.5,0.5 + parent: 588 + type: Transform + - uid: 43 + components: + - pos: 0.5,8.5 + parent: 588 + type: Transform + - uid: 44 + components: + - pos: 1.5,8.5 + parent: 588 + type: Transform + - uid: 52 + components: + - pos: 9.5,8.5 + parent: 588 + type: Transform + - uid: 53 + components: + - pos: 10.5,8.5 + parent: 588 + type: Transform + - uid: 54 + components: + - pos: 5.5,10.5 + parent: 588 + type: Transform + - uid: 57 + components: + - pos: 5.5,6.5 + parent: 588 + type: Transform + - uid: 58 + components: + - pos: 17.5,6.5 + parent: 588 + type: Transform + - uid: 59 + components: + - pos: 17.5,7.5 + parent: 588 + type: Transform + - uid: 60 + components: + - pos: 17.5,8.5 + parent: 588 + type: Transform + - uid: 61 + components: + - pos: 17.5,9.5 + parent: 588 + type: Transform + - uid: 62 + components: + - pos: 17.5,10.5 + parent: 588 + type: Transform + - uid: 63 + components: + - pos: 12.5,8.5 + parent: 588 + type: Transform + - uid: 64 + components: + - pos: 13.5,8.5 + parent: 588 + type: Transform + - uid: 65 + components: + - pos: 14.5,8.5 + parent: 588 + type: Transform + - uid: 66 + components: + - pos: 15.5,8.5 + parent: 588 + type: Transform + - uid: 67 + components: + - pos: 16.5,8.5 + parent: 588 + type: Transform + - uid: 68 + components: + - pos: 18.5,8.5 + parent: 588 + type: Transform + - uid: 69 + components: + - pos: 19.5,8.5 + parent: 588 + type: Transform + - uid: 70 + components: + - pos: 20.5,8.5 + parent: 588 + type: Transform + - uid: 71 + components: + - pos: 21.5,8.5 + parent: 588 + type: Transform + - uid: 72 + components: + - pos: 22.5,8.5 + parent: 588 + type: Transform + - uid: 73 + components: + - pos: 22.5,14.5 + parent: 588 + type: Transform + - uid: 74 + components: + - pos: 21.5,14.5 + parent: 588 + type: Transform + - uid: 75 + components: + - pos: 20.5,14.5 + parent: 588 + type: Transform + - uid: 76 + components: + - pos: 19.5,14.5 + parent: 588 + type: Transform + - uid: 77 + components: + - pos: 18.5,14.5 + parent: 588 + type: Transform + - uid: 78 + components: + - pos: 17.5,14.5 + parent: 588 + type: Transform + - uid: 79 + components: + - pos: 16.5,14.5 + parent: 588 + type: Transform + - uid: 80 + components: + - pos: 19.5,13.5 + parent: 588 + type: Transform + - uid: 81 + components: + - pos: 19.5,12.5 + parent: 588 + type: Transform + - uid: 82 + components: + - pos: 19.5,15.5 + parent: 588 + type: Transform + - uid: 83 + components: + - pos: 19.5,16.5 + parent: 588 + type: Transform + - uid: 84 + components: + - pos: 14.5,14.5 + parent: 588 + type: Transform + - uid: 85 + components: + - pos: 13.5,14.5 + parent: 588 + type: Transform + - uid: 86 + components: + - pos: 12.5,14.5 + parent: 588 + type: Transform + - uid: 87 + components: + - pos: 11.5,14.5 + parent: 588 + type: Transform + - uid: 88 + components: + - pos: 10.5,14.5 + parent: 588 + type: Transform + - uid: 89 + components: + - pos: 9.5,14.5 + parent: 588 + type: Transform + - uid: 90 + components: + - pos: 8.5,14.5 + parent: 588 + type: Transform + - uid: 91 + components: + - pos: 11.5,13.5 + parent: 588 + type: Transform + - uid: 92 + components: + - pos: 11.5,12.5 + parent: 588 + type: Transform + - uid: 93 + components: + - pos: 11.5,15.5 + parent: 588 + type: Transform + - uid: 94 + components: + - pos: 11.5,16.5 + parent: 588 + type: Transform + - uid: 95 + components: + - pos: 6.5,14.5 + parent: 588 + type: Transform + - uid: 96 + components: + - pos: 5.5,14.5 + parent: 588 + type: Transform + - uid: 98 + components: + - pos: 4.5,22.5 + parent: 588 + type: Transform + - uid: 100 + components: + - pos: 1.5,14.5 + parent: 588 + type: Transform + - uid: 101 + components: + - pos: 0.5,14.5 + parent: 588 + type: Transform + - uid: 102 + components: + - pos: 3.5,15.5 + parent: 588 + type: Transform + - uid: 103 + components: + - pos: 3.5,16.5 + parent: 588 + type: Transform + - uid: 104 + components: + - pos: 3.5,13.5 + parent: 588 + type: Transform + - uid: 105 + components: + - pos: 3.5,12.5 + parent: 588 + type: Transform + - uid: 106 + components: + - pos: 14.5,18.5 + parent: 588 + type: Transform + - uid: 107 + components: + - pos: 14.5,19.5 + parent: 588 + type: Transform + - uid: 108 + components: + - pos: 14.5,20.5 + parent: 588 + type: Transform + - uid: 109 + components: + - pos: 14.5,21.5 + parent: 588 + type: Transform + - uid: 110 + components: + - pos: 14.5,22.5 + parent: 588 + type: Transform + - uid: 111 + components: + - pos: 15.5,20.5 + parent: 588 + type: Transform + - uid: 112 + components: + - pos: 16.5,20.5 + parent: 588 + type: Transform + - uid: 113 + components: + - pos: 13.5,20.5 + parent: 588 + type: Transform + - uid: 114 + components: + - pos: 12.5,20.5 + parent: 588 + type: Transform + - uid: 115 + components: + - pos: 8.5,18.5 + parent: 588 + type: Transform + - uid: 116 + components: + - pos: 8.5,19.5 + parent: 588 + type: Transform + - uid: 117 + components: + - pos: 8.5,20.5 + parent: 588 + type: Transform + - uid: 118 + components: + - pos: 8.5,21.5 + parent: 588 + type: Transform + - uid: 119 + components: + - pos: 8.5,22.5 + parent: 588 + type: Transform + - uid: 120 + components: + - pos: 9.5,20.5 + parent: 588 + type: Transform + - uid: 121 + components: + - pos: 10.5,20.5 + parent: 588 + type: Transform + - uid: 122 + components: + - pos: 7.5,20.5 + parent: 588 + type: Transform + - uid: 123 + components: + - pos: 6.5,20.5 + parent: 588 + type: Transform + - uid: 124 + components: + - pos: 2.5,22.5 + parent: 588 + type: Transform + - uid: 125 + components: + - pos: 4.5,21.5 + parent: 588 + type: Transform + - uid: 126 + components: + - pos: 4.5,19.5 + parent: 588 + type: Transform + - uid: 127 + components: + - pos: 3.5,18.5 + parent: 588 + type: Transform + - uid: 128 + components: + - pos: 2.5,18.5 + parent: 588 + type: Transform + - uid: 129 + components: + - pos: 3.5,22.5 + parent: 588 + type: Transform + - uid: 130 + components: + - pos: 0.5,20.5 + parent: 588 + type: Transform + - uid: 131 + components: + - pos: 4.5,18.5 + parent: 588 + type: Transform + - uid: 132 + components: + - pos: 4.5,20.5 + parent: 588 + type: Transform + - uid: 133 + components: + - pos: 1.5,24.5 + parent: 588 + type: Transform + - uid: 134 + components: + - pos: 2.5,25.5 + parent: 588 + type: Transform + - uid: 135 + components: + - pos: 0.5,24.5 + parent: 588 + type: Transform + - uid: 136 + components: + - pos: 2.5,24.5 + parent: 588 + type: Transform + - uid: 137 + components: + - pos: 1.5,28.5 + parent: 588 + type: Transform + - uid: 138 + components: + - pos: 0.5,26.5 + parent: 588 + type: Transform + - uid: 139 + components: + - pos: 2.5,26.5 + parent: 588 + type: Transform + - uid: 147 + components: + - pos: 9.5,28.5 + parent: 588 + type: Transform + - uid: 148 + components: + - pos: 9.5,27.5 + parent: 588 + type: Transform + - uid: 149 + components: + - pos: 9.5,26.5 + parent: 588 + type: Transform + - uid: 150 + components: + - pos: 9.5,25.5 + parent: 588 + type: Transform + - uid: 151 + components: + - pos: 9.5,24.5 + parent: 588 + type: Transform + - uid: 152 + components: + - pos: 8.5,26.5 + parent: 588 + type: Transform + - uid: 153 + components: + - pos: 10.5,26.5 + parent: 588 + type: Transform + - uid: 154 + components: + - pos: 13.5,28.5 + parent: 588 + type: Transform + - uid: 155 + components: + - pos: 13.5,27.5 + parent: 588 + type: Transform + - uid: 156 + components: + - pos: 13.5,26.5 + parent: 588 + type: Transform + - uid: 157 + components: + - pos: 13.5,25.5 + parent: 588 + type: Transform + - uid: 158 + components: + - pos: 13.5,24.5 + parent: 588 + type: Transform + - uid: 159 + components: + - pos: 12.5,26.5 + parent: 588 + type: Transform + - uid: 160 + components: + - pos: 14.5,26.5 + parent: 588 + type: Transform + - uid: 161 + components: + - pos: 0.5,31.5 + parent: 588 + type: Transform + - uid: 162 + components: + - pos: 1.5,31.5 + parent: 588 + type: Transform + - uid: 163 + components: + - pos: 2.5,31.5 + parent: 588 + type: Transform + - uid: 164 + components: + - pos: 3.5,31.5 + parent: 588 + type: Transform + - uid: 165 + components: + - pos: 4.5,31.5 + parent: 588 + type: Transform + - uid: 166 + components: + - pos: 5.5,31.5 + parent: 588 + type: Transform + - uid: 167 + components: + - pos: 6.5,31.5 + parent: 588 + type: Transform + - uid: 168 + components: + - pos: 7.5,31.5 + parent: 588 + type: Transform + - uid: 169 + components: + - pos: 8.5,31.5 + parent: 588 + type: Transform + - uid: 170 + components: + - pos: 9.5,31.5 + parent: 588 + type: Transform + - uid: 171 + components: + - pos: 10.5,31.5 + parent: 588 + type: Transform + - uid: 172 + components: + - pos: 11.5,31.5 + parent: 588 + type: Transform + - uid: 173 + components: + - pos: 12.5,31.5 + parent: 588 + type: Transform + - uid: 174 + components: + - pos: 6.5,30.5 + parent: 588 + type: Transform + - uid: 175 + components: + - pos: 6.5,32.5 + parent: 588 + type: Transform + - uid: 176 + components: + - pos: 26.5,31.5 + parent: 588 + type: Transform + - uid: 177 + components: + - pos: 25.5,31.5 + parent: 588 + type: Transform + - uid: 178 + components: + - pos: 24.5,31.5 + parent: 588 + type: Transform + - uid: 179 + components: + - pos: 23.5,31.5 + parent: 588 + type: Transform + - uid: 180 + components: + - pos: 22.5,31.5 + parent: 588 + type: Transform + - uid: 181 + components: + - pos: 21.5,31.5 + parent: 588 + type: Transform + - uid: 182 + components: + - pos: 20.5,31.5 + parent: 588 + type: Transform + - uid: 183 + components: + - pos: 19.5,31.5 + parent: 588 + type: Transform + - uid: 184 + components: + - pos: 18.5,31.5 + parent: 588 + type: Transform + - uid: 185 + components: + - pos: 17.5,31.5 + parent: 588 + type: Transform + - uid: 186 + components: + - pos: 16.5,31.5 + parent: 588 + type: Transform + - uid: 187 + components: + - pos: 15.5,31.5 + parent: 588 + type: Transform + - uid: 188 + components: + - pos: 14.5,31.5 + parent: 588 + type: Transform + - uid: 189 + components: + - pos: 20.5,32.5 + parent: 588 + type: Transform + - uid: 190 + components: + - pos: 20.5,30.5 + parent: 588 + type: Transform + - uid: 191 + components: + - pos: 22.5,35.5 + parent: 588 + type: Transform + - uid: 192 + components: + - pos: 21.5,35.5 + parent: 588 + type: Transform + - uid: 193 + components: + - pos: 20.5,35.5 + parent: 588 + type: Transform + - uid: 194 + components: + - pos: 19.5,35.5 + parent: 588 + type: Transform + - uid: 195 + components: + - pos: 18.5,35.5 + parent: 588 + type: Transform + - uid: 196 + components: + - pos: 17.5,35.5 + parent: 588 + type: Transform + - uid: 197 + components: + - pos: 16.5,35.5 + parent: 588 + type: Transform + - uid: 198 + components: + - pos: 15.5,35.5 + parent: 588 + type: Transform + - uid: 199 + components: + - pos: 14.5,35.5 + parent: 588 + type: Transform + - uid: 200 + components: + - pos: 13.5,35.5 + parent: 588 + type: Transform + - uid: 201 + components: + - pos: 12.5,35.5 + parent: 588 + type: Transform + - uid: 202 + components: + - pos: 17.5,36.5 + parent: 588 + type: Transform + - uid: 203 + components: + - pos: 17.5,34.5 + parent: 588 + type: Transform + - uid: 204 + components: + - pos: 10.5,35.5 + parent: 588 + type: Transform + - uid: 215 + components: + - pos: 5.5,36.5 + parent: 588 + type: Transform + - uid: 216 + components: + - pos: 5.5,34.5 + parent: 588 + type: Transform + - uid: 217 + components: + - pos: 0.5,39.5 + parent: 588 + type: Transform + - uid: 218 + components: + - pos: 1.5,39.5 + parent: 588 + type: Transform + - uid: 219 + components: + - pos: 2.5,39.5 + parent: 588 + type: Transform + - uid: 220 + components: + - pos: 3.5,39.5 + parent: 588 + type: Transform + - uid: 221 + components: + - pos: 4.5,39.5 + parent: 588 + type: Transform + - uid: 222 + components: + - pos: 5.5,39.5 + parent: 588 + type: Transform + - uid: 223 + components: + - pos: 6.5,39.5 + parent: 588 + type: Transform + - uid: 224 + components: + - pos: 3.5,38.5 + parent: 588 + type: Transform + - uid: 225 + components: + - pos: 3.5,40.5 + parent: 588 + type: Transform + - uid: 226 + components: + - pos: 8.5,39.5 + parent: 588 + type: Transform + - uid: 227 + components: + - pos: 9.5,39.5 + parent: 588 + type: Transform + - uid: 228 + components: + - pos: 10.5,39.5 + parent: 588 + type: Transform + - uid: 229 + components: + - pos: 11.5,39.5 + parent: 588 + type: Transform + - uid: 230 + components: + - pos: 12.5,39.5 + parent: 588 + type: Transform + - uid: 231 + components: + - pos: 13.5,39.5 + parent: 588 + type: Transform + - uid: 232 + components: + - pos: 14.5,39.5 + parent: 588 + type: Transform + - uid: 233 + components: + - pos: 11.5,38.5 + parent: 588 + type: Transform + - uid: 234 + components: + - pos: 11.5,40.5 + parent: 588 + type: Transform + - uid: 235 + components: + - pos: 16.5,39.5 + parent: 588 + type: Transform + - uid: 236 + components: + - pos: 17.5,39.5 + parent: 588 + type: Transform + - uid: 237 + components: + - pos: 18.5,39.5 + parent: 588 + type: Transform + - uid: 238 + components: + - pos: 19.5,39.5 + parent: 588 + type: Transform + - uid: 239 + components: + - pos: 20.5,39.5 + parent: 588 + type: Transform + - uid: 240 + components: + - pos: 21.5,39.5 + parent: 588 + type: Transform + - uid: 241 + components: + - pos: 22.5,39.5 + parent: 588 + type: Transform + - uid: 242 + components: + - pos: 19.5,40.5 + parent: 588 + type: Transform + - uid: 243 + components: + - pos: 19.5,38.5 + parent: 588 + type: Transform + - uid: 284 + components: + - pos: 29.5,26.5 + parent: 588 + type: Transform + - uid: 288 + components: + - pos: 28.5,26.5 + parent: 588 + type: Transform + - uid: 425 + components: + - pos: 1.5,10.5 + parent: 588 + type: Transform + - uid: 438 + components: + - pos: 1.5,9.5 + parent: 588 + type: Transform + - uid: 441 + components: + - pos: 2.5,10.5 + parent: 588 + type: Transform + - uid: 442 + components: + - pos: 3.5,10.5 + parent: 588 + type: Transform + - uid: 443 + components: + - pos: 4.5,10.5 + parent: 588 + type: Transform + - uid: 444 + components: + - pos: 1.5,7.5 + parent: 588 + type: Transform + - uid: 445 + components: + - pos: 1.5,6.5 + parent: 588 + type: Transform + - uid: 446 + components: + - pos: 2.5,6.5 + parent: 588 + type: Transform + - uid: 447 + components: + - pos: 3.5,6.5 + parent: 588 + type: Transform + - uid: 448 + components: + - pos: 4.5,6.5 + parent: 588 + type: Transform + - uid: 449 + components: + - pos: 6.5,6.5 + parent: 588 + type: Transform + - uid: 450 + components: + - pos: 7.5,6.5 + parent: 588 + type: Transform + - uid: 451 + components: + - pos: 8.5,6.5 + parent: 588 + type: Transform + - uid: 452 + components: + - pos: 9.5,6.5 + parent: 588 + type: Transform + - uid: 453 + components: + - pos: 9.5,7.5 + parent: 588 + type: Transform + - uid: 454 + components: + - pos: 9.5,9.5 + parent: 588 + type: Transform + - uid: 455 + components: + - pos: 9.5,10.5 + parent: 588 + type: Transform + - uid: 456 + components: + - pos: 8.5,10.5 + parent: 588 + type: Transform + - uid: 457 + components: + - pos: 7.5,10.5 + parent: 588 + type: Transform + - uid: 472 + components: + - pos: 29.5,14.5 + parent: 588 + type: Transform + - uid: 477 + components: + - pos: 24.5,13.5 + parent: 588 + type: Transform + - uid: 479 + components: + - pos: 30.5,14.5 + parent: 588 + type: Transform + - uid: 493 + components: + - pos: 25.5,13.5 + parent: 588 + type: Transform + - uid: 494 + components: + - pos: 25.5,12.5 + parent: 588 + type: Transform + - uid: 495 + components: + - pos: 26.5,12.5 + parent: 588 + type: Transform + - uid: 496 + components: + - pos: 27.5,12.5 + parent: 588 + type: Transform + - uid: 497 + components: + - pos: 28.5,12.5 + parent: 588 + type: Transform + - uid: 498 + components: + - pos: 29.5,12.5 + parent: 588 + type: Transform + - uid: 500 + components: + - pos: 24.5,12.5 + parent: 588 + type: Transform + - uid: 502 + components: + - pos: 24.5,14.5 + parent: 588 + type: Transform + - uid: 503 + components: + - pos: 24.5,15.5 + parent: 588 + type: Transform + - uid: 504 + components: + - pos: 24.5,16.5 + parent: 588 + type: Transform + - uid: 505 + components: + - pos: 25.5,16.5 + parent: 588 + type: Transform + - uid: 506 + components: + - pos: 26.5,16.5 + parent: 588 + type: Transform + - uid: 507 + components: + - pos: 27.5,16.5 + parent: 588 + type: Transform + - uid: 508 + components: + - pos: 28.5,16.5 + parent: 588 + type: Transform + - uid: 509 + components: + - pos: 29.5,16.5 + parent: 588 + type: Transform + - uid: 514 + components: + - pos: 29.5,13.5 + parent: 588 + type: Transform + - uid: 523 + components: + - pos: 29.5,15.5 + parent: 588 + type: Transform + - uid: 628 + components: + - pos: 1.5,22.5 + parent: 588 + type: Transform + - uid: 639 + components: + - pos: 0.5,22.5 + parent: 588 + type: Transform + - uid: 640 + components: + - pos: 0.5,21.5 + parent: 588 + type: Transform + - uid: 641 + components: + - pos: 0.5,19.5 + parent: 588 + type: Transform + - uid: 642 + components: + - pos: 0.5,18.5 + parent: 588 + type: Transform + - uid: 643 + components: + - pos: 1.5,18.5 + parent: 588 + type: Transform + - uid: 657 + components: + - pos: 2.5,15.5 + parent: 588 + type: Transform + - uid: 661 + components: + - pos: 1.5,15.5 + parent: 588 + type: Transform + - uid: 662 + components: + - pos: 1.5,13.5 + parent: 588 + type: Transform + - uid: 663 + components: + - pos: 2.5,13.5 + parent: 588 + type: Transform + - uid: 664 + components: + - pos: 4.5,13.5 + parent: 588 + type: Transform + - uid: 665 + components: + - pos: 5.5,13.5 + parent: 588 + type: Transform + - uid: 666 + components: + - pos: 5.5,15.5 + parent: 588 + type: Transform + - uid: 667 + components: + - pos: 4.5,15.5 + parent: 588 + type: Transform + - uid: 668 + components: + - pos: 29.5,10.5 + parent: 588 + type: Transform + - uid: 669 + components: + - pos: 28.5,10.5 + parent: 588 + type: Transform + - uid: 670 + components: + - pos: 27.5,10.5 + parent: 588 + type: Transform + - uid: 671 + components: + - pos: 26.5,10.5 + parent: 588 + type: Transform + - uid: 672 + components: + - pos: 25.5,10.5 + parent: 588 + type: Transform + - uid: 673 + components: + - pos: 24.5,10.5 + parent: 588 + type: Transform + - uid: 674 + components: + - pos: 24.5,9.5 + parent: 588 + type: Transform + - uid: 675 + components: + - pos: 24.5,8.5 + parent: 588 + type: Transform + - uid: 676 + components: + - pos: 24.5,7.5 + parent: 588 + type: Transform + - uid: 677 + components: + - pos: 24.5,6.5 + parent: 588 + type: Transform + - uid: 678 + components: + - pos: 25.5,6.5 + parent: 588 + type: Transform + - uid: 679 + components: + - pos: 26.5,6.5 + parent: 588 + type: Transform + - uid: 680 + components: + - pos: 27.5,6.5 + parent: 588 + type: Transform + - uid: 681 + components: + - pos: 28.5,6.5 + parent: 588 + type: Transform + - uid: 682 + components: + - pos: 29.5,6.5 + parent: 588 + type: Transform + - uid: 683 + components: + - pos: 30.5,6.5 + parent: 588 + type: Transform + - uid: 684 + components: + - pos: 31.5,6.5 + parent: 588 + type: Transform + - uid: 685 + components: + - pos: 32.5,6.5 + parent: 588 + type: Transform + - uid: 686 + components: + - pos: 33.5,6.5 + parent: 588 + type: Transform + - uid: 687 + components: + - pos: 34.5,6.5 + parent: 588 + type: Transform + - uid: 688 + components: + - pos: 34.5,7.5 + parent: 588 + type: Transform + - uid: 689 + components: + - pos: 34.5,8.5 + parent: 588 + type: Transform + - uid: 690 + components: + - pos: 34.5,9.5 + parent: 588 + type: Transform + - uid: 691 + components: + - pos: 34.5,10.5 + parent: 588 + type: Transform + - uid: 692 + components: + - pos: 33.5,10.5 + parent: 588 + type: Transform + - uid: 693 + components: + - pos: 32.5,10.5 + parent: 588 + type: Transform + - uid: 694 + components: + - pos: 31.5,10.5 + parent: 588 + type: Transform + - uid: 695 + components: + - pos: 30.5,10.5 + parent: 588 + type: Transform + - uid: 733 + components: + - pos: 20.5,18.5 + parent: 588 + type: Transform + - uid: 734 + components: + - pos: 20.5,19.5 + parent: 588 + type: Transform + - uid: 735 + components: + - pos: 20.5,20.5 + parent: 588 + type: Transform + - uid: 736 + components: + - pos: 20.5,21.5 + parent: 588 + type: Transform + - uid: 737 + components: + - pos: 20.5,22.5 + parent: 588 + type: Transform + - uid: 738 + components: + - pos: 21.5,20.5 + parent: 588 + type: Transform + - uid: 739 + components: + - pos: 22.5,20.5 + parent: 588 + type: Transform + - uid: 740 + components: + - pos: 19.5,20.5 + parent: 588 + type: Transform + - uid: 741 + components: + - pos: 18.5,20.5 + parent: 588 + type: Transform + - uid: 751 + components: + - pos: 32.5,22.5 + parent: 588 + type: Transform + - uid: 752 + components: + - pos: 32.5,21.5 + parent: 588 + type: Transform + - uid: 753 + components: + - pos: 32.5,20.5 + parent: 588 + type: Transform + - uid: 754 + components: + - pos: 32.5,19.5 + parent: 588 + type: Transform + - uid: 755 + components: + - pos: 32.5,18.5 + parent: 588 + type: Transform + - uid: 756 + components: + - pos: 31.5,20.5 + parent: 588 + type: Transform + - uid: 757 + components: + - pos: 30.5,20.5 + parent: 588 + type: Transform + - uid: 758 + components: + - pos: 33.5,20.5 + parent: 588 + type: Transform + - uid: 759 + components: + - pos: 34.5,20.5 + parent: 588 + type: Transform + - uid: 779 + components: + - pos: 25.5,19.5 + parent: 588 + type: Transform + - uid: 780 + components: + - pos: 25.5,18.5 + parent: 588 + type: Transform + - uid: 781 + components: + - pos: 24.5,18.5 + parent: 588 + type: Transform + - uid: 782 + components: + - pos: 24.5,19.5 + parent: 588 + type: Transform + - uid: 783 + components: + - pos: 24.5,20.5 + parent: 588 + type: Transform + - uid: 784 + components: + - pos: 24.5,21.5 + parent: 588 + type: Transform + - uid: 785 + components: + - pos: 24.5,22.5 + parent: 588 + type: Transform + - uid: 786 + components: + - pos: 25.5,22.5 + parent: 588 + type: Transform + - uid: 787 + components: + - pos: 26.5,22.5 + parent: 588 + type: Transform + - uid: 788 + components: + - pos: 27.5,22.5 + parent: 588 + type: Transform + - uid: 789 + components: + - pos: 28.5,22.5 + parent: 588 + type: Transform + - uid: 790 + components: + - pos: 28.5,21.5 + parent: 588 + type: Transform + - uid: 791 + components: + - pos: 28.5,20.5 + parent: 588 + type: Transform + - uid: 792 + components: + - pos: 28.5,19.5 + parent: 588 + type: Transform + - uid: 793 + components: + - pos: 28.5,18.5 + parent: 588 + type: Transform + - uid: 794 + components: + - pos: 27.5,18.5 + parent: 588 + type: Transform + - uid: 795 + components: + - pos: 26.5,18.5 + parent: 588 + type: Transform + - uid: 815 + components: + - pos: 0.5,25.5 + parent: 588 + type: Transform + - uid: 816 + components: + - pos: 0.5,27.5 + parent: 588 + type: Transform + - uid: 817 + components: + - pos: 0.5,28.5 + parent: 588 + type: Transform + - uid: 818 + components: + - pos: 2.5,28.5 + parent: 588 + type: Transform + - uid: 819 + components: + - pos: 2.5,27.5 + parent: 588 + type: Transform + - uid: 869 + components: + - pos: 5.5,24.5 + parent: 588 + type: Transform + - uid: 870 + components: + - pos: 6.5,24.5 + parent: 588 + type: Transform + - uid: 871 + components: + - pos: 6.5,25.5 + parent: 588 + type: Transform + - uid: 872 + components: + - pos: 6.5,26.5 + parent: 588 + type: Transform + - uid: 873 + components: + - pos: 6.5,27.5 + parent: 588 + type: Transform + - uid: 874 + components: + - pos: 6.5,28.5 + parent: 588 + type: Transform + - uid: 875 + components: + - pos: 5.5,28.5 + parent: 588 + type: Transform + - uid: 876 + components: + - pos: 4.5,28.5 + parent: 588 + type: Transform + - uid: 877 + components: + - pos: 4.5,27.5 + parent: 588 + type: Transform + - uid: 878 + components: + - pos: 4.5,26.5 + parent: 588 + type: Transform + - uid: 912 + components: + - pos: 6.5,10.5 + parent: 588 + type: Transform + - uid: 927 + components: + - pos: 34.5,36.5 + parent: 588 + type: Transform + - uid: 928 + components: + - pos: 32.5,36.5 + parent: 588 + type: Transform + - uid: 996 + components: + - pos: 21.5,32.5 + parent: 588 + type: Transform + - uid: 1079 + components: + - pos: 32.5,35.5 + parent: 588 + type: Transform + - uid: 1080 + components: + - pos: 31.5,35.5 + parent: 588 + type: Transform + - uid: 1081 + components: + - pos: 32.5,34.5 + parent: 588 + type: Transform + - uid: 1082 + components: + - pos: 29.5,34.5 + parent: 588 + type: Transform + - uid: 1083 + components: + - pos: 24.5,35.5 + parent: 588 + type: Transform + - uid: 1084 + components: + - pos: 27.5,35.5 + parent: 588 + type: Transform + - uid: 1085 + components: + - pos: 29.5,35.5 + parent: 588 + type: Transform + - uid: 1086 + components: + - pos: 28.5,35.5 + parent: 588 + type: Transform + - uid: 1089 + components: + - pos: 4.5,36.5 + parent: 588 + type: Transform + - uid: 1090 + components: + - pos: 33.5,34.5 + parent: 588 + type: Transform + - uid: 1091 + components: + - pos: 5.5,35.5 + parent: 588 + type: Transform + - uid: 1092 + components: + - pos: 29.5,36.5 + parent: 588 + type: Transform + - uid: 1093 + components: + - pos: 34.5,34.5 + parent: 588 + type: Transform + - uid: 1094 + components: + - pos: 34.5,35.5 + parent: 588 + type: Transform + - uid: 1095 + components: + - pos: 26.5,35.5 + parent: 588 + type: Transform + - uid: 1096 + components: + - pos: 25.5,35.5 + parent: 588 + type: Transform + - uid: 1097 + components: + - pos: 33.5,36.5 + parent: 588 + type: Transform + - uid: 1098 + components: + - pos: 30.5,35.5 + parent: 588 + type: Transform + - uid: 1117 + components: + - pos: 16.5,26.5 + parent: 588 + type: Transform + - uid: 1121 + components: + - pos: 17.5,26.5 + parent: 588 + type: Transform + - uid: 1122 + components: + - pos: 18.5,26.5 + parent: 588 + type: Transform + - uid: 1123 + components: + - pos: 17.5,27.5 + parent: 588 + type: Transform + - uid: 1124 + components: + - pos: 17.5,28.5 + parent: 588 + type: Transform + - uid: 1125 + components: + - pos: 17.5,24.5 + parent: 588 + type: Transform + - uid: 1126 + components: + - pos: 17.5,25.5 + parent: 588 + type: Transform + - uid: 1127 + components: + - pos: 20.5,26.5 + parent: 588 + type: Transform + - uid: 1128 + components: + - pos: 21.5,26.5 + parent: 588 + type: Transform + - uid: 1129 + components: + - pos: 22.5,26.5 + parent: 588 + type: Transform + - uid: 1130 + components: + - pos: 21.5,27.5 + parent: 588 + type: Transform + - uid: 1131 + components: + - pos: 21.5,28.5 + parent: 588 + type: Transform + - uid: 1132 + components: + - pos: 21.5,25.5 + parent: 588 + type: Transform + - uid: 1133 + components: + - pos: 21.5,24.5 + parent: 588 + type: Transform + - uid: 1134 + components: + - pos: 24.5,26.5 + parent: 588 + type: Transform + - uid: 1135 + components: + - pos: 25.5,26.5 + parent: 588 + type: Transform + - uid: 1136 + components: + - pos: 26.5,26.5 + parent: 588 + type: Transform + - uid: 1137 + components: + - pos: 25.5,27.5 + parent: 588 + type: Transform + - uid: 1138 + components: + - pos: 25.5,28.5 + parent: 588 + type: Transform + - uid: 1139 + components: + - pos: 25.5,25.5 + parent: 588 + type: Transform + - uid: 1140 + components: + - pos: 25.5,24.5 + parent: 588 + type: Transform + - uid: 1170 + components: + - pos: 3.5,36.5 + parent: 588 + type: Transform + - uid: 1171 + components: + - pos: 2.5,36.5 + parent: 588 + type: Transform + - uid: 1172 + components: + - pos: 1.5,36.5 + parent: 588 + type: Transform + - uid: 1173 + components: + - pos: 0.5,36.5 + parent: 588 + type: Transform + - uid: 1174 + components: + - pos: 0.5,35.5 + parent: 588 + type: Transform + - uid: 1175 + components: + - pos: 6.5,34.5 + parent: 588 + type: Transform + - uid: 1176 + components: + - pos: 7.5,34.5 + parent: 588 + type: Transform + - uid: 1177 + components: + - pos: 8.5,34.5 + parent: 588 + type: Transform + - uid: 1178 + components: + - pos: 9.5,34.5 + parent: 588 + type: Transform + - uid: 1179 + components: + - pos: 10.5,34.5 + parent: 588 + type: Transform + - uid: 1268 + components: + - pos: 30.5,26.5 + parent: 588 + type: Transform + - uid: 1269 + components: + - pos: 29.5,27.5 + parent: 588 + type: Transform + - uid: 1270 + components: + - pos: 29.5,28.5 + parent: 588 + type: Transform + - uid: 1271 + components: + - pos: 29.5,25.5 + parent: 588 + type: Transform + - uid: 1272 + components: + - pos: 29.5,24.5 + parent: 588 + type: Transform + - uid: 1273 + components: + - pos: 32.5,26.5 + parent: 588 + type: Transform + - uid: 1274 + components: + - pos: 33.5,26.5 + parent: 588 + type: Transform + - uid: 1275 + components: + - pos: 34.5,26.5 + parent: 588 + type: Transform + - uid: 1276 + components: + - pos: 33.5,27.5 + parent: 588 + type: Transform + - uid: 1277 + components: + - pos: 33.5,28.5 + parent: 588 + type: Transform + - uid: 1278 + components: + - pos: 33.5,25.5 + parent: 588 + type: Transform + - uid: 1279 + components: + - pos: 33.5,24.5 + parent: 588 + type: Transform + - uid: 1306 + components: + - pos: 27.5,40.5 + parent: 588 + type: Transform + - uid: 1307 + components: + - pos: 26.5,40.5 + parent: 588 + type: Transform + - uid: 1308 + components: + - pos: 25.5,40.5 + parent: 588 + type: Transform + - uid: 1309 + components: + - pos: 24.5,40.5 + parent: 588 + type: Transform + - uid: 1310 + components: + - pos: 24.5,39.5 + parent: 588 + type: Transform + - uid: 1311 + components: + - pos: 24.5,38.5 + parent: 588 + type: Transform + - uid: 1312 + components: + - pos: 25.5,38.5 + parent: 588 + type: Transform + - uid: 1313 + components: + - pos: 26.5,38.5 + parent: 588 + type: Transform + - uid: 1314 + components: + - pos: 27.5,38.5 + parent: 588 + type: Transform + - uid: 1315 + components: + - pos: 28.5,38.5 + parent: 588 + type: Transform + - uid: 1316 + components: + - pos: 29.5,38.5 + parent: 588 + type: Transform + - uid: 1317 + components: + - pos: 30.5,38.5 + parent: 588 + type: Transform + - uid: 1318 + components: + - pos: 30.5,39.5 + parent: 588 + type: Transform + - uid: 1426 + components: + - pos: 11.5,42.5 + parent: 588 + type: Transform + - uid: 1427 + components: + - pos: 11.5,43.5 + parent: 588 + type: Transform + - uid: 1428 + components: + - pos: 11.5,44.5 + parent: 588 + type: Transform + - uid: 1429 + components: + - pos: 11.5,45.5 + parent: 588 + type: Transform + - uid: 1430 + components: + - pos: 11.5,46.5 + parent: 588 + type: Transform + - uid: 1431 + components: + - pos: 11.5,47.5 + parent: 588 + type: Transform + - uid: 1432 + components: + - pos: 11.5,48.5 + parent: 588 + type: Transform + - uid: 1433 + components: + - pos: 10.5,45.5 + parent: 588 + type: Transform + - uid: 1434 + components: + - pos: 9.5,45.5 + parent: 588 + type: Transform + - uid: 1435 + components: + - pos: 8.5,45.5 + parent: 588 + type: Transform + - uid: 1436 + components: + - pos: 12.5,45.5 + parent: 588 + type: Transform + - uid: 1437 + components: + - pos: 13.5,45.5 + parent: 588 + type: Transform + - uid: 1438 + components: + - pos: 14.5,45.5 + parent: 588 + type: Transform + - uid: 1439 + components: + - pos: 13.5,46.5 + parent: 588 + type: Transform + - uid: 1440 + components: + - pos: 13.5,47.5 + parent: 588 + type: Transform + - uid: 1441 + components: + - pos: 9.5,46.5 + parent: 588 + type: Transform + - uid: 1442 + components: + - pos: 9.5,47.5 + parent: 588 + type: Transform + - uid: 1443 + components: + - pos: 10.5,43.5 + parent: 588 + type: Transform + - uid: 1444 + components: + - pos: 9.5,43.5 + parent: 588 + type: Transform + - uid: 1445 + components: + - pos: 12.5,43.5 + parent: 588 + type: Transform + - uid: 1446 + components: + - pos: 13.5,43.5 + parent: 588 + type: Transform + - uid: 1447 + components: + - pos: 3.5,42.5 + parent: 588 + type: Transform + - uid: 1448 + components: + - pos: 3.5,43.5 + parent: 588 + type: Transform + - uid: 1449 + components: + - pos: 3.5,44.5 + parent: 588 + type: Transform + - uid: 1450 + components: + - pos: 3.5,45.5 + parent: 588 + type: Transform + - uid: 1451 + components: + - pos: 3.5,46.5 + parent: 588 + type: Transform + - uid: 1452 + components: + - pos: 3.5,47.5 + parent: 588 + type: Transform + - uid: 1453 + components: + - pos: 3.5,48.5 + parent: 588 + type: Transform + - uid: 1454 + components: + - pos: 0.5,45.5 + parent: 588 + type: Transform + - uid: 1455 + components: + - pos: 1.5,45.5 + parent: 588 + type: Transform + - uid: 1456 + components: + - pos: 2.5,45.5 + parent: 588 + type: Transform + - uid: 1457 + components: + - pos: 3.5,45.5 + parent: 588 + type: Transform + - uid: 1458 + components: + - pos: 4.5,45.5 + parent: 588 + type: Transform + - uid: 1459 + components: + - pos: 5.5,45.5 + parent: 588 + type: Transform + - uid: 1460 + components: + - pos: 6.5,45.5 + parent: 588 + type: Transform + - uid: 1529 + components: + - pos: 19.5,47.5 + parent: 588 + type: Transform + - uid: 1530 + components: + - pos: 19.5,48.5 + parent: 588 + type: Transform + - uid: 1531 + components: + - pos: 18.5,48.5 + parent: 588 + type: Transform + - uid: 1532 + components: + - pos: 17.5,48.5 + parent: 588 + type: Transform + - uid: 1533 + components: + - pos: 16.5,48.5 + parent: 588 + type: Transform + - uid: 1534 + components: + - pos: 16.5,47.5 + parent: 588 + type: Transform + - uid: 1535 + components: + - pos: 16.5,46.5 + parent: 588 + type: Transform + - uid: 1536 + components: + - pos: 16.5,45.5 + parent: 588 + type: Transform + - uid: 1537 + components: + - pos: 16.5,44.5 + parent: 588 + type: Transform + - uid: 1538 + components: + - pos: 16.5,43.5 + parent: 588 + type: Transform + - uid: 1539 + components: + - pos: 16.5,42.5 + parent: 588 + type: Transform + - uid: 1540 + components: + - pos: 17.5,42.5 + parent: 588 + type: Transform + - uid: 1541 + components: + - pos: 18.5,42.5 + parent: 588 + type: Transform + - uid: 1542 + components: + - pos: 19.5,42.5 + parent: 588 + type: Transform + - uid: 1543 + components: + - pos: 20.5,42.5 + parent: 588 + type: Transform + - uid: 1544 + components: + - pos: 21.5,42.5 + parent: 588 + type: Transform + - uid: 1545 + components: + - pos: 22.5,42.5 + parent: 588 + type: Transform + - uid: 1546 + components: + - pos: 22.5,43.5 + parent: 588 + type: Transform + - uid: 1547 + components: + - pos: 22.5,44.5 + parent: 588 + type: Transform + - uid: 1548 + components: + - pos: 22.5,45.5 + parent: 588 + type: Transform + - uid: 1549 + components: + - pos: 22.5,46.5 + parent: 588 + type: Transform + - uid: 1550 + components: + - pos: 22.5,47.5 + parent: 588 + type: Transform + - uid: 1551 + components: + - pos: 22.5,48.5 + parent: 588 + type: Transform + - uid: 1552 + components: + - pos: 21.5,48.5 + parent: 588 + type: Transform + - uid: 1553 + components: + - pos: 20.5,48.5 + parent: 588 + type: Transform + - uid: 1554 + components: + - pos: 19.5,43.5 + parent: 588 + type: Transform + - uid: 1555 + components: + - pos: 19.5,44.5 + parent: 588 + type: Transform + - uid: 1556 + components: + - pos: 19.5,45.5 + parent: 588 + type: Transform + - uid: 1557 + components: + - pos: 19.5,46.5 + parent: 588 + type: Transform + - uid: 1807 + components: + - pos: 27.5,42.5 + parent: 588 + type: Transform + - uid: 1808 + components: + - pos: 27.5,43.5 + parent: 588 + type: Transform + - uid: 1809 + components: + - pos: 27.5,44.5 + parent: 588 + type: Transform + - uid: 1810 + components: + - pos: 27.5,45.5 + parent: 588 + type: Transform + - uid: 1811 + components: + - pos: 27.5,46.5 + parent: 588 + type: Transform + - uid: 1812 + components: + - pos: 27.5,47.5 + parent: 588 + type: Transform + - uid: 1813 + components: + - pos: 27.5,48.5 + parent: 588 + type: Transform + - uid: 1814 + components: + - pos: 28.5,45.5 + parent: 588 + type: Transform + - uid: 1815 + components: + - pos: 29.5,45.5 + parent: 588 + type: Transform + - uid: 1816 + components: + - pos: 30.5,45.5 + parent: 588 + type: Transform + - uid: 1817 + components: + - pos: 26.5,45.5 + parent: 588 + type: Transform + - uid: 1818 + components: + - pos: 25.5,45.5 + parent: 588 + type: Transform + - uid: 1819 + components: + - pos: 24.5,45.5 + parent: 588 + type: Transform + - uid: 1820 + components: + - pos: 26.5,47.5 + parent: 588 + type: Transform + - uid: 1821 + components: + - pos: 25.5,47.5 + parent: 588 + type: Transform + - uid: 1822 + components: + - pos: 28.5,47.5 + parent: 588 + type: Transform + - uid: 1823 + components: + - pos: 29.5,47.5 + parent: 588 + type: Transform + - uid: 1824 + components: + - pos: 26.5,43.5 + parent: 588 + type: Transform + - uid: 1825 + components: + - pos: 25.5,43.5 + parent: 588 + type: Transform + - uid: 1826 + components: + - pos: 28.5,43.5 + parent: 588 + type: Transform + - uid: 1827 + components: + - pos: 29.5,43.5 + parent: 588 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 655 + components: + - pos: 16.273203,19.650417 + parent: 588 + type: Transform +- proto: CableHV + entities: + - uid: 462 + components: + - pos: 27.5,13.5 + parent: 588 + type: Transform + - uid: 466 + components: + - pos: 26.5,13.5 + parent: 588 + type: Transform + - uid: 468 + components: + - pos: 28.5,13.5 + parent: 588 + type: Transform + - uid: 485 + components: + - pos: 26.5,15.5 + parent: 588 + type: Transform + - uid: 486 + components: + - pos: 26.5,14.5 + parent: 588 + type: Transform + - uid: 487 + components: + - pos: 27.5,14.5 + parent: 588 + type: Transform + - uid: 488 + components: + - pos: 28.5,14.5 + parent: 588 + type: Transform + - uid: 489 + components: + - pos: 28.5,15.5 + parent: 588 + type: Transform + - uid: 743 + components: + - pos: 26.5,21.5 + parent: 588 + type: Transform + - uid: 745 + components: + - pos: 26.5,20.5 + parent: 588 + type: Transform + - uid: 768 + components: + - pos: 26.5,19.5 + parent: 588 + type: Transform + - uid: 778 + components: + - pos: 27.5,19.5 + parent: 588 + type: Transform + - uid: 978 + components: + - pos: 16.5,32.5 + parent: 588 + type: Transform + - uid: 979 + components: + - pos: 15.5,31.5 + parent: 588 + type: Transform + - uid: 980 + components: + - pos: 16.5,31.5 + parent: 588 + type: Transform + - uid: 981 + components: + - pos: 17.5,31.5 + parent: 588 + type: Transform + - uid: 982 + components: + - pos: 18.5,31.5 + parent: 588 + type: Transform + - uid: 983 + components: + - pos: 22.5,31.5 + parent: 588 + type: Transform + - uid: 984 + components: + - pos: 23.5,31.5 + parent: 588 + type: Transform + - uid: 985 + components: + - pos: 24.5,31.5 + parent: 588 + type: Transform + - uid: 986 + components: + - pos: 24.5,32.5 + parent: 588 + type: Transform + - uid: 987 + components: + - pos: 25.5,31.5 + parent: 588 + type: Transform + - uid: 989 + components: + - pos: 18.5,32.5 + parent: 588 + type: Transform + - uid: 990 + components: + - pos: 19.5,32.5 + parent: 588 + type: Transform + - uid: 991 + components: + - pos: 20.5,32.5 + parent: 588 + type: Transform + - uid: 992 + components: + - pos: 21.5,32.5 + parent: 588 + type: Transform + - uid: 993 + components: + - pos: 22.5,32.5 + parent: 588 + type: Transform + - uid: 1003 + components: + - pos: 16.5,30.5 + parent: 588 + type: Transform + - uid: 1004 + components: + - pos: 24.5,30.5 + parent: 588 + type: Transform + - uid: 1510 + components: + - pos: 18.5,44.5 + parent: 588 + type: Transform + - uid: 1511 + components: + - pos: 18.5,45.5 + parent: 588 + type: Transform + - uid: 1512 + components: + - pos: 20.5,45.5 + parent: 588 + type: Transform + - uid: 1513 + components: + - pos: 20.5,44.5 + parent: 588 + type: Transform + - uid: 1514 + components: + - pos: 19.5,44.5 + parent: 588 + type: Transform + - uid: 1522 + components: + - pos: 17.5,46.5 + parent: 588 + type: Transform + - uid: 1523 + components: + - pos: 21.5,46.5 + parent: 588 + type: Transform + - uid: 1524 + components: + - pos: 20.5,46.5 + parent: 588 + type: Transform + - uid: 1525 + components: + - pos: 18.5,46.5 + parent: 588 + type: Transform + - uid: 1526 + components: + - pos: 19.5,46.5 + parent: 588 + type: Transform +- proto: CableMV + entities: + - uid: 490 + components: + - pos: 27.5,13.5 + parent: 588 + type: Transform + - uid: 491 + components: + - pos: 26.5,13.5 + parent: 588 + type: Transform + - uid: 492 + components: + - pos: 25.5,13.5 + parent: 588 + type: Transform + - uid: 775 + components: + - pos: 27.5,19.5 + parent: 588 + type: Transform + - uid: 776 + components: + - pos: 26.5,19.5 + parent: 588 + type: Transform + - uid: 777 + components: + - pos: 25.5,19.5 + parent: 588 + type: Transform + - uid: 1527 + components: + - pos: 19.5,46.5 + parent: 588 + type: Transform + - uid: 1528 + components: + - pos: 19.5,47.5 + parent: 588 + type: Transform +- proto: CableTerminal + entities: + - uid: 463 + components: + - pos: 26.5,14.5 + parent: 588 + type: Transform + - uid: 464 + components: + - pos: 27.5,14.5 + parent: 588 + type: Transform + - uid: 465 + components: + - pos: 28.5,14.5 + parent: 588 + type: Transform + - uid: 767 + components: + - pos: 26.5,20.5 + parent: 588 + type: Transform + - uid: 970 + components: + - rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 588 + type: Transform + - uid: 976 + components: + - rot: 3.141592653589793 rad + pos: 22.5,31.5 + parent: 588 + type: Transform + - uid: 1558 + components: + - rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 588 + type: Transform + - uid: 1559 + components: + - rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 588 + type: Transform +- proto: CarpetBlue + entities: + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 588 + type: Transform + - uid: 770 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 588 + type: Transform + - uid: 1634 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 588 + type: Transform + - uid: 1635 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 588 + type: Transform +- proto: CarpetGreen + entities: + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 588 + type: Transform + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 588 + type: Transform + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 588 + type: Transform + - uid: 1633 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 588 + type: Transform +- proto: CarpetPurple + entities: + - uid: 1626 + components: + - pos: 25.5,4.5 + parent: 588 + type: Transform + - uid: 1627 + components: + - pos: 25.5,3.5 + parent: 588 + type: Transform + - uid: 1628 + components: + - pos: 26.5,3.5 + parent: 588 + type: Transform + - uid: 1629 + components: + - pos: 27.5,3.5 + parent: 588 + type: Transform + - uid: 1630 + components: + - pos: 27.5,4.5 + parent: 588 + type: Transform + - uid: 1631 + components: + - pos: 26.5,4.5 + parent: 588 + type: Transform +- proto: Catwalk + entities: + - uid: 141 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 588 + type: Transform + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 588 + type: Transform + - uid: 143 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 588 + type: Transform + - uid: 248 + components: + - pos: 8.5,4.5 + parent: 588 + type: Transform + - uid: 249 + components: + - pos: 8.5,2.5 + parent: 588 + type: Transform + - uid: 250 + components: + - pos: 8.5,3.5 + parent: 588 + type: Transform + - uid: 251 + components: + - pos: 8.5,1.5 + parent: 588 + type: Transform + - uid: 471 + components: + - pos: 27.5,14.5 + parent: 588 + type: Transform + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 588 + type: Transform + - uid: 474 + components: + - pos: 28.5,14.5 + parent: 588 + type: Transform + - uid: 475 + components: + - pos: 26.5,14.5 + parent: 588 + type: Transform + - uid: 512 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,12.5 + parent: 588 + type: Transform + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 588 + type: Transform + - uid: 515 + components: + - pos: 25.5,16.5 + parent: 588 + type: Transform + - uid: 516 + components: + - pos: 26.5,16.5 + parent: 588 + type: Transform + - uid: 517 + components: + - pos: 27.5,16.5 + parent: 588 + type: Transform + - uid: 518 + components: + - pos: 28.5,16.5 + parent: 588 + type: Transform + - uid: 519 + components: + - pos: 29.5,16.5 + parent: 588 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,12.5 + parent: 588 + type: Transform + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,12.5 + parent: 588 + type: Transform + - uid: 769 + components: + - pos: 26.5,20.5 + parent: 588 + type: Transform + - uid: 832 + components: + - pos: 3.5,31.5 + parent: 588 + type: Transform + - uid: 833 + components: + - pos: 4.5,31.5 + parent: 588 + type: Transform + - uid: 834 + components: + - pos: 5.5,31.5 + parent: 588 + type: Transform + - uid: 835 + components: + - pos: 6.5,31.5 + parent: 588 + type: Transform + - uid: 836 + components: + - pos: 7.5,31.5 + parent: 588 + type: Transform + - uid: 837 + components: + - pos: 8.5,31.5 + parent: 588 + type: Transform + - uid: 838 + components: + - pos: 9.5,31.5 + parent: 588 + type: Transform + - uid: 839 + components: + - pos: 6.5,32.5 + parent: 588 + type: Transform + - uid: 840 + components: + - pos: 6.5,30.5 + parent: 588 + type: Transform + - uid: 841 + components: + - pos: 5.5,32.5 + parent: 588 + type: Transform + - uid: 842 + components: + - pos: 7.5,32.5 + parent: 588 + type: Transform + - uid: 843 + components: + - pos: 5.5,30.5 + parent: 588 + type: Transform + - uid: 844 + components: + - pos: 7.5,30.5 + parent: 588 + type: Transform + - uid: 861 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,27.5 + parent: 588 + type: Transform + - uid: 862 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,28.5 + parent: 588 + type: Transform + - uid: 863 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 588 + type: Transform + - uid: 864 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 588 + type: Transform + - uid: 865 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 588 + type: Transform + - uid: 879 + components: + - rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 588 + type: Transform + - uid: 880 + components: + - rot: 3.141592653589793 rad + pos: 3.5,39.5 + parent: 588 + type: Transform + - uid: 881 + components: + - rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 588 + type: Transform + - uid: 882 + components: + - rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 588 + type: Transform + - uid: 883 + components: + - rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 588 + type: Transform + - uid: 884 + components: + - rot: 3.141592653589793 rad + pos: 5.5,39.5 + parent: 588 + type: Transform + - uid: 885 + components: + - rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 588 + type: Transform + - uid: 914 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 588 + type: Transform + - uid: 915 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 588 + type: Transform + - uid: 916 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 588 + type: Transform + - uid: 917 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 588 + type: Transform + - uid: 918 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 588 + type: Transform + - uid: 919 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 588 + type: Transform + - uid: 920 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 588 + type: Transform + - uid: 921 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 588 + type: Transform + - uid: 922 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 588 + type: Transform + - uid: 923 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 588 + type: Transform + - uid: 955 + components: + - pos: 15.5,31.5 + parent: 588 + type: Transform + - uid: 956 + components: + - pos: 16.5,31.5 + parent: 588 + type: Transform + - uid: 957 + components: + - pos: 17.5,31.5 + parent: 588 + type: Transform + - uid: 958 + components: + - pos: 18.5,31.5 + parent: 588 + type: Transform + - uid: 959 + components: + - pos: 19.5,31.5 + parent: 588 + type: Transform + - uid: 960 + components: + - pos: 20.5,31.5 + parent: 588 + type: Transform + - uid: 961 + components: + - pos: 21.5,31.5 + parent: 588 + type: Transform + - uid: 962 + components: + - pos: 22.5,31.5 + parent: 588 + type: Transform + - uid: 963 + components: + - pos: 23.5,31.5 + parent: 588 + type: Transform + - uid: 964 + components: + - pos: 24.5,31.5 + parent: 588 + type: Transform + - uid: 965 + components: + - pos: 25.5,31.5 + parent: 588 + type: Transform + - uid: 994 + components: + - rot: 3.141592653589793 rad + pos: 20.5,32.5 + parent: 588 + type: Transform + - uid: 1158 + components: + - pos: 8.5,0.5 + parent: 588 + type: Transform + - uid: 1180 + components: + - pos: 1.5,36.5 + parent: 588 + type: Transform + - uid: 1181 + components: + - pos: 2.5,36.5 + parent: 588 + type: Transform + - uid: 1182 + components: + - pos: 3.5,36.5 + parent: 588 + type: Transform + - uid: 1183 + components: + - pos: 4.5,36.5 + parent: 588 + type: Transform + - uid: 1184 + components: + - pos: 5.5,36.5 + parent: 588 + type: Transform + - uid: 1185 + components: + - pos: 5.5,34.5 + parent: 588 + type: Transform + - uid: 1186 + components: + - pos: 6.5,34.5 + parent: 588 + type: Transform + - uid: 1187 + components: + - pos: 7.5,34.5 + parent: 588 + type: Transform + - uid: 1188 + components: + - pos: 8.5,34.5 + parent: 588 + type: Transform + - uid: 1189 + components: + - pos: 9.5,34.5 + parent: 588 + type: Transform + - uid: 1320 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,40.5 + parent: 588 + type: Transform + - uid: 1321 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,40.5 + parent: 588 + type: Transform + - uid: 1322 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 588 + type: Transform + - uid: 1323 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,38.5 + parent: 588 + type: Transform + - uid: 1324 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 588 + type: Transform + - uid: 1325 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 588 + type: Transform + - uid: 1326 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,38.5 + parent: 588 + type: Transform + - uid: 1327 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 588 + type: Transform + - uid: 1331 + components: + - pos: 4.5,45.5 + parent: 588 + type: Transform + - uid: 1336 + components: + - pos: 2.5,45.5 + parent: 588 + type: Transform + - uid: 1339 + components: + - pos: 3.5,45.5 + parent: 588 + type: Transform + - uid: 1342 + components: + - pos: 3.5,46.5 + parent: 588 + type: Transform + - uid: 1344 + components: + - pos: 3.5,44.5 + parent: 588 + type: Transform + - uid: 1346 + components: + - pos: 2.5,44.5 + parent: 588 + type: Transform + - uid: 1347 + components: + - pos: 4.5,44.5 + parent: 588 + type: Transform + - uid: 1348 + components: + - pos: 4.5,44.5 + parent: 588 + type: Transform + - uid: 1349 + components: + - pos: 4.5,46.5 + parent: 588 + type: Transform + - uid: 1350 + components: + - pos: 2.5,46.5 + parent: 588 + type: Transform + - uid: 1494 + components: + - pos: 17.5,42.5 + parent: 588 + type: Transform + - uid: 1495 + components: + - pos: 18.5,42.5 + parent: 588 + type: Transform + - uid: 1496 + components: + - pos: 19.5,42.5 + parent: 588 + type: Transform + - uid: 1497 + components: + - pos: 20.5,42.5 + parent: 588 + type: Transform + - uid: 1498 + components: + - pos: 21.5,42.5 + parent: 588 + type: Transform + - uid: 1499 + components: + - pos: 17.5,48.5 + parent: 588 + type: Transform + - uid: 1500 + components: + - pos: 18.5,48.5 + parent: 588 + type: Transform + - uid: 1501 + components: + - pos: 19.5,48.5 + parent: 588 + type: Transform + - uid: 1502 + components: + - pos: 20.5,48.5 + parent: 588 + type: Transform + - uid: 1503 + components: + - pos: 21.5,48.5 + parent: 588 + type: Transform + - uid: 1516 + components: + - rot: 3.141592653589793 rad + pos: 19.5,44.5 + parent: 588 + type: Transform + - uid: 1517 + components: + - rot: 3.141592653589793 rad + pos: 19.5,45.5 + parent: 588 + type: Transform + - uid: 1518 + components: + - rot: 3.141592653589793 rad + pos: 18.5,45.5 + parent: 588 + type: Transform + - uid: 1519 + components: + - rot: 3.141592653589793 rad + pos: 20.5,45.5 + parent: 588 + type: Transform + - uid: 1582 + components: + - pos: 28.5,22.5 + parent: 588 + type: Transform + - uid: 1583 + components: + - pos: 28.5,21.5 + parent: 588 + type: Transform + - uid: 1584 + components: + - pos: 28.5,20.5 + parent: 588 + type: Transform + - uid: 1585 + components: + - pos: 28.5,19.5 + parent: 588 + type: Transform + - uid: 1586 + components: + - pos: 28.5,18.5 + parent: 588 + type: Transform + - uid: 1587 + components: + - pos: 24.5,22.5 + parent: 588 + type: Transform + - uid: 1588 + components: + - pos: 24.5,21.5 + parent: 588 + type: Transform + - uid: 1589 + components: + - pos: 24.5,20.5 + parent: 588 + type: Transform + - uid: 1590 + components: + - pos: 24.5,19.5 + parent: 588 + type: Transform + - uid: 1591 + components: + - pos: 24.5,18.5 + parent: 588 + type: Transform +- proto: Cautery + entities: + - uid: 1474 + components: + - pos: 8.533231,42.775993 + parent: 588 + type: Transform +- proto: Chair + entities: + - uid: 357 + components: + - pos: 23.5,4.5 + parent: 588 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 588 + type: Transform + - uid: 422 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 588 + type: Transform + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 588 + type: Transform + - uid: 533 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 588 + type: Transform + - uid: 534 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 588 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,14.5 + parent: 588 + type: Transform + - uid: 569 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 588 + type: Transform + - uid: 716 + components: + - pos: 18.5,19.5 + parent: 588 + type: Transform + - uid: 717 + components: + - pos: 19.5,19.5 + parent: 588 + type: Transform + - uid: 718 + components: + - pos: 22.5,19.5 + parent: 588 + type: Transform + - uid: 719 + components: + - pos: 21.5,19.5 + parent: 588 + type: Transform + - uid: 1280 + components: + - rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 588 + type: Transform + - uid: 1281 + components: + - rot: 3.141592653589793 rad + pos: 18.5,38.5 + parent: 588 + type: Transform + - uid: 1282 + components: + - pos: 20.5,40.5 + parent: 588 + type: Transform + - uid: 1283 + components: + - pos: 21.5,40.5 + parent: 588 + type: Transform + - uid: 1865 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 588 + type: Transform +- proto: ChairFolding + entities: + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 588 + type: Transform + - uid: 345 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 588 + type: Transform + - uid: 346 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 588 + type: Transform + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 588 + type: Transform + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 588 + type: Transform + - uid: 349 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 588 + type: Transform + - uid: 350 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 588 + type: Transform + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 588 + type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 588 + type: Transform + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 588 + type: Transform + - uid: 1212 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,36.5 + parent: 588 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 31.53707,1.6455604 + parent: 588 + type: Transform + - uid: 355 + components: + - rot: -1.5707963267948966 rad + pos: 33.595894,3.4052575 + parent: 588 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 330 + components: + - pos: 19.5,1.5 + parent: 588 + type: Transform + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 588 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 588 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 588 + type: Transform + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 588 + type: Transform + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 588 + type: Transform + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 588 + type: Transform + - uid: 1578 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 588 + type: Transform + - uid: 1623 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 588 + type: Transform + - uid: 1624 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 588 + type: Transform + - uid: 1625 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 588 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 588 + type: Transform + - uid: 638 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 588 + type: Transform + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 588 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 356 + components: + - pos: 26.5,4.5 + parent: 588 + type: Transform +- proto: ChairWood + entities: + - uid: 1049 + components: + - pos: 20.5,25.5 + parent: 588 + type: Transform + - uid: 1050 + components: + - rot: 3.141592653589793 rad + pos: 22.5,27.5 + parent: 588 + type: Transform + - uid: 1231 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 588 + type: Transform + - uid: 1232 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,36.5 + parent: 588 + type: Transform + - uid: 1790 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,46.5 + parent: 588 + type: Transform + - uid: 1791 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,44.5 + parent: 588 + type: Transform +- proto: CigarGold + entities: + - uid: 1219 + components: + - pos: 7.4719925,36.539555 + parent: 588 + type: Transform +- proto: ClosetBombFilled + entities: + - uid: 413 + components: + - pos: 14.5,6.5 + parent: 588 + type: Transform + - uid: 1014 + components: + - pos: 12.5,27.5 + parent: 588 + type: Transform + - uid: 1026 + components: + - pos: 16.5,27.5 + parent: 588 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1203 + components: + - pos: 12.5,30.5 + parent: 588 + type: Transform + - uid: 1204 + components: + - pos: 0.5,32.5 + parent: 588 + type: Transform + - uid: 1205 + components: + - pos: 9.5,9.5 + parent: 588 + type: Transform + - uid: 1207 + components: + - pos: 1.5,7.5 + parent: 588 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 1194 + components: + - pos: 1.5,9.5 + parent: 588 + type: Transform + - uid: 1195 + components: + - pos: 9.5,7.5 + parent: 588 + type: Transform + - uid: 1196 + components: + - pos: 6.5,40.5 + parent: 588 + type: Transform + - uid: 1197 + components: + - pos: 0.5,38.5 + parent: 588 + type: Transform +- proto: ClosetL3SecurityFilled + entities: + - uid: 415 + components: + - pos: 20.5,10.5 + parent: 588 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 1007 + components: + - pos: 14.5,30.5 + parent: 588 + type: Transform +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 588 + type: Transform + - uid: 868 + components: + - rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 588 + type: Transform + - uid: 1564 + components: + - pos: 17.5,43.5 + parent: 588 + type: Transform + - uid: 1565 + components: + - pos: 21.5,43.5 + parent: 588 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 1236 + components: + - pos: 10.581136,39.53631 + parent: 588 + type: Transform +- proto: ClothingBeltMercenaryWebbing + entities: + - uid: 375 + components: + - pos: 1.4924802,12.631929 + parent: 588 + type: Transform + - uid: 376 + components: + - pos: 12.697874,24.709444 + parent: 588 + type: Transform + - uid: 1295 + components: + - pos: 12.375464,13.080543 + parent: 588 + type: Transform +- proto: ClothingEyesGlassesMercenary + entities: + - uid: 399 + components: + - pos: 18.579332,25.60734 + parent: 588 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 1108 + components: + - pos: 25.666832,30.643515 + parent: 588 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 1715 + components: + - pos: 10.432637,44.476112 + parent: 588 + type: Transform +- proto: ClothingHeadBandMercenary + entities: + - uid: 416 + components: + - pos: 12.631268,39.67906 + parent: 588 + type: Transform +- proto: ClothingHeadHatBeretMercenary + entities: + - uid: 553 + components: + - pos: 18.391832,25.45109 + parent: 588 + type: Transform + - uid: 573 + components: + - pos: 12.734407,6.73884 + parent: 588 + type: Transform + - uid: 583 + components: + - pos: 5.524373,0.5536155 + parent: 588 + type: Transform +- proto: ClothingHeadHatBH + entities: + - uid: 522 + components: + - pos: 12.85776,13.549293 + parent: 588 + type: Transform +- proto: ClothingHeadHatPwig + entities: + - uid: 369 + components: + - pos: 25.824945,3.5783403 + parent: 588 + type: Transform +- proto: ClothingHeadHatSurgcapPurple + entities: + - uid: 1711 + components: + - pos: 10.304593,44.632217 + parent: 588 + type: Transform +- proto: ClothingHeadHelmetMercenary + entities: + - uid: 560 + components: + - pos: 5.6832914,12.454846 + parent: 588 + type: Transform + - uid: 1245 + components: + - pos: 22.412798,6.775266 + parent: 588 + type: Transform +- proto: ClothingHeadHelmetThunderdome + entities: + - uid: 1240 + components: + - pos: 34.48682,24.732521 + parent: 588 + type: Transform +- proto: ClothingMaskGasMercenary + entities: + - uid: 574 + components: + - pos: 3.5032444,0.589267 + parent: 588 + type: Transform + - uid: 577 + components: + - pos: 12.416624,24.521944 + parent: 588 + type: Transform + - uid: 582 + components: + - pos: 22.381674,10.488114 + parent: 588 + type: Transform +- proto: ClothingNeckLawyerbadge + entities: + - uid: 326 + components: + - pos: 21.586027,4.583762 + parent: 588 + type: Transform +- proto: ClothingOuterArmorReflective + entities: + - uid: 1031 + components: + - pos: 18.47467,24.458666 + parent: 588 + type: Transform +- proto: ClothingOuterCoatBHTrench + entities: + - uid: 1267 + components: + - pos: 13.45151,12.570126 + parent: 588 + type: Transform +- proto: ClothingOuterHardsuitMercenary + entities: + - uid: 604 + components: + - pos: 30.349852,8.5612135 + parent: 588 + type: Transform + - uid: 605 + components: + - pos: 30.599852,8.7799635 + parent: 588 + type: Transform +- proto: ClothingOuterRobesJudge + entities: + - uid: 370 + components: + - pos: 27.40101,3.677678 + parent: 588 + type: Transform +- proto: ClothingOuterVestWebMercenary + entities: + - uid: 603 + components: + - pos: 18.693916,24.62611 + parent: 588 + type: Transform + - uid: 606 + components: + - pos: 5.423255,12.579846 + parent: 588 + type: Transform + - uid: 704 + components: + - pos: 12.632391,6.4559298 + parent: 588 + type: Transform +- proto: ClothingShoesBootsMagMercenaryFilled + entities: + - uid: 1013 + components: + - pos: 13.477484,0.59968376 + parent: 588 + type: Transform +- proto: ClothingShoesBootsMercenaryFilled + entities: + - uid: 954 + components: + - pos: 12.58329,25.65736 + parent: 588 + type: Transform + - uid: 968 + components: + - pos: 18.52602,0.745517 + parent: 588 + type: Transform +- proto: ClothingUniformJumpskirtColorMaroon + entities: + - uid: 1714 + components: + - pos: 10.673761,44.53288 + parent: 588 + type: Transform +- proto: ClothingUniformJumpsuitColorMaroon + entities: + - uid: 1713 + components: + - pos: 10.645364,44.67479 + parent: 588 + type: Transform +- proto: ClusterBangFull + entities: + - uid: 599 + components: + - pos: 33.484257,28.42918 + parent: 588 + type: Transform +- proto: ComputerAlert + entities: + - uid: 999 + components: + - rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 588 + type: Transform + - uid: 1001 + components: + - rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 588 + type: Transform + - uid: 1561 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,46.5 + parent: 588 + type: Transform +- proto: computerBodyScanner + entities: + - uid: 1394 + components: + - rot: 3.141592653589793 rad + pos: 9.5,44.5 + parent: 588 + type: Transform + - uid: 1423 + components: + - rot: 3.141592653589793 rad + pos: 13.5,44.5 + parent: 588 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 461 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 588 + type: Transform + - uid: 634 + components: + - rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 588 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 1000 + components: + - rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 588 + type: Transform + - uid: 1002 + components: + - rot: 3.141592653589793 rad + pos: 24.5,30.5 + parent: 588 + type: Transform + - uid: 1560 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 588 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 588 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 1229 + components: + - pos: 12.5,34.5 + parent: 588 + type: Transform + - uid: 1230 + components: + - pos: 22.5,36.5 + parent: 588 + type: Transform +- proto: CrateEngineeringGear + entities: + - uid: 1008 + components: + - pos: 26.5,30.5 + parent: 588 + type: Transform +- proto: CrateFunBoardGames + entities: + - uid: 1845 + components: + - pos: 26.5,48.5 + parent: 588 + type: Transform +- proto: CrateFunParty + entities: + - uid: 1876 + components: + - pos: 25.5,43.5 + parent: 588 + type: Transform +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1660 + components: + - pos: 31.5,22.5 + parent: 588 + type: Transform +- proto: CrayonBox + entities: + - uid: 1057 + components: + - pos: 20.47107,24.608877 + parent: 588 + type: Transform + - uid: 1116 + components: + - pos: 20.607256,14.646415 + parent: 588 + type: Transform +- proto: CryoPod + entities: + - uid: 1395 + components: + - pos: 8.5,47.5 + parent: 588 + type: Transform + - uid: 1397 + components: + - pos: 14.5,47.5 + parent: 588 + type: Transform +- proto: DebugSMES + entities: + - uid: 971 + components: + - pos: 22.5,32.5 + parent: 588 + type: Transform + - uid: 974 + components: + - pos: 18.5,32.5 + parent: 588 + type: Transform +- proto: DiceBag + entities: + - uid: 552 + components: + - pos: 20.294882,15.426926 + parent: 588 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 1424 + components: + - pos: 14.5,44.5 + parent: 588 + type: Transform +- proto: DisposalUnit + entities: + - uid: 550 + components: + - pos: 22.5,16.5 + parent: 588 + type: Transform + - uid: 725 + components: + - pos: 21.5,22.5 + parent: 588 + type: Transform + - uid: 766 + components: + - pos: 9.5,22.5 + parent: 588 + type: Transform + - uid: 1288 + components: + - pos: 22.5,38.5 + parent: 588 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 526 + components: + - pos: 16.5,13.5 + parent: 588 + type: Transform + - uid: 723 + components: + - pos: 18.5,21.5 + parent: 588 + type: Transform +- proto: DoorElectronics + entities: + - uid: 659 + components: + - pos: 12.581519,21.410114 + parent: 588 + type: Transform + - uid: 1074 + components: + - rot: 3.141592653589793 rad + pos: 25.639427,25.54549 + parent: 588 + type: Transform +- proto: Dresser + entities: + - uid: 1051 + components: + - pos: 22.5,25.5 + parent: 588 + type: Transform + - uid: 1052 + components: + - pos: 20.5,27.5 + parent: 588 + type: Transform + - uid: 1061 + components: + - pos: 24.5,25.5 + parent: 588 + type: Transform + - uid: 1221 + components: + - pos: 21.5,36.5 + parent: 588 + type: Transform + - uid: 1222 + components: + - pos: 13.5,34.5 + parent: 588 + type: Transform +- proto: DrinkMREFlask + entities: + - uid: 761 + components: + - pos: 6.8591695,22.707298 + parent: 588 + type: Transform + - uid: 1011 + components: + - pos: 12.688126,13.059709 + parent: 588 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 1294 + components: + - pos: 22.442232,12.514399 + parent: 588 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 721 + components: + - pos: 22.448559,18.561966 + parent: 588 + type: Transform + - uid: 1293 + components: + - pos: 22.328642,12.741456 + parent: 588 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 578 + components: + - pos: 12.412022,12.535878 + parent: 588 + type: Transform + - uid: 579 + components: + - pos: 12.539811,12.748745 + parent: 588 + type: Transform +- proto: DrinkWaterCup + entities: + - uid: 722 + components: + - pos: 18.373508,18.661304 + parent: 588 + type: Transform + - uid: 762 + components: + - pos: 6.313587,19.590261 + parent: 588 + type: Transform + - uid: 763 + components: + - pos: 6.441377,19.419968 + parent: 588 + type: Transform +- proto: EmergencyLight + entities: + - uid: 1716 + components: + - rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1717 + components: + - pos: 21.5,10.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1718 + components: + - pos: 30.5,4.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1719 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1720 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1721 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1722 + components: + - pos: 18.5,16.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1723 + components: + - pos: 31.5,22.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1724 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1726 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,25.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1727 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1728 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1729 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1730 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,25.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1731 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1732 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1733 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1734 + components: + - pos: 1.5,24.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1735 + components: + - rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1736 + components: + - pos: 11.5,32.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1737 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1738 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,40.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1739 + components: + - rot: 3.141592653589793 rad + pos: 22.5,30.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1740 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1742 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1744 + components: + - rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1745 + components: + - rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1746 + components: + - rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1747 + components: + - rot: 3.141592653589793 rad + pos: 20.5,38.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1748 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,44.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1749 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,44.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1750 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1751 + components: + - pos: 30.5,6.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1752 + components: + - rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 1832 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,46.5 + parent: 588 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: EmergencyRollerBed + entities: + - uid: 1141 + components: + - pos: 30.5,25.5 + parent: 588 + type: Transform + - uid: 1142 + components: + - pos: 30.5,24.5 + parent: 588 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 867 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 588 + type: Transform + - uid: 1198 + components: + - pos: 2.5,8.5 + parent: 588 + type: Transform + - uid: 1199 + components: + - pos: 8.5,8.5 + parent: 588 + type: Transform + - uid: 1200 + components: + - pos: 8.5,35.5 + parent: 588 + type: Transform + - uid: 1201 + components: + - pos: 1.5,35.5 + parent: 588 + type: Transform + - uid: 1202 + components: + - pos: 25.5,14.5 + parent: 588 + type: Transform + - uid: 1328 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 588 + type: Transform + - uid: 1566 + components: + - pos: 17.5,44.5 + parent: 588 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 320 + components: + - pos: 21.5,0.5 + parent: 588 + type: Transform + - uid: 321 + components: + - pos: 20.5,0.5 + parent: 588 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 1396 + components: + - pos: 8.5,44.5 + parent: 588 + type: Transform +- proto: Flash + entities: + - uid: 1209 + components: + - pos: 10.726851,19.047483 + parent: 588 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 1022 + components: + - pos: 5.4813356,16.454845 + parent: 588 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 1193 + components: + - pos: 9.462372,35.6454 + parent: 588 + type: Transform +- proto: FloorDrain + entities: + - uid: 944 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 945 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorLavaEntity + entities: + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 588 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 588 + type: Transform + - uid: 458 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 588 + type: Transform + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 588 + type: Transform + - uid: 460 + components: + - pos: 8.5,3.5 + parent: 588 + type: Transform + - uid: 645 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 588 + type: Transform + - uid: 820 + components: + - pos: 4.5,32.5 + parent: 588 + type: Transform + - uid: 821 + components: + - pos: 4.5,31.5 + parent: 588 + type: Transform + - uid: 822 + components: + - pos: 5.5,31.5 + parent: 588 + type: Transform + - uid: 823 + components: + - pos: 5.5,32.5 + parent: 588 + type: Transform + - uid: 824 + components: + - pos: 5.5,30.5 + parent: 588 + type: Transform + - uid: 825 + components: + - pos: 6.5,30.5 + parent: 588 + type: Transform + - uid: 826 + components: + - pos: 7.5,30.5 + parent: 588 + type: Transform + - uid: 827 + components: + - pos: 6.5,32.5 + parent: 588 + type: Transform + - uid: 828 + components: + - pos: 7.5,32.5 + parent: 588 + type: Transform + - uid: 829 + components: + - pos: 7.5,31.5 + parent: 588 + type: Transform + - uid: 830 + components: + - pos: 6.5,31.5 + parent: 588 + type: Transform + - uid: 831 + components: + - pos: 8.5,30.5 + parent: 588 + type: Transform + - uid: 857 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,39.5 + parent: 588 + type: Transform + - uid: 858 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,39.5 + parent: 588 + type: Transform + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,38.5 + parent: 588 + type: Transform + - uid: 860 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,40.5 + parent: 588 + type: Transform + - uid: 887 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + type: Transform + - uid: 889 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,39.5 + parent: 588 + type: Transform + - uid: 906 + components: + - pos: 4.5,7.5 + parent: 588 + type: Transform + - uid: 907 + components: + - pos: 5.5,7.5 + parent: 588 + type: Transform + - uid: 908 + components: + - pos: 5.5,9.5 + parent: 588 + type: Transform + - uid: 909 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 588 + type: Transform + - uid: 910 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 588 + type: Transform + - uid: 911 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + type: Transform + - uid: 913 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 588 + type: Transform + - uid: 1247 + components: + - pos: 8.5,4.5 + parent: 588 + type: Transform + - uid: 1248 + components: + - pos: 9.5,4.5 + parent: 588 + type: Transform + - uid: 1249 + components: + - pos: 8.5,2.5 + parent: 588 + type: Transform + - uid: 1250 + components: + - pos: 8.5,1.5 + parent: 588 + type: Transform + - uid: 1251 + components: + - pos: 9.5,1.5 + parent: 588 + type: Transform + - uid: 1252 + components: + - pos: 8.5,1.5 + parent: 588 + type: Transform + - uid: 1253 + components: + - pos: 8.5,0.5 + parent: 588 + type: Transform + - uid: 1254 + components: + - pos: 7.5,0.5 + parent: 588 + type: Transform + - uid: 1333 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 588 + type: Transform + - uid: 1341 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,45.5 + parent: 588 + type: Transform + - uid: 1343 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,46.5 + parent: 588 + type: Transform + - uid: 1345 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 588 + type: Transform + - uid: 1359 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,47.5 + parent: 588 + type: Transform + - uid: 1360 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 588 + type: Transform + - uid: 1361 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + type: Transform + - uid: 1362 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + type: Transform + - uid: 1363 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 588 + type: Transform + - uid: 1364 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 588 + type: Transform + - uid: 1365 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,44.5 + parent: 588 + type: Transform + - uid: 1366 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 588 + type: Transform + - uid: 1367 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 588 + type: Transform + - uid: 1368 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 588 + type: Transform + - uid: 1369 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 588 + type: Transform + - uid: 1370 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,42.5 + parent: 588 + type: Transform + - uid: 1371 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,42.5 + parent: 588 + type: Transform + - uid: 1372 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,43.5 + parent: 588 + type: Transform + - uid: 1373 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,44.5 + parent: 588 + type: Transform + - uid: 1374 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + type: Transform + - uid: 1375 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 + type: Transform +- proto: FoodBowlBigTrash + entities: + - uid: 1840 + components: + - pos: 30.547388,48.16116 + parent: 588 + type: Transform +- proto: FoodBurgerXeno + entities: + - uid: 764 + components: + - pos: 10.975294,39.80753 + parent: 588 + type: Transform +- proto: FoodPlateSmallPlastic + entities: + - uid: 529 + components: + - pos: 17.462528,12.615073 + parent: 588 + type: Transform +- proto: FoodPlateTrash + entities: + - uid: 1692 + components: + - pos: 28.80027,47.44947 + parent: 588 + type: Transform +- proto: ForkPlastic + entities: + - uid: 531 + components: + - pos: 17.405733,12.600882 + parent: 588 + type: Transform +- proto: GasFilter + entities: + - uid: 1415 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,47.5 + parent: 588 + type: Transform +- proto: GasPipeBend + entities: + - uid: 1412 + components: + - rot: 3.141592653589793 rad + pos: 8.5,46.5 + parent: 588 + type: Transform + - uid: 1414 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 588 + type: Transform + - uid: 1416 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 588 + type: Transform + - uid: 1421 + components: + - pos: 13.5,47.5 + parent: 588 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 1418 + components: + - rot: 3.141592653589793 rad + pos: 10.5,47.5 + parent: 588 + type: Transform + - uid: 1420 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,46.5 + parent: 588 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 1410 + components: + - rot: 3.141592653589793 rad + pos: 9.5,46.5 + parent: 588 + type: Transform + - uid: 1411 + components: + - rot: 3.141592653589793 rad + pos: 13.5,46.5 + parent: 588 + type: Transform + - uid: 1417 + components: + - rot: 3.141592653589793 rad + pos: 10.5,46.5 + parent: 588 + type: Transform + - uid: 1419 + components: + - rot: 3.141592653589793 rad + pos: 11.5,46.5 + parent: 588 + type: Transform +- proto: GasPort + entities: + - uid: 1404 + components: + - pos: 9.5,48.5 + parent: 588 + type: Transform + - uid: 1422 + components: + - pos: 12.5,48.5 + parent: 588 + type: Transform +- proto: GasPressurePump + entities: + - uid: 1409 + components: + - pos: 9.5,47.5 + parent: 588 + type: Transform +- proto: GasThermoMachineFreezer + entities: + - uid: 1403 + components: + - pos: 10.5,48.5 + parent: 588 + type: Transform +- proto: GatfruitSeeds + entities: + - uid: 562 + components: + - pos: 8.528373,27.49547 + parent: 588 + type: Transform +- proto: Gauze + entities: + - uid: 1482 + components: + - pos: 8.452288,42.514927 + parent: 588 + type: Transform +- proto: Girder + entities: + - uid: 1301 + components: + - pos: 26.5,39.5 + parent: 588 + type: Transform +- proto: Grille + entities: + - uid: 209 + components: + - pos: 15.5,34.5 + parent: 588 + type: Transform + - uid: 211 + components: + - pos: 19.5,36.5 + parent: 588 + type: Transform + - uid: 212 + components: + - pos: 19.5,34.5 + parent: 588 + type: Transform + - uid: 213 + components: + - pos: 15.5,36.5 + parent: 588 + type: Transform + - uid: 403 + components: + - pos: 15.5,9.5 + parent: 588 + type: Transform + - uid: 404 + components: + - pos: 15.5,7.5 + parent: 588 + type: Transform + - uid: 407 + components: + - pos: 19.5,9.5 + parent: 588 + type: Transform + - uid: 408 + components: + - pos: 19.5,7.5 + parent: 588 + type: Transform + - uid: 568 + components: + - pos: 12.5,15.5 + parent: 588 + type: Transform + - uid: 584 + components: + - pos: 2.5,12.5 + parent: 588 + type: Transform + - uid: 586 + components: + - pos: 2.5,16.5 + parent: 588 + type: Transform + - uid: 587 + components: + - pos: 4.5,16.5 + parent: 588 + type: Transform + - uid: 589 + components: + - pos: 4.5,12.5 + parent: 588 + type: Transform + - uid: 1465 + components: + - rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 588 + type: Transform + - uid: 1466 + components: + - rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 588 + type: Transform +- proto: GrilleBroken + entities: + - uid: 1302 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 588 + type: Transform +- proto: Handcuffs + entities: + - uid: 1614 + components: + - pos: 22.608034,10.659381 + parent: 588 + type: Transform +- proto: Hemostat + entities: + - uid: 1471 + components: + - pos: 8.51377,43.004257 + parent: 588 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 1597 + components: + - pos: 26.5,7.5 + parent: 588 + type: Transform + - uid: 1598 + components: + - pos: 32.5,7.5 + parent: 588 + type: Transform + - uid: 1599 + components: + - pos: 29.5,9.5 + parent: 588 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 402 + components: + - pos: 8.5,27.5 + parent: 588 + type: Transform + - uid: 949 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 588 + type: Transform + - uid: 951 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,27.5 + parent: 588 + type: Transform + - uid: 1768 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,48.5 + parent: 588 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 946 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 588 + type: Transform + - uid: 947 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,24.5 + parent: 588 + type: Transform + - uid: 1040 + components: + - pos: 20.5,28.5 + parent: 588 + type: Transform + - uid: 1046 + components: + - pos: 22.5,24.5 + parent: 588 + type: Transform + - uid: 1148 + components: + - pos: 28.5,25.5 + parent: 588 + type: Transform + - uid: 1149 + components: + - pos: 28.5,24.5 + parent: 588 + type: Transform + - uid: 1223 + components: + - pos: 20.5,36.5 + parent: 588 + type: Transform + - uid: 1224 + components: + - pos: 14.5,34.5 + parent: 588 + type: Transform + - uid: 1467 + components: + - pos: 12.5,42.5 + parent: 588 + type: Transform + - uid: 1469 + components: + - pos: 10.5,42.5 + parent: 588 + type: Transform + - uid: 1767 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 588 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 1844 + components: + - pos: 29.538284,44.04174 + parent: 588 + type: Transform + - uid: 1851 + components: + - pos: 30.630798,21.602604 + parent: 588 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 1837 + components: + - pos: 30.099596,43.446724 + parent: 588 + type: Transform + - uid: 1841 + components: + - rot: 1.5707963267948966 rad + pos: 33.38517,20.601 + parent: 588 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 1838 + components: + - pos: 29.95761,43.361576 + parent: 588 + type: Transform + - uid: 1842 + components: + - rot: 1.5707963267948966 rad + pos: 33.42777,20.58681 + parent: 588 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 796 + components: + - pos: 31.5,21.5 + parent: 588 + type: Transform + - uid: 797 + components: + - pos: 31.5,20.5 + parent: 588 + type: Transform + - uid: 798 + components: + - pos: 31.5,19.5 + parent: 588 + type: Transform + - uid: 1772 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,42.5 + parent: 588 + type: Transform + - uid: 1774 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,44.5 + parent: 588 + type: Transform + - uid: 1787 + components: + - pos: 30.5,44.5 + parent: 588 + type: Transform + - uid: 1788 + components: + - pos: 30.5,42.5 + parent: 588 + type: Transform +- proto: IngotGold + entities: + - uid: 952 + components: + - pos: 11.069347,39.504154 + parent: 588 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 524 + components: + - pos: 16.5,12.5 + parent: 588 + type: Transform + - uid: 709 + components: + - pos: 18.5,22.5 + parent: 588 + type: Transform + - uid: 1785 + components: + - pos: 29.5,48.5 + parent: 588 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 1786 + components: + - pos: 30.5,47.5 + parent: 588 + type: Transform +- proto: KnifePlastic + entities: + - uid: 530 + components: + - pos: 17.249546,12.643455 + parent: 588 + type: Transform + - uid: 1836 + components: + - pos: 30.241585,48.271698 + parent: 588 + type: Transform +- proto: KukriKnife + entities: + - uid: 1576 + components: + - pos: 26.471617,3.6373227 + parent: 588 + type: Transform +- proto: Lamp + entities: + - uid: 581 + components: + - pos: 12.369425,13.798887 + parent: 588 + type: Transform +- proto: LampGold + entities: + - uid: 322 + components: + - pos: 18.419699,1.6320114 + parent: 588 + type: Transform + - uid: 323 + components: + - pos: 20.563715,4.8959665 + parent: 588 + type: Transform + - uid: 729 + components: + - pos: 6.4779434,22.892899 + parent: 588 + type: Transform + - uid: 730 + components: + - rot: -1.5707963267948966 rad + pos: 10.765976,19.912766 + parent: 588 + type: Transform +- proto: LessLethalVendingMachine + entities: + - uid: 1234 + components: + - pos: 16.5,25.5 + parent: 588 + type: Transform +- proto: Lighter + entities: + - uid: 1220 + components: + - pos: 7.5287867,36.397644 + parent: 588 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 1028 + components: + - pos: 14.5,16.5 + parent: 588 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 1152 + components: + - pos: 28.5,27.5 + parent: 588 + type: Transform +- proto: LockerMercenary + entities: + - uid: 1029 + components: + - pos: 12.5,0.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - uid: 1030 + components: + - pos: 2.5,0.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - uid: 1032 + components: + - pos: 0.5,0.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - uid: 1036 + components: + - pos: 4.5,0.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - uid: 1069 + components: + - pos: 16.5,0.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - uid: 1070 + components: + - pos: 14.5,0.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - uid: 1102 + components: + - pos: 16.5,22.5 + parent: 588 + type: Transform + - locked: False + type: Lock +- proto: LockerMercenaryFilled + entities: + - uid: 1107 + components: + - pos: 20.5,6.5 + parent: 588 + type: Transform + - uid: 1109 + components: + - pos: 12.5,28.5 + parent: 588 + type: Transform + - uid: 1110 + components: + - pos: 6.5,12.5 + parent: 588 + type: Transform +- proto: MachineFrame + entities: + - uid: 400 + components: + - pos: 26.5,8.5 + parent: 588 + type: Transform +- proto: MagazineBoxAntiMateriel + entities: + - uid: 1010 + components: + - pos: 28.32637,8.656908 + parent: 588 + type: Transform + - uid: 1035 + components: + - pos: 28.82637,8.456907 + parent: 588 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 414 + components: + - pos: 25.5,32.5 + parent: 588 + type: Transform + - uid: 1289 + components: + - pos: 17.5,38.5 + parent: 588 + type: Transform + - uid: 1290 + components: + - pos: 21.5,40.5 + parent: 588 + type: Transform + - uid: 1291 + components: + - pos: 20.5,40.5 + parent: 588 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 548 + components: + - pos: 15.5,4.5 + parent: 588 + type: Transform + - uid: 549 + components: + - pos: 3.5,4.5 + parent: 588 + type: Transform + - uid: 1580 + components: + - pos: 1.5,8.5 + parent: 588 + type: Transform + - uid: 1581 + components: + - pos: 9.5,8.5 + parent: 588 + type: Transform +- proto: MaterialCloth1 + entities: + - uid: 702 + components: + - pos: 12.462601,18.586084 + parent: 588 + type: Transform + - uid: 1065 + components: + - pos: 24.460928,24.594687 + parent: 588 + type: Transform + - uid: 1066 + components: + - pos: 24.389935,24.296673 + parent: 588 + type: Transform +- proto: MaterialWoodPlank1 + entities: + - uid: 703 + components: + - pos: 12.817572,18.685423 + parent: 588 + type: Transform + - uid: 1064 + components: + - pos: 26.278374,24.608877 + parent: 588 + type: Transform + - uid: 1067 + components: + - rot: -1.5707963267948966 rad + pos: 24.801699,24.708214 + parent: 588 + type: Transform + - uid: 1076 + components: + - rot: 3.141592653589793 rad + pos: 24.823982,27.574818 + parent: 588 + type: Transform +- proto: MedicalBed + entities: + - uid: 1146 + components: + - pos: 28.5,24.5 + parent: 588 + type: Transform + - uid: 1147 + components: + - pos: 28.5,25.5 + parent: 588 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 1153 + components: + - pos: 30.614443,28.392822 + parent: 588 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 1154 + components: + - pos: 30.40146,28.066427 + parent: 588 + type: Transform +- proto: OperatingTable + entities: + - uid: 1389 + components: + - pos: 9.5,43.5 + parent: 588 + type: Transform +- proto: Paper + entities: + - uid: 1055 + components: + - pos: 20.428474,24.722406 + parent: 588 + type: Transform + - uid: 1056 + components: + - pos: 20.669853,24.52373 + parent: 588 + type: Transform +- proto: PaperOffice + entities: + - uid: 327 + components: + - pos: 21.415642,4.0728827 + parent: 588 + type: Transform + - uid: 328 + components: + - pos: 21.586027,4.0019264 + parent: 588 + type: Transform + - uid: 1113 + components: + - pos: 20.706646,15.341779 + parent: 588 + type: Transform + - uid: 1114 + components: + - pos: 20.465267,15.185677 + parent: 588 + type: Transform + - uid: 1115 + components: + - pos: 20.30908,14.603841 + parent: 588 + type: Transform + - uid: 1616 + components: + - pos: 7.6521306,22.662569 + parent: 588 + type: Transform +- proto: PartRodMetal1 + entities: + - uid: 1071 + components: + - rot: 1.5707963267948966 rad + pos: 25.341253,26.595633 + parent: 588 + type: Transform + - uid: 1072 + components: + - pos: 25.36965,28.11408 + parent: 588 + type: Transform +- proto: Pen + entities: + - uid: 366 + components: + - rot: -1.5707963267948966 rad + pos: 21.352327,3.9473093 + parent: 588 + type: Transform + - uid: 367 + components: + - pos: 18.75395,1.1232786 + parent: 588 + type: Transform + - uid: 368 + components: + - pos: 24.788435,1.4496742 + parent: 588 + type: Transform + - uid: 731 + components: + - rot: -1.5707963267948966 rad + pos: 10.36841,19.019064 + parent: 588 + type: Transform + - uid: 732 + components: + - pos: 7.4631767,22.637186 + parent: 588 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 371 + components: + - pos: 25.484175,4.4865713 + parent: 588 + type: Transform +- proto: PillCanister + entities: + - uid: 1481 + components: + - pos: 14.438607,42.637726 + parent: 588 + type: Transform +- proto: PillSpaceDrugs + entities: + - uid: 1479 + components: + - pos: 14.438607,42.96412 + parent: 588 + type: Transform + - uid: 1480 + components: + - pos: 14.537998,42.878975 + parent: 588 + type: Transform +- proto: PlushieNuke + entities: + - uid: 1850 + components: + - pos: 22.519993,28.594225 + parent: 588 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 967 + components: + - pos: 16.5,32.5 + parent: 588 + type: Transform + - uid: 969 + components: + - pos: 24.5,32.5 + parent: 588 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 50 + components: + - pos: 26.5,15.5 + parent: 588 + type: Transform + - uid: 55 + components: + - pos: 28.5,15.5 + parent: 588 + type: Transform + - uid: 1018 + components: + - anchored: True + pos: 26.5,21.5 + parent: 588 + type: Transform + - storage: + Uranium: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage + - type: ItemCooldown + - uid: 1504 + components: + - pos: 18.5,44.5 + parent: 588 + type: Transform + - uid: 1505 + components: + - pos: 20.5,44.5 + parent: 588 + type: Transform +- proto: PortableScrubber + entities: + - uid: 1101 + components: + - pos: 18.5,30.5 + parent: 588 + type: Transform +- proto: PosterContrabandBountyHunters + entities: + - uid: 1017 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 588 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 1286 + components: + - pos: 16.5,38.5 + parent: 588 + type: Transform + - uid: 1287 + components: + - pos: 22.5,40.5 + parent: 588 + type: Transform +- proto: PowerCellHyper + entities: + - uid: 469 + components: + - pos: 12.355853,25.41643 + parent: 588 + type: Transform + - uid: 590 + components: + - pos: 5.381793,16.642464 + parent: 588 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 1103 + components: + - pos: 15.5,30.5 + parent: 588 + type: Transform + - uid: 1568 + components: + - pos: 21.5,47.5 + parent: 588 + type: Transform +- proto: Poweredlight + entities: + - uid: 1641 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1642 + components: + - rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1646 + components: + - rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1647 + components: + - rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1648 + components: + - rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1649 + components: + - pos: 13.5,10.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1650 + components: + - rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1651 + components: + - pos: 18.5,10.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1693 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,25.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1701 + components: + - rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1702 + components: + - pos: 20.5,16.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1703 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,20.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1704 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1705 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1706 + components: + - pos: 18.5,40.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1741 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1743 + components: + - pos: 21.5,22.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1830 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,43.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1831 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightLED + entities: + - uid: 1707 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,42.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1708 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,42.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1709 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,46.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1710 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,46.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1725 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 470 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 948 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 953 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1603 + components: + - rot: 3.141592653589793 rad + pos: 26.5,10.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1604 + components: + - rot: 3.141592653589793 rad + pos: 32.5,10.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1605 + components: + - pos: 29.5,6.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1606 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1607 + components: + - pos: 32.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1608 + components: + - pos: 26.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1643 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1644 + components: + - pos: 20.5,4.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1645 + components: + - rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1652 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1653 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1654 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1655 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1656 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1657 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1659 + components: + - pos: 3.5,18.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1661 + components: + - rot: 3.141592653589793 rad + pos: 1.5,22.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1662 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1663 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,25.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1664 + components: + - pos: 0.5,28.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1665 + components: + - rot: 3.141592653589793 rad + pos: 2.5,24.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1666 + components: + - rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1667 + components: + - rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1668 + components: + - rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1669 + components: + - pos: 8.5,34.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1670 + components: + - rot: 3.141592653589793 rad + pos: 5.5,38.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1671 + components: + - rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1672 + components: + - rot: 3.141592653589793 rad + pos: 2.5,43.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1673 + components: + - rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1674 + components: + - pos: 2.5,47.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1675 + components: + - pos: 4.5,47.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1676 + components: + - pos: 9.5,40.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1677 + components: + - pos: 13.5,40.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1678 + components: + - pos: 13.5,36.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1679 + components: + - rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1680 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1681 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1682 + components: + - pos: 25.5,36.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1683 + components: + - pos: 28.5,38.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1684 + components: + - pos: 19.5,46.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1685 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1686 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1687 + components: + - pos: 23.5,32.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1688 + components: + - pos: 17.5,32.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1689 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1690 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1694 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1695 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1696 + components: + - pos: 13.5,22.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1697 + components: + - rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1698 + components: + - rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1699 + components: + - rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1700 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1828 + components: + - rot: 3.141592653589793 rad + pos: 25.5,42.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1829 + components: + - pos: 25.5,48.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLightEmpty + entities: + - uid: 1640 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1658 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 588 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: Rack + entities: + - uid: 255 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 588 + type: Transform + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 588 + type: Transform + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 588 + type: Transform + - uid: 285 + components: + - pos: 13.5,0.5 + parent: 588 + type: Transform + - uid: 324 + components: + - pos: 19.5,4.5 + parent: 588 + type: Transform + - uid: 343 + components: + - pos: 25.5,21.5 + parent: 588 + type: Transform + - uid: 396 + components: + - pos: 28.5,8.5 + parent: 588 + type: Transform + - uid: 401 + components: + - pos: 32.5,8.5 + parent: 588 + type: Transform + - uid: 417 + components: + - pos: 12.5,6.5 + parent: 588 + type: Transform + - uid: 418 + components: + - pos: 12.5,10.5 + parent: 588 + type: Transform + - uid: 419 + components: + - pos: 22.5,10.5 + parent: 588 + type: Transform + - uid: 420 + components: + - pos: 22.5,6.5 + parent: 588 + type: Transform + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 588 + type: Transform + - uid: 551 + components: + - pos: 22.5,15.5 + parent: 588 + type: Transform + - uid: 585 + components: + - pos: 1.5,12.5 + parent: 588 + type: Transform + - uid: 596 + components: + - pos: 1.5,16.5 + parent: 588 + type: Transform + - uid: 597 + components: + - pos: 5.5,16.5 + parent: 588 + type: Transform + - uid: 598 + components: + - pos: 5.5,12.5 + parent: 588 + type: Transform + - uid: 771 + components: + - pos: 27.5,21.5 + parent: 588 + type: Transform + - uid: 966 + components: + - pos: 25.5,32.5 + parent: 588 + type: Transform + - uid: 977 + components: + - pos: 15.5,32.5 + parent: 588 + type: Transform + - uid: 1015 + components: + - rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 588 + type: Transform + - uid: 1016 + components: + - rot: 3.141592653589793 rad + pos: 12.5,24.5 + parent: 588 + type: Transform + - uid: 1021 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 588 + type: Transform + - uid: 1024 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 588 + type: Transform + - uid: 1068 + components: + - pos: 30.5,8.5 + parent: 588 + type: Transform + - uid: 1111 + components: + - pos: 14.5,32.5 + parent: 588 + type: Transform + - uid: 1112 + components: + - pos: 26.5,32.5 + parent: 588 + type: Transform + - uid: 1206 + components: + - pos: 1.5,8.5 + parent: 588 + type: Transform + - uid: 1208 + components: + - pos: 9.5,8.5 + parent: 588 + type: Transform + - uid: 1211 + components: + - pos: 2.5,34.5 + parent: 588 + type: Transform + - uid: 1319 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,40.5 + parent: 588 + type: Transform + - uid: 1562 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,47.5 + parent: 588 + type: Transform +- proto: Railing + entities: + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 588 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 588 + type: Transform + - uid: 427 + components: + - pos: 6.5,7.5 + parent: 588 + type: Transform + - uid: 428 + components: + - pos: 4.5,7.5 + parent: 588 + type: Transform + - uid: 429 + components: + - pos: 3.5,7.5 + parent: 588 + type: Transform + - uid: 430 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 588 + type: Transform + - uid: 431 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 588 + type: Transform + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 588 + type: Transform + - uid: 436 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 588 + type: Transform + - uid: 437 + components: + - rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 588 + type: Transform + - uid: 439 + components: + - pos: 5.5,7.5 + parent: 588 + type: Transform + - uid: 440 + components: + - pos: 7.5,7.5 + parent: 588 + type: Transform + - uid: 850 + components: + - rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 588 + type: Transform + - uid: 851 + components: + - pos: 9.5,32.5 + parent: 588 + type: Transform + - uid: 854 + components: + - pos: 3.5,32.5 + parent: 588 + type: Transform + - uid: 855 + components: + - rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 588 + type: Transform + - uid: 1259 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 588 + type: Transform + - uid: 1260 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 588 + type: Transform + - uid: 1261 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 588 + type: Transform + - uid: 1262 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 588 + type: Transform +- proto: RailingCorner + entities: + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 588 + type: Transform + - uid: 316 + components: + - pos: 30.5,3.5 + parent: 588 + type: Transform + - uid: 845 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 588 + type: Transform + - uid: 846 + components: + - rot: 3.141592653589793 rad + pos: 2.5,30.5 + parent: 588 + type: Transform + - uid: 847 + components: + - pos: 10.5,32.5 + parent: 588 + type: Transform + - uid: 848 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 588 + type: Transform + - uid: 849 + components: + - rot: 3.141592653589793 rad + pos: 8.5,30.5 + parent: 588 + type: Transform + - uid: 852 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,32.5 + parent: 588 + type: Transform + - uid: 853 + components: + - pos: 4.5,32.5 + parent: 588 + type: Transform + - uid: 856 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 588 + type: Transform + - uid: 886 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 588 + type: Transform + - uid: 888 + components: + - pos: 2.5,40.5 + parent: 588 + type: Transform + - uid: 890 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 588 + type: Transform + - uid: 891 + components: + - pos: 5.5,40.5 + parent: 588 + type: Transform + - uid: 892 + components: + - rot: 3.141592653589793 rad + pos: 4.5,38.5 + parent: 588 + type: Transform + - uid: 893 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 588 + type: Transform + - uid: 894 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,38.5 + parent: 588 + type: Transform + - uid: 895 + components: + - rot: 3.141592653589793 rad + pos: 1.5,38.5 + parent: 588 + type: Transform + - uid: 1255 + components: + - pos: 7.5,3.5 + parent: 588 + type: Transform + - uid: 1256 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 588 + type: Transform + - uid: 1257 + components: + - rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 588 + type: Transform + - uid: 1258 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 588 + type: Transform + - uid: 1351 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,44.5 + parent: 588 + type: Transform + - uid: 1352 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,43.5 + parent: 588 + type: Transform + - uid: 1353 + components: + - rot: 3.141592653589793 rad + pos: 4.5,43.5 + parent: 588 + type: Transform + - uid: 1354 + components: + - rot: 3.141592653589793 rad + pos: 5.5,44.5 + parent: 588 + type: Transform + - uid: 1355 + components: + - pos: 1.5,46.5 + parent: 588 + type: Transform + - uid: 1356 + components: + - pos: 2.5,47.5 + parent: 588 + type: Transform + - uid: 1357 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 588 + type: Transform + - uid: 1358 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 588 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 588 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 588 + type: Transform + - uid: 1376 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,43.5 + parent: 588 + type: Transform + - uid: 1377 + components: + - rot: 3.141592653589793 rad + pos: 1.5,47.5 + parent: 588 + type: Transform + - uid: 1378 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 588 + type: Transform + - uid: 1379 + components: + - pos: 5.5,43.5 + parent: 588 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 580 + components: + - pos: 12.5,12.5 + parent: 588 + type: Transform +- proto: RandomInstruments + entities: + - uid: 546 + components: + - pos: 1.5,4.5 + parent: 588 + type: Transform + - uid: 1159 + components: + - pos: 21.5,18.5 + parent: 588 + type: Transform + - uid: 1833 + components: + - pos: 24.5,42.5 + parent: 588 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 1119 + components: + - pos: 8.5,9.5 + parent: 588 + type: Transform + - uid: 1160 + components: + - rot: 3.141592653589793 rad + pos: 2.5,48.5 + parent: 588 + type: Transform + - uid: 1161 + components: + - pos: 1.5,19.5 + parent: 588 + type: Transform + - uid: 1162 + components: + - pos: 4.5,42.5 + parent: 588 + type: Transform + - uid: 1191 + components: + - pos: 2.5,7.5 + parent: 588 + type: Transform + - uid: 1192 + components: + - pos: 3.5,21.5 + parent: 588 + type: Transform + - uid: 1217 + components: + - pos: 22.5,1.5 + parent: 588 + type: Transform + - uid: 1571 + components: + - pos: 25.5,39.5 + parent: 588 + type: Transform + - uid: 1572 + components: + - pos: 3.5,35.5 + parent: 588 + type: Transform + - uid: 1573 + components: + - pos: 7.5,35.5 + parent: 588 + type: Transform + - uid: 1574 + components: + - pos: 5.5,25.5 + parent: 588 + type: Transform + - uid: 1575 + components: + - pos: 30.5,15.5 + parent: 588 + type: Transform + - uid: 1805 + components: + - pos: 18.5,43.5 + parent: 588 + type: Transform + - uid: 1806 + components: + - pos: 20.5,47.5 + parent: 588 + type: Transform +- proto: RandomSoap + entities: + - uid: 397 + components: + - pos: 8.5,24.5 + parent: 588 + type: Transform +- proto: RandomVending + entities: + - uid: 539 + components: + - pos: 17.5,16.5 + parent: 588 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 214 + components: + - pos: 19.5,34.5 + parent: 588 + type: Transform + - uid: 409 + components: + - pos: 15.5,7.5 + parent: 588 + type: Transform + - uid: 410 + components: + - pos: 15.5,9.5 + parent: 588 + type: Transform + - uid: 411 + components: + - pos: 19.5,7.5 + parent: 588 + type: Transform + - uid: 412 + components: + - pos: 19.5,9.5 + parent: 588 + type: Transform + - uid: 591 + components: + - pos: 2.5,12.5 + parent: 588 + type: Transform + - uid: 592 + components: + - pos: 4.5,12.5 + parent: 588 + type: Transform + - uid: 594 + components: + - pos: 4.5,16.5 + parent: 588 + type: Transform + - uid: 595 + components: + - pos: 2.5,16.5 + parent: 588 + type: Transform + - uid: 1166 + components: + - pos: 19.5,36.5 + parent: 588 + type: Transform + - uid: 1168 + components: + - pos: 15.5,36.5 + parent: 588 + type: Transform + - uid: 1169 + components: + - pos: 15.5,34.5 + parent: 588 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 593 + components: + - pos: 34.71599,24.503355 + parent: 588 + type: Transform + - linkedPorts: + 1238: + - Pressed: Toggle + 1239: + - Pressed: Toggle + 1237: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1104 + components: + - pos: 25.24476,30.698978 + parent: 588 + type: Transform + - uid: 1105 + components: + - pos: 25.443544,30.613832 + parent: 588 + type: Transform + - uid: 1106 + components: + - pos: 5.677143,16.762346 + parent: 588 + type: Transform +- proto: RiotLaserShield + entities: + - uid: 1618 + components: + - pos: 12.616156,10.534842 + parent: 588 + type: Transform +- proto: RiotShield + entities: + - uid: 600 + components: + - pos: 1.3209407,16.656654 + parent: 588 + type: Transform + - uid: 601 + components: + - pos: 1.5481212,16.543125 + parent: 588 + type: Transform + - uid: 1615 + components: + - pos: 12.363155,6.657488 + parent: 588 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 998 + components: + - pos: 22.5,30.5 + parent: 588 + type: Transform + - uid: 1009 + components: + - pos: 19.5,30.5 + parent: 588 + type: Transform + - uid: 1025 + components: + - pos: 21.5,30.5 + parent: 588 + type: Transform + - uid: 1190 + components: + - pos: 9.5,36.5 + parent: 588 + type: Transform + - uid: 1210 + components: + - pos: 9.5,48.5 + parent: 588 + type: Transform + - uid: 1413 + components: + - pos: 13.5,48.5 + parent: 588 + type: Transform + - uid: 1470 + components: + - pos: 12.5,48.5 + parent: 588 + type: Transform +- proto: SawAdvanced + entities: + - uid: 1468 + components: + - pos: 8.527969,43.529327 + parent: 588 + type: Transform +- proto: ScalpelLaser + entities: + - uid: 1472 + components: + - pos: 8.485372,43.131977 + parent: 588 + type: Transform +- proto: ScalpelShiv + entities: + - uid: 708 + components: + - pos: 16.074419,18.727995 + parent: 588 + type: Transform + - uid: 1592 + components: + - pos: 10.50393,24.491432 + parent: 588 + type: Transform +- proto: SeedExtractor + entities: + - uid: 802 + components: + - pos: 33.5,21.5 + parent: 588 + type: Transform + - uid: 1776 + components: + - pos: 28.5,42.5 + parent: 588 + type: Transform +- proto: SheetGlass + entities: + - uid: 649 + components: + - pos: 14.3137455,32.471424 + parent: 588 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 866 + components: + - pos: 2.412651,34.456436 + parent: 588 + type: Transform +- proto: SheetPlastic + entities: + - uid: 398 + components: + - pos: 17.410288,47.629227 + parent: 588 + type: Transform +- proto: SheetSteel + entities: + - uid: 656 + components: + - pos: 26.36062,32.5183 + parent: 588 + type: Transform + - uid: 699 + components: + - pos: 29.259031,40.432583 + parent: 588 + type: Transform +- proto: SheetUranium + entities: + - uid: 1019 + components: + - pos: 25.542059,21.475338 + parent: 588 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item +- proto: ShowcaseRobot + entities: + - uid: 1621 + components: + - pos: 16.5,10.5 + parent: 588 + type: Transform + - uid: 1622 + components: + - pos: 18.5,6.5 + parent: 588 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 1237 + components: + - pos: 34.5,27.5 + parent: 588 + type: Transform + - links: + - 593 + type: DeviceLinkSink + - uid: 1238 + components: + - pos: 32.5,27.5 + parent: 588 + type: Transform + - links: + - 593 + type: DeviceLinkSink +- proto: ShuttersWindow + entities: + - uid: 1239 + components: + - pos: 33.5,27.5 + parent: 588 + type: Transform + - links: + - 593 + type: DeviceLinkSink +- proto: SignCloning + entities: + - uid: 1484 + components: + - pos: 12.5,43.5 + parent: 588 + type: Transform +- proto: SignPrison + entities: + - uid: 1792 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 588 + type: Transform + - uid: 1793 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 588 + type: Transform + - uid: 1794 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + type: Transform + - uid: 1795 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + type: Transform + - uid: 1796 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 588 + type: Transform + - uid: 1797 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,44.5 + parent: 588 + type: Transform +- proto: SignSurgery + entities: + - uid: 1483 + components: + - pos: 10.5,43.5 + parent: 588 + type: Transform +- proto: Sink + entities: + - uid: 935 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 588 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 1461 + components: + - rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 588 + type: Transform + - uid: 1462 + components: + - rot: 3.141592653589793 rad + pos: 13.5,42.5 + parent: 588 + type: Transform +- proto: SMESBasic + entities: + - uid: 46 + components: + - pos: 26.5,13.5 + parent: 588 + type: Transform + - uid: 56 + components: + - pos: 28.5,13.5 + parent: 588 + type: Transform + - uid: 747 + components: + - pos: 26.5,19.5 + parent: 588 + type: Transform + - uid: 1506 + components: + - pos: 18.5,46.5 + parent: 588 + type: Transform + - uid: 1507 + components: + - pos: 20.5,46.5 + parent: 588 + type: Transform +- proto: SoapSyndie + entities: + - uid: 1856 + components: + - pos: 10.4890785,27.46785 + parent: 588 + type: Transform +- proto: SpaceCash100 + entities: + - uid: 1243 + components: + - pos: 11.887424,39.621456 + parent: 588 + type: Transform + - uid: 1244 + components: + - pos: 11.759636,39.479546 + parent: 588 + type: Transform + - uid: 1296 + components: + - pos: 12.100407,39.465355 + parent: 588 + type: Transform + - uid: 1297 + components: + - pos: 12.100407,39.80594 + parent: 588 + type: Transform + - uid: 1298 + components: + - pos: 11.688642,39.720795 + parent: 588 + type: Transform + - uid: 1299 + components: + - pos: 11.4330635,39.57888 + parent: 588 + type: Transform +- proto: SpawnVehicleATV + entities: + - uid: 988 + components: + - pos: 32.5,24.5 + parent: 588 + type: Transform +- proto: Spear + entities: + - uid: 1834 + components: + - pos: 24.466219,48.441994 + parent: 588 + type: Transform +- proto: Stairs + entities: + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 588 + type: Transform + - uid: 950 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 588 + type: Transform + - uid: 1155 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 588 + type: Transform + - uid: 1242 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 588 + type: Transform + - uid: 1246 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 588 + type: Transform + - uid: 1329 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 588 + type: Transform + - uid: 1473 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 588 + type: Transform + - uid: 1478 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 588 + type: Transform + - uid: 1563 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,31.5 + parent: 588 + type: Transform + - uid: 1577 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,45.5 + parent: 588 + type: Transform + - uid: 1579 + components: + - pos: 3.5,43.5 + parent: 588 + type: Transform + - uid: 1609 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 588 + type: Transform + - uid: 1610 + components: + - rot: 3.141592653589793 rad + pos: 3.5,47.5 + parent: 588 + type: Transform +- proto: StasisBed + entities: + - uid: 1425 + components: + - pos: 13.5,43.5 + parent: 588 + type: Transform +- proto: StimkitFilled + entities: + - uid: 561 + components: + - pos: 30.39083,27.514402 + parent: 588 + type: Transform +- proto: StimpackMini + entities: + - uid: 1879 + components: + - pos: 24.467485,46.702366 + parent: 588 + type: Transform +- proto: Stool + entities: + - uid: 1593 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 588 + type: Transform + - uid: 1594 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 588 + type: Transform + - uid: 1595 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 588 + type: Transform + - uid: 1596 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 588 + type: Transform +- proto: SubstationBasic + entities: + - uid: 467 + components: + - pos: 27.5,13.5 + parent: 588 + type: Transform + - uid: 1508 + components: + - pos: 19.5,46.5 + parent: 588 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 774 + components: + - pos: 27.5,19.5 + parent: 588 + type: Transform + - uid: 972 + components: + - pos: 19.5,32.5 + parent: 588 + type: Transform +- proto: SuitStorageMercenary + entities: + - uid: 1120 + components: + - pos: 32.5,25.5 + parent: 588 + type: Transform +- proto: SyringeEphedrine + entities: + - uid: 1475 + components: + - pos: 14.472328,42.917698 + parent: 588 + type: Transform +- proto: Table + entities: + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 588 + type: Transform + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 588 + type: Transform + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 588 + type: Transform + - uid: 535 + components: + - pos: 20.5,14.5 + parent: 588 + type: Transform + - uid: 536 + components: + - pos: 20.5,15.5 + parent: 588 + type: Transform + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 588 + type: Transform + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 588 + type: Transform + - uid: 633 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 588 + type: Transform + - uid: 636 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 588 + type: Transform + - uid: 637 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 588 + type: Transform + - uid: 710 + components: + - pos: 18.5,22.5 + parent: 588 + type: Transform + - uid: 711 + components: + - pos: 18.5,21.5 + parent: 588 + type: Transform + - uid: 712 + components: + - pos: 21.5,18.5 + parent: 588 + type: Transform + - uid: 713 + components: + - pos: 22.5,18.5 + parent: 588 + type: Transform + - uid: 714 + components: + - pos: 18.5,18.5 + parent: 588 + type: Transform + - uid: 715 + components: + - pos: 19.5,18.5 + parent: 588 + type: Transform + - uid: 799 + components: + - pos: 33.5,20.5 + parent: 588 + type: Transform + - uid: 1118 + components: + - pos: 22.5,12.5 + parent: 588 + type: Transform + - uid: 1778 + components: + - rot: 3.141592653589793 rad + pos: 30.5,48.5 + parent: 588 + type: Transform + - uid: 1779 + components: + - rot: 3.141592653589793 rad + pos: 29.5,48.5 + parent: 588 + type: Transform + - uid: 1780 + components: + - rot: 3.141592653589793 rad + pos: 30.5,47.5 + parent: 588 + type: Transform +- proto: TableFrame + entities: + - uid: 705 + components: + - pos: 15.5,22.5 + parent: 588 + type: Transform + - uid: 1063 + components: + - pos: 26.5,24.5 + parent: 588 + type: Transform +- proto: TableGlass + entities: + - uid: 1144 + components: + - pos: 30.5,27.5 + parent: 588 + type: Transform + - uid: 1145 + components: + - pos: 30.5,28.5 + parent: 588 + type: Transform + - uid: 1390 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,43.5 + parent: 588 + type: Transform + - uid: 1391 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,42.5 + parent: 588 + type: Transform + - uid: 1398 + components: + - rot: 3.141592653589793 rad + pos: 10.5,44.5 + parent: 588 + type: Transform + - uid: 1405 + components: + - pos: 14.5,42.5 + parent: 588 + type: Transform + - uid: 1406 + components: + - pos: 14.5,43.5 + parent: 588 + type: Transform + - uid: 1407 + components: + - pos: 12.5,44.5 + parent: 588 + type: Transform +- proto: TableReinforced + entities: + - uid: 924 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,36.5 + parent: 588 + type: Transform + - uid: 925 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 588 + type: Transform + - uid: 926 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 588 + type: Transform + - uid: 1005 + components: + - rot: 3.141592653589793 rad + pos: 15.5,30.5 + parent: 588 + type: Transform + - uid: 1006 + components: + - rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 588 + type: Transform + - uid: 1012 + components: + - rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 588 + type: Transform + - uid: 1023 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 588 + type: Transform + - uid: 1235 + components: + - pos: 34.5,24.5 + parent: 588 + type: Transform + - uid: 1567 + components: + - pos: 21.5,47.5 + parent: 588 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 1213 + components: + - pos: 10.5,39.5 + parent: 588 + type: Transform + - uid: 1214 + components: + - pos: 11.5,39.5 + parent: 588 + type: Transform + - uid: 1215 + components: + - pos: 12.5,39.5 + parent: 588 + type: Transform +- proto: TableWood + entities: + - uid: 309 + components: + - pos: 20.5,4.5 + parent: 588 + type: Transform + - uid: 310 + components: + - pos: 21.5,4.5 + parent: 588 + type: Transform + - uid: 311 + components: + - pos: 18.5,0.5 + parent: 588 + type: Transform + - uid: 312 + components: + - pos: 21.5,3.5 + parent: 588 + type: Transform + - uid: 317 + components: + - pos: 18.5,1.5 + parent: 588 + type: Transform + - uid: 318 + components: + - pos: 19.5,0.5 + parent: 588 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 588 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 26.5,3.5 + parent: 588 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 588 + type: Transform + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 588 + type: Transform + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 588 + type: Transform + - uid: 563 + components: + - pos: 13.5,13.5 + parent: 588 + type: Transform + - uid: 564 + components: + - pos: 12.5,13.5 + parent: 588 + type: Transform + - uid: 565 + components: + - pos: 12.5,12.5 + parent: 588 + type: Transform + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 588 + type: Transform + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 588 + type: Transform + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 588 + type: Transform + - uid: 1047 + components: + - pos: 22.5,28.5 + parent: 588 + type: Transform + - uid: 1048 + components: + - pos: 20.5,24.5 + parent: 588 + type: Transform + - uid: 1062 + components: + - pos: 26.5,28.5 + parent: 588 + type: Transform + - uid: 1227 + components: + - pos: 12.5,36.5 + parent: 588 + type: Transform + - uid: 1228 + components: + - pos: 22.5,34.5 + parent: 588 + type: Transform + - uid: 1632 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,1.5 + parent: 588 + type: Transform + - uid: 1783 + components: + - pos: 24.5,46.5 + parent: 588 + type: Transform + - uid: 1784 + components: + - pos: 24.5,44.5 + parent: 588 + type: Transform +- proto: TargetHuman + entities: + - uid: 1077 + components: + - rot: 3.141592653589793 rad + pos: 32.5,35.5 + parent: 588 + type: Transform +- proto: TintedWindow + entities: + - uid: 567 + components: + - pos: 12.5,15.5 + parent: 588 + type: Transform + - uid: 1463 + components: + - rot: 3.141592653589793 rad + pos: 10.5,43.5 + parent: 588 + type: Transform + - uid: 1464 + components: + - rot: 3.141592653589793 rad + pos: 12.5,43.5 + parent: 588 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 932 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 588 + type: Transform + - uid: 933 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 588 + type: Transform + - uid: 934 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,25.5 + parent: 588 + type: Transform +- proto: UniformScrubsColorPurple + entities: + - uid: 1712 + components: + - pos: 10.503376,44.53288 + parent: 588 + type: Transform +- proto: VehicleKeyATV + entities: + - uid: 602 + components: + - pos: 34.288902,24.472105 + parent: 588 + type: Transform +- proto: VendingMachineAmmo + entities: + - uid: 1233 + components: + - pos: 14.5,27.5 + parent: 588 + type: Transform +- proto: VendingMachineBountyVend + entities: + - uid: 1218 + components: + - pos: 10.5,14.5 + parent: 588 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 532 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,12.5 + parent: 588 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 720 + components: + - flags: SessionSpecific + type: MetaData + - pos: 22.5,22.5 + parent: 588 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 765 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,22.5 + parent: 588 + type: Transform + - uid: 1285 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,40.5 + parent: 588 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 1781 + components: + - flags: SessionSpecific + type: MetaData + - pos: 30.5,46.5 + parent: 588 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 538 + components: + - flags: SessionSpecific + type: MetaData + - pos: 16.5,16.5 + parent: 588 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 319 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,4.5 + parent: 588 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 1143 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,28.5 + parent: 588 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 800 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,19.5 + parent: 588 + type: Transform + - uid: 1775 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,44.5 + parent: 588 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 572 + components: + - pos: 13.5,13.5 + parent: 588 + type: Transform +- proto: WallPlastitaniumIndestructible + entities: + - uid: 377 + components: + - pos: 30.5,7.5 + parent: 588 + type: Transform + - uid: 378 + components: + - pos: 29.5,7.5 + parent: 588 + type: Transform + - uid: 379 + components: + - pos: 25.5,9.5 + parent: 588 + type: Transform + - uid: 380 + components: + - pos: 27.5,9.5 + parent: 588 + type: Transform + - uid: 381 + components: + - pos: 27.5,8.5 + parent: 588 + type: Transform + - uid: 382 + components: + - pos: 28.5,9.5 + parent: 588 + type: Transform + - uid: 383 + components: + - pos: 31.5,9.5 + parent: 588 + type: Transform + - uid: 384 + components: + - pos: 31.5,8.5 + parent: 588 + type: Transform + - uid: 385 + components: + - pos: 31.5,7.5 + parent: 588 + type: Transform + - uid: 386 + components: + - pos: 25.5,8.5 + parent: 588 + type: Transform + - uid: 387 + components: + - pos: 33.5,7.5 + parent: 588 + type: Transform + - uid: 388 + components: + - pos: 25.5,7.5 + parent: 588 + type: Transform + - uid: 389 + components: + - pos: 27.5,7.5 + parent: 588 + type: Transform + - uid: 390 + components: + - pos: 30.5,9.5 + parent: 588 + type: Transform + - uid: 391 + components: + - pos: 28.5,7.5 + parent: 588 + type: Transform + - uid: 392 + components: + - pos: 26.5,9.5 + parent: 588 + type: Transform + - uid: 393 + components: + - pos: 33.5,8.5 + parent: 588 + type: Transform + - uid: 394 + components: + - pos: 33.5,9.5 + parent: 588 + type: Transform + - uid: 395 + components: + - pos: 32.5,9.5 + parent: 588 + type: Transform +- proto: WallReinforced + entities: + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 588 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 588 + type: Transform + - uid: 244 + components: + - pos: 6.5,4.5 + parent: 588 + type: Transform + - uid: 245 + components: + - pos: 6.5,3.5 + parent: 588 + type: Transform + - uid: 246 + components: + - pos: 10.5,4.5 + parent: 588 + type: Transform + - uid: 247 + components: + - pos: 10.5,3.5 + parent: 588 + type: Transform + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 588 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 588 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 588 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 588 + type: Transform + - uid: 291 + components: + - pos: 15.5,6.5 + parent: 588 + type: Transform + - uid: 292 + components: + - pos: 19.5,6.5 + parent: 588 + type: Transform + - uid: 405 + components: + - pos: 15.5,10.5 + parent: 588 + type: Transform + - uid: 406 + components: + - pos: 19.5,10.5 + parent: 588 + type: Transform + - uid: 426 + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 588 + type: Transform + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 588 + type: Transform + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 588 + type: Transform + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 588 + type: Transform + - uid: 570 + components: + - pos: 0.5,46.5 + parent: 588 + type: Transform + - uid: 621 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 588 + type: Transform + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 588 + type: Transform + - uid: 623 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 588 + type: Transform + - uid: 627 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 588 + type: Transform + - uid: 1078 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 588 + type: Transform + - uid: 1330 + components: + - pos: 0.5,44.5 + parent: 588 + type: Transform + - uid: 1332 + components: + - pos: 2.5,42.5 + parent: 588 + type: Transform + - uid: 1334 + components: + - pos: 4.5,42.5 + parent: 588 + type: Transform + - uid: 1335 + components: + - pos: 6.5,44.5 + parent: 588 + type: Transform + - uid: 1337 + components: + - pos: 4.5,48.5 + parent: 588 + type: Transform + - uid: 1338 + components: + - pos: 6.5,46.5 + parent: 588 + type: Transform + - uid: 1340 + components: + - pos: 2.5,48.5 + parent: 588 + type: Transform +- proto: WallSolid + entities: + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,25.5 + parent: 588 + type: Transform + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 588 + type: Transform + - uid: 145 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 588 + type: Transform + - uid: 146 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 588 + type: Transform + - uid: 205 + components: + - pos: 8.5,35.5 + parent: 588 + type: Transform + - uid: 206 + components: + - pos: 7.5,35.5 + parent: 588 + type: Transform + - uid: 207 + components: + - pos: 6.5,35.5 + parent: 588 + type: Transform + - uid: 208 + components: + - pos: 4.5,35.5 + parent: 588 + type: Transform + - uid: 210 + components: + - pos: 1.5,34.5 + parent: 588 + type: Transform + - uid: 305 + components: + - pos: 22.5,4.5 + parent: 588 + type: Transform + - uid: 306 + components: + - pos: 22.5,3.5 + parent: 588 + type: Transform + - uid: 307 + components: + - pos: 22.5,0.5 + parent: 588 + type: Transform + - uid: 308 + components: + - pos: 22.5,1.5 + parent: 588 + type: Transform + - uid: 476 + components: + - pos: 25.5,13.5 + parent: 588 + type: Transform + - uid: 481 + components: + - pos: 25.5,15.5 + parent: 588 + type: Transform + - uid: 483 + components: + - pos: 30.5,13.5 + parent: 588 + type: Transform + - uid: 501 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 588 + type: Transform + - uid: 510 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,15.5 + parent: 588 + type: Transform + - uid: 749 + components: + - pos: 25.5,19.5 + parent: 588 + type: Transform + - uid: 750 + components: + - pos: 27.5,19.5 + parent: 588 + type: Transform + - uid: 975 + components: + - pos: 19.5,32.5 + parent: 588 + type: Transform + - uid: 995 + components: + - rot: 3.141592653589793 rad + pos: 21.5,32.5 + parent: 588 + type: Transform + - uid: 1163 + components: + - pos: 8.5,36.5 + parent: 588 + type: Transform + - uid: 1164 + components: + - pos: 3.5,35.5 + parent: 588 + type: Transform + - uid: 1165 + components: + - pos: 2.5,35.5 + parent: 588 + type: Transform + - uid: 1167 + components: + - pos: 1.5,35.5 + parent: 588 + type: Transform + - uid: 1300 + components: + - pos: 25.5,39.5 + parent: 588 + type: Transform + - uid: 1303 + components: + - pos: 28.5,39.5 + parent: 588 + type: Transform + - uid: 1304 + components: + - pos: 29.5,39.5 + parent: 588 + type: Transform + - uid: 1305 + components: + - pos: 28.5,40.5 + parent: 588 + type: Transform + - uid: 1485 + components: + - pos: 17.5,43.5 + parent: 588 + type: Transform + - uid: 1486 + components: + - pos: 17.5,44.5 + parent: 588 + type: Transform + - uid: 1487 + components: + - pos: 18.5,43.5 + parent: 588 + type: Transform + - uid: 1488 + components: + - pos: 20.5,43.5 + parent: 588 + type: Transform + - uid: 1489 + components: + - pos: 21.5,43.5 + parent: 588 + type: Transform + - uid: 1490 + components: + - pos: 21.5,44.5 + parent: 588 + type: Transform + - uid: 1491 + components: + - pos: 18.5,47.5 + parent: 588 + type: Transform + - uid: 1492 + components: + - pos: 19.5,47.5 + parent: 588 + type: Transform + - uid: 1493 + components: + - pos: 20.5,47.5 + parent: 588 + type: Transform +- proto: WallWood + entities: + - uid: 554 + components: + - pos: 9.5,13.5 + parent: 588 + type: Transform + - uid: 555 + components: + - pos: 9.5,14.5 + parent: 588 + type: Transform + - uid: 556 + components: + - pos: 9.5,15.5 + parent: 588 + type: Transform + - uid: 557 + components: + - pos: 10.5,15.5 + parent: 588 + type: Transform + - uid: 558 + components: + - pos: 13.5,15.5 + parent: 588 + type: Transform + - uid: 559 + components: + - pos: 13.5,16.5 + parent: 588 + type: Transform + - uid: 566 + components: + - pos: 9.5,12.5 + parent: 588 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 297 + components: + - pos: 2.5,4.5 + parent: 588 + type: Transform + - uid: 302 + components: + - pos: 4.5,4.5 + parent: 588 + type: Transform + - uid: 303 + components: + - pos: 12.5,4.5 + parent: 588 + type: Transform + - uid: 304 + components: + - pos: 14.5,4.5 + parent: 588 + type: Transform + - uid: 544 + components: + - pos: 16.5,4.5 + parent: 588 + type: Transform + - uid: 545 + components: + - pos: 0.5,4.5 + parent: 588 + type: Transform + - uid: 1769 + components: + - pos: 24.5,43.5 + parent: 588 + type: Transform + - uid: 1770 + components: + - pos: 24.5,47.5 + parent: 588 + type: Transform +- proto: WaterCooler + entities: + - uid: 629 + components: + - pos: 6.5,18.5 + parent: 588 + type: Transform + - uid: 724 + components: + - pos: 19.5,22.5 + parent: 588 + type: Transform + - uid: 1284 + components: + - pos: 17.5,40.5 + parent: 588 + type: Transform + - uid: 1292 + components: + - pos: 21.5,12.5 + parent: 588 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 801 + components: + - pos: 30.5,22.5 + parent: 588 + type: Transform + - uid: 1789 + components: + - pos: 28.5,48.5 + parent: 588 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 760 + components: + - pos: 10.5,18.5 + parent: 588 + type: Transform + - uid: 929 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,34.5 + parent: 588 + type: Transform + - uid: 1033 + components: + - pos: 14.5,28.5 + parent: 588 + type: Transform + - uid: 1034 + components: + - pos: 16.5,24.5 + parent: 588 + type: Transform +- proto: WeaponDisablerPractice + entities: + - uid: 547 + components: + - pos: 1.4370823,0.5241035 + parent: 588 + type: Transform + - uid: 930 + components: + - pos: 26.440151,36.61676 + parent: 588 + type: Transform + - uid: 1611 + components: + - pos: 12.371853,10.605072 + parent: 588 + type: Transform +- proto: WeaponEnergyGun + entities: + - uid: 1241 + components: + - pos: 26.565222,35.556686 + parent: 588 + type: Transform + - currentFireMode: + state: disabler + name: disable + fireCost: 100 + proto: BulletDisabler + type: EnergyGun + - heldPrefix: disabler + type: Item +- proto: WeaponLaserCarbinePractice + entities: + - uid: 931 + components: + - pos: 26.596338,36.36132 + parent: 588 + type: Transform + - uid: 1612 + components: + - pos: 22.543945,6.5464144 + parent: 588 + type: Transform +- proto: WeaponRackPistolWallmountedMercenary + entities: + - uid: 772 + components: + - pos: 13.5,15.5 + parent: 588 + type: Transform + - locked: False + type: Lock + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1613 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: WeaponRevolverArgenti + entities: + - uid: 1613 + components: + - flags: InContainer + type: MetaData + - parent: 772 + type: Transform + - canCollide: False + type: Physics +- proto: WeaponSniperHristov + entities: + - uid: 997 + components: + - pos: 28.37637,8.556908 + parent: 588 + type: Transform +- proto: WindoorAssemblySecure + entities: + - uid: 696 + components: + - rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 588 + type: Transform + - uid: 697 + components: + - pos: 12.5,21.5 + parent: 588 + type: Transform + - uid: 1073 + components: + - rot: 3.141592653589793 rad + pos: 25.5,25.5 + parent: 588 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 1569 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,45.5 + parent: 588 + type: Transform + - uid: 1570 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,45.5 + parent: 588 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 1408 + components: + - pos: 11.5,44.5 + parent: 588 + type: Transform +- proto: WindoorSecureMercenaryLocked + entities: + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,43.5 + parent: 588 + type: Transform + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,47.5 + parent: 588 + type: Transform + - uid: 256 + components: + - pos: 0.5,3.5 + parent: 588 + type: Transform + - uid: 274 + components: + - pos: 2.5,3.5 + parent: 588 + type: Transform + - uid: 275 + components: + - pos: 12.5,3.5 + parent: 588 + type: Transform + - uid: 289 + components: + - pos: 16.5,3.5 + parent: 588 + type: Transform + - uid: 698 + components: + - pos: 14.5,3.5 + parent: 588 + type: Transform + - uid: 1617 + components: + - pos: 4.5,3.5 + parent: 588 + type: Transform + - uid: 1619 + components: + - rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 588 + type: Transform + - uid: 1620 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 588 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 1053 + components: + - rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 588 + type: Transform + - uid: 1054 + components: + - pos: 21.5,27.5 + parent: 588 + type: Transform +- proto: WindowDirectional + entities: + - uid: 480 + components: + - rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 588 + type: Transform + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 588 + type: Transform + - uid: 540 + components: + - rot: 3.141592653589793 rad + pos: 28.5,15.5 + parent: 588 + type: Transform + - uid: 541 + components: + - pos: 26.5,13.5 + parent: 588 + type: Transform + - uid: 542 + components: + - pos: 27.5,13.5 + parent: 588 + type: Transform + - uid: 543 + components: + - pos: 28.5,13.5 + parent: 588 + type: Transform + - uid: 575 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 588 + type: Transform + - uid: 576 + components: + - pos: 26.5,19.5 + parent: 588 + type: Transform + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 588 + type: Transform + - uid: 804 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 588 + type: Transform + - uid: 1087 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 588 + type: Transform + - uid: 1088 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 588 + type: Transform + - uid: 1520 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,46.5 + parent: 588 + type: Transform + - uid: 1521 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,46.5 + parent: 588 + type: Transform + - uid: 1771 + components: + - rot: 3.141592653589793 rad + pos: 28.5,44.5 + parent: 588 + type: Transform + - uid: 1773 + components: + - rot: 3.141592653589793 rad + pos: 29.5,44.5 + parent: 588 + type: Transform + - uid: 1777 + components: + - rot: 3.141592653589793 rad + pos: 30.5,44.5 + parent: 588 + type: Transform + - uid: 1782 + components: + - pos: 30.5,46.5 + parent: 588 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 936 + components: + - rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 588 + type: Transform + - uid: 937 + components: + - rot: 3.141592653589793 rad + pos: 10.5,24.5 + parent: 588 + type: Transform + - uid: 938 + components: + - pos: 8.5,27.5 + parent: 588 + type: Transform + - uid: 939 + components: + - rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 588 + type: Transform + - uid: 941 + components: + - pos: 10.5,27.5 + parent: 588 + type: Transform + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 588 + type: Transform + - uid: 943 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,28.5 + parent: 588 + type: Transform + - uid: 1392 + components: + - pos: 8.5,44.5 + parent: 588 + type: Transform + - uid: 1393 + components: + - pos: 10.5,44.5 + parent: 588 + type: Transform + - uid: 1401 + components: + - pos: 12.5,44.5 + parent: 588 + type: Transform + - uid: 1402 + components: + - pos: 14.5,44.5 + parent: 588 + type: Transform + - uid: 1753 + components: + - rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 588 + type: Transform + - uid: 1754 + components: + - rot: 3.141592653589793 rad + pos: 25.5,43.5 + parent: 588 + type: Transform + - uid: 1755 + components: + - rot: 3.141592653589793 rad + pos: 26.5,43.5 + parent: 588 + type: Transform + - uid: 1756 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,42.5 + parent: 588 + type: Transform + - uid: 1757 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,48.5 + parent: 588 + type: Transform + - uid: 1758 + components: + - pos: 26.5,47.5 + parent: 588 + type: Transform + - uid: 1759 + components: + - pos: 25.5,47.5 + parent: 588 + type: Transform + - uid: 1760 + components: + - pos: 24.5,47.5 + parent: 588 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 588 + type: Transform + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 588 + type: Transform + - uid: 258 + components: + - pos: 3.5,3.5 + parent: 588 + type: Transform + - uid: 259 + components: + - pos: 5.5,3.5 + parent: 588 + type: Transform + - uid: 260 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 588 + type: Transform + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 588 + type: Transform + - uid: 270 + components: + - pos: 11.5,3.5 + parent: 588 + type: Transform + - uid: 271 + components: + - pos: 13.5,3.5 + parent: 588 + type: Transform + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 588 + type: Transform + - uid: 273 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 588 + type: Transform + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 588 + type: Transform + - uid: 278 + components: + - pos: 15.5,3.5 + parent: 588 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 588 + type: Transform + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 588 + type: Transform + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 588 + type: Transform + - uid: 290 + components: + - pos: 1.5,3.5 + parent: 588 + type: Transform + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 588 + type: Transform + - uid: 609 + components: + - pos: 4.5,14.5 + parent: 588 + type: Transform + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 588 + type: Transform + - uid: 612 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 588 + type: Transform + - uid: 614 + components: + - pos: 3.5,14.5 + parent: 588 + type: Transform + - uid: 619 + components: + - pos: 2.5,14.5 + parent: 588 + type: Transform + - uid: 620 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 588 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 588 + type: Transform + - uid: 625 + components: + - pos: 2.5,19.5 + parent: 588 + type: Transform + - uid: 626 + components: + - rot: 3.141592653589793 rad + pos: 2.5,21.5 + parent: 588 + type: Transform + - uid: 648 + components: + - rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 588 + type: Transform + - uid: 650 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 588 + type: Transform + - uid: 651 + components: + - rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 588 + type: Transform + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 588 + type: Transform + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 588 + type: Transform + - uid: 654 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 588 + type: Transform + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 588 + type: Transform + - uid: 660 + components: + - pos: 13.5,21.5 + parent: 588 + type: Transform + - uid: 805 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + type: Transform + - uid: 806 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + type: Transform + - uid: 807 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 588 + type: Transform + - uid: 808 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 588 + type: Transform + - uid: 809 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 588 + type: Transform + - uid: 810 + components: + - rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 588 + type: Transform + - uid: 811 + components: + - pos: 1.5,25.5 + parent: 588 + type: Transform + - uid: 812 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 588 + type: Transform + - uid: 1038 + components: + - rot: 3.141592653589793 rad + pos: 22.5,25.5 + parent: 588 + type: Transform + - uid: 1039 + components: + - pos: 20.5,27.5 + parent: 588 + type: Transform + - uid: 1042 + components: + - rot: 3.141592653589793 rad + pos: 20.5,25.5 + parent: 588 + type: Transform + - uid: 1045 + components: + - pos: 22.5,27.5 + parent: 588 + type: Transform + - uid: 1058 + components: + - pos: 24.5,27.5 + parent: 588 + type: Transform + - uid: 1059 + components: + - rot: 3.141592653589793 rad + pos: 26.5,25.5 + parent: 588 + type: Transform + - uid: 1060 + components: + - rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 588 + type: Transform + - uid: 1399 + components: + - pos: 9.5,44.5 + parent: 588 + type: Transform + - uid: 1400 + components: + - pos: 13.5,44.5 + parent: 588 + type: Transform +- proto: Wrench + entities: + - uid: 424 + components: + - pos: 15.156982,32.526764 + parent: 588 + type: Transform + - uid: 1020 + components: + - pos: 27.484116,21.506588 + parent: 588 + type: Transform +- proto: Zipties + entities: + - uid: 1156 + components: + - pos: 15.332411,0.52492684 + parent: 588 + type: Transform +- proto: ZiptiesBroken + entities: + - uid: 48 + components: + - pos: 5.2591753,3.5817227 + parent: 588 + type: Transform + - uid: 706 + components: + - pos: 16.06022,21.977758 + parent: 588 + type: Transform +... diff --git a/Resources/Maps/Shuttles/barge.yml b/Resources/Maps/Shuttles/barge.yml index 6efe05bd554..2b18c0de6b0 100644 --- a/Resources/Maps/Shuttles/barge.yml +++ b/Resources/Maps/Shuttles/barge.yml @@ -24,19 +24,19 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAADHAAAAAACbgAAAAADVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAACHAAAAAABbgAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAADHAAAAAACbgAAAAABVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAACHAAAAAACHAAAAAABbgAAAAAAVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAACbgAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAAAbgAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAABHAAAAAADHAAAAAACbgAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAACHAAAAAABbgAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAAAbgAAAAACVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAAAHAAAAAABbgAAAAADVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXAAAAAADXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXAAAAAAAXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACXAAAAAACXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACXAAAAAAAXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABXAAAAAADXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACXAAAAAACXAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABVAAAAAABVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABXAAAAAACVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABXAAAAAACVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: cQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACIAAAAAACVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACIAAAAAABVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -354,18 +354,17 @@ entities: data: tiles: -2,-1: - 0: 61162 - 1: 4 + 0: 52462 + 1: 8704 -1,-1: - 0: 64767 - 1: 256 - 2: 512 + 0: 65535 0,-1: 0: 65535 1,-1: 0: 13107 -2,0: - 0: 61166 + 1: 26214 + 0: 34952 -1,0: 0: 65535 0,0: @@ -373,9 +372,11 @@ entities: 1,0: 0: 13107 -2,-4: - 0: 60962 + 1: 26146 + 0: 34816 -2,-3: - 0: 61132 + 0: 52872 + 1: 8260 -2,-2: 0: 61166 -1,-4: @@ -385,47 +386,52 @@ entities: -1,-2: 0: 65535 0,-4: - 0: 64887 - 2: 512 + 0: 65399 0,-3: 0: 65535 0,-2: 0: 65535 1,-4: - 0: 13090 + 1: 13090 1,-3: - 0: 13073 + 1: 8209 + 0: 4864 1,-2: 0: 13107 -2,1: - 0: 52974 + 0: 35470 + 1: 17504 -1,1: - 0: 65279 - 3: 256 + 0: 65535 -1,2: - 0: 15 + 1: 1 + 0: 14 0,1: 0: 65535 0,2: - 0: 7 + 0: 3 + 1: 4 1,1: - 0: 4915 + 0: 787 + 1: 4128 -2,-6: - 0: 25668 + 1: 25668 -2,-5: - 0: 26342 + 1: 26342 -1,-5: - 0: 65535 + 1: 1 + 0: 65534 -1,-6: 0: 57344 0,-6: 0: 12288 0,-5: - 0: 30711 + 0: 30579 + 1: 132 1,-6: - 0: 12561 + 1: 12561 1,-5: - 0: 13107 + 1: 13107 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -445,41 +451,11 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.213781 - - 79.80423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 19.51668 - - 73.41989 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 18.970211 - - 71.364136 - - 0 - - 0 - - 0 - 0 - 0 - 0 @@ -626,1672 +602,2445 @@ entities: - pos: 5.5,2.5 parent: 70 type: Transform -- proto: BarSign +- proto: AtmosFixBlockerMarker entities: - - uid: 92 + - uid: 515 components: - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + pos: -6.5,-12.5 parent: 70 type: Transform -- proto: BlastDoor - entities: - - uid: 83 + - uid: 667 components: - - pos: 5.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 parent: 70 type: Transform - - links: - - 529 - type: DeviceLinkSink - - uid: 85 + - uid: 668 components: - - pos: 5.5,3.5 + - rot: 1.5707963267948966 rad + pos: 4.5,7.5 parent: 70 type: Transform - - links: - - 529 - type: DeviceLinkSink - - uid: 285 + - uid: 669 components: - - pos: -4.5,3.5 + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 parent: 70 type: Transform - - links: - - 521 - type: DeviceLinkSink - - uid: 287 + - uid: 670 components: - - pos: -4.5,2.5 + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 parent: 70 type: Transform - - links: - - 521 - type: DeviceLinkSink - - uid: 307 + - uid: 671 components: - - pos: -4.5,1.5 + - rot: 1.5707963267948966 rad + pos: -5.5,6.5 parent: 70 type: Transform - - links: - - 521 - type: DeviceLinkSink -- proto: CableApcExtension - entities: - - uid: 10 + - uid: 672 components: - - pos: -2.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 parent: 70 type: Transform - - uid: 35 + - uid: 673 components: - - pos: -0.5,7.5 + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 parent: 70 type: Transform - - uid: 36 + - uid: 674 components: - - pos: 1.5,7.5 + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 parent: 70 type: Transform - - uid: 37 + - uid: 675 components: - - pos: 2.5,6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 parent: 70 type: Transform - - uid: 41 + - uid: 676 components: - - pos: -0.5,6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 parent: 70 type: Transform - - uid: 68 + - uid: 677 components: - - pos: 4.5,6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 parent: 70 type: Transform - - uid: 118 + - uid: 678 components: - - pos: 2.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -6.5,3.5 parent: 70 type: Transform - - uid: 124 + - uid: 679 components: - - pos: 2.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 parent: 70 type: Transform - - uid: 135 + - uid: 680 components: - - pos: -4.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 parent: 70 type: Transform - - uid: 177 + - uid: 681 components: - - pos: -0.5,5.5 + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 parent: 70 type: Transform - - uid: 233 + - uid: 682 components: - - pos: -0.5,4.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 parent: 70 type: Transform - - uid: 332 + - uid: 683 components: - - pos: -2.5,7.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 parent: 70 type: Transform - - uid: 333 + - uid: 684 components: - - pos: -1.5,7.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 parent: 70 type: Transform - - uid: 334 + - uid: 685 components: - - pos: 0.5,7.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 70 type: Transform - - uid: 335 + - uid: 686 components: - - pos: 1.5,6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 parent: 70 type: Transform - - uid: 336 + - uid: 687 components: - - pos: 3.5,6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-12.5 parent: 70 type: Transform - - uid: 337 + - uid: 688 components: - - pos: -2.5,6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-13.5 parent: 70 type: Transform - - uid: 338 + - uid: 689 components: - - pos: -3.5,6.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-13.5 parent: 70 type: Transform - - uid: 339 + - uid: 690 components: - - pos: -4.5,6.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-14.5 parent: 70 type: Transform - - uid: 343 + - uid: 691 components: - - pos: -4.5,3.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-15.5 parent: 70 type: Transform - - uid: 344 + - uid: 692 components: - - pos: -4.5,2.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-16.5 parent: 70 type: Transform - - uid: 345 + - uid: 693 components: - - pos: -4.5,1.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-17.5 parent: 70 type: Transform - - uid: 346 + - uid: 694 components: - - pos: -4.5,0.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 parent: 70 type: Transform - - uid: 347 + - uid: 695 components: - - pos: -4.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-19.5 parent: 70 type: Transform - - uid: 348 + - uid: 696 components: - - pos: -4.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-20.5 parent: 70 type: Transform - - uid: 349 + - uid: 697 components: - - pos: -4.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-16.5 parent: 70 type: Transform - - uid: 350 + - uid: 698 components: - - pos: -4.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-17.5 parent: 70 type: Transform - - uid: 351 + - uid: 699 components: - - pos: -4.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 parent: 70 type: Transform - - uid: 352 + - uid: 700 components: - - pos: -4.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-19.5 parent: 70 type: Transform - - uid: 358 + - uid: 701 components: - - pos: -0.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-20.5 parent: 70 type: Transform - - uid: 363 + - uid: 702 components: - - pos: 2.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-21.5 parent: 70 type: Transform - - uid: 364 + - uid: 703 components: - - pos: 2.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 parent: 70 type: Transform - - uid: 365 + - uid: 704 components: - - pos: 2.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-23.5 parent: 70 type: Transform - - uid: 366 + - uid: 705 components: - - pos: 3.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 parent: 70 type: Transform - - uid: 368 + - uid: 706 components: - - pos: 3.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-19.5 parent: 70 type: Transform - - uid: 369 + - uid: 707 components: - - pos: 3.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-19.5 parent: 70 type: Transform - - uid: 370 + - uid: 708 components: - - pos: 3.5,0.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-18.5 parent: 70 type: Transform - - uid: 371 + - uid: 709 components: - - pos: 3.5,1.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-23.5 parent: 70 type: Transform - - uid: 372 + - uid: 710 components: - - pos: 3.5,2.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-22.5 parent: 70 type: Transform - - uid: 373 + - uid: 711 components: - - pos: 3.5,3.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-21.5 parent: 70 type: Transform - - uid: 376 + - uid: 712 components: - - pos: 2.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-20.5 parent: 70 type: Transform - - uid: 377 + - uid: 713 components: - - pos: 1.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-19.5 parent: 70 type: Transform - - uid: 378 + - uid: 714 components: - - pos: 0.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-18.5 parent: 70 type: Transform - - uid: 379 + - uid: 715 components: - - pos: -0.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-17.5 parent: 70 type: Transform - - uid: 380 + - uid: 716 components: - - pos: -1.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-16.5 parent: 70 type: Transform - - uid: 381 + - uid: 717 components: - - pos: -2.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-20.5 parent: 70 type: Transform - - uid: 382 + - uid: 718 components: - - pos: -3.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-19.5 parent: 70 type: Transform - - uid: 383 + - uid: 719 components: - - pos: -0.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-18.5 parent: 70 type: Transform - - uid: 384 + - uid: 720 components: - - pos: -0.5,0.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-17.5 parent: 70 type: Transform - - uid: 385 + - uid: 721 components: - - pos: -0.5,1.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 70 type: Transform - - uid: 386 + - uid: 722 components: - - pos: -0.5,2.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-15.5 parent: 70 type: Transform - - uid: 387 + - uid: 723 components: - - pos: -0.5,3.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-14.5 parent: 70 type: Transform - - uid: 390 + - uid: 724 components: - - pos: -0.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 parent: 70 type: Transform - - uid: 391 + - uid: 725 components: - - pos: -0.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 parent: 70 type: Transform - - uid: 392 + - uid: 726 components: - - pos: -0.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-13.5 parent: 70 type: Transform - - uid: 393 + - uid: 727 components: - - pos: -0.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-12.5 parent: 70 type: Transform - - uid: 394 + - uid: 728 components: - - pos: -0.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 parent: 70 type: Transform - - uid: 395 + - uid: 729 components: - - pos: -0.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 parent: 70 type: Transform - - uid: 396 + - uid: 730 components: - - pos: -0.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 parent: 70 type: Transform - - uid: 476 + - uid: 731 components: - - pos: -2.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 parent: 70 type: Transform - - uid: 477 +- proto: BarSign + entities: + - uid: 92 components: - - pos: -2.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 parent: 70 type: Transform - - uid: 478 +- proto: BlastDoor + entities: + - uid: 83 components: - - pos: -3.5,-12.5 + - pos: 5.5,-0.5 parent: 70 type: Transform - - uid: 479 + - links: + - 529 + type: DeviceLinkSink + - uid: 85 components: - - pos: -3.5,-11.5 + - pos: 5.5,3.5 parent: 70 type: Transform - - uid: 480 + - links: + - 529 + type: DeviceLinkSink + - uid: 285 components: - - pos: -3.5,-10.5 + - pos: -4.5,3.5 parent: 70 type: Transform - - uid: 481 + - links: + - 521 + type: DeviceLinkSink + - uid: 287 components: - - pos: -3.5,-9.5 + - pos: -4.5,2.5 parent: 70 type: Transform - - uid: 482 + - links: + - 521 + type: DeviceLinkSink + - uid: 307 components: - - pos: -4.5,-9.5 + - pos: -4.5,1.5 parent: 70 type: Transform - - uid: 483 + - links: + - 521 + type: DeviceLinkSink +- proto: CableApcExtension + entities: + - uid: 10 components: - - pos: -5.5,-9.5 + - pos: -2.5,-14.5 parent: 70 type: Transform - - uid: 484 + - uid: 35 components: - - pos: -1.5,-13.5 + - pos: -0.5,7.5 parent: 70 type: Transform - - uid: 485 + - uid: 36 components: - - pos: -0.5,-13.5 + - pos: 1.5,7.5 parent: 70 type: Transform - - uid: 486 + - uid: 37 components: - - pos: 0.5,-13.5 + - pos: 2.5,6.5 parent: 70 type: Transform - - uid: 487 + - uid: 41 components: - - pos: 1.5,-13.5 + - pos: -0.5,6.5 parent: 70 type: Transform - - uid: 488 + - uid: 68 components: - - pos: 1.5,-12.5 + - pos: 4.5,6.5 parent: 70 type: Transform - - uid: 489 + - uid: 118 components: - - pos: 1.5,-11.5 + - pos: 2.5,-8.5 parent: 70 type: Transform - - uid: 490 + - uid: 124 components: - - pos: 2.5,-11.5 + - pos: 2.5,-7.5 parent: 70 type: Transform - - uid: 491 + - uid: 135 components: - - pos: 2.5,-10.5 + - pos: -4.5,-6.5 parent: 70 type: Transform - - uid: 492 + - uid: 177 components: - - pos: 2.5,-9.5 + - pos: -0.5,5.5 parent: 70 type: Transform - - uid: 493 + - uid: 233 components: - - pos: 3.5,-9.5 + - pos: -0.5,4.5 parent: 70 type: Transform - - uid: 494 + - uid: 332 components: - - pos: 4.5,-9.5 + - pos: -2.5,7.5 parent: 70 type: Transform - - uid: 495 + - uid: 333 components: - - pos: 0.5,-14.5 + - pos: -1.5,7.5 parent: 70 type: Transform - - uid: 496 + - uid: 334 components: - - pos: 0.5,-15.5 + - pos: 0.5,7.5 parent: 70 type: Transform - - uid: 497 + - uid: 335 components: - - pos: 0.5,-16.5 + - pos: 1.5,6.5 parent: 70 type: Transform - - uid: 498 + - uid: 336 components: - - pos: 0.5,-17.5 + - pos: 3.5,6.5 parent: 70 type: Transform - - uid: 499 + - uid: 337 components: - - pos: 0.5,-18.5 + - pos: -2.5,6.5 parent: 70 type: Transform - - uid: 500 + - uid: 338 components: - - pos: 1.5,-18.5 + - pos: -3.5,6.5 parent: 70 type: Transform - - uid: 501 + - uid: 339 components: - - pos: 2.5,-18.5 + - pos: -4.5,6.5 parent: 70 type: Transform - - uid: 502 + - uid: 343 components: - - pos: -1.5,-14.5 + - pos: -4.5,3.5 parent: 70 type: Transform - - uid: 503 + - uid: 344 components: - - pos: -1.5,-15.5 + - pos: -4.5,2.5 parent: 70 type: Transform - - uid: 504 + - uid: 345 components: - - pos: -1.5,-16.5 + - pos: -4.5,1.5 parent: 70 type: Transform - - uid: 505 + - uid: 346 components: - - pos: -1.5,-17.5 + - pos: -4.5,0.5 parent: 70 type: Transform - - uid: 506 + - uid: 347 components: - - pos: -1.5,-18.5 + - pos: -4.5,-0.5 parent: 70 type: Transform - - uid: 507 + - uid: 348 components: - - pos: -2.5,-18.5 + - pos: -4.5,-1.5 parent: 70 type: Transform - - uid: 508 + - uid: 349 components: - - pos: -3.5,-18.5 + - pos: -4.5,-2.5 parent: 70 type: Transform - - uid: 509 + - uid: 350 components: - - pos: 1.5,-10.5 + - pos: -4.5,-3.5 parent: 70 type: Transform - - uid: 510 + - uid: 351 components: - - pos: 0.5,-10.5 + - pos: -4.5,-4.5 parent: 70 type: Transform - - uid: 511 + - uid: 352 components: - - pos: -0.5,-10.5 + - pos: -4.5,-5.5 parent: 70 type: Transform - - uid: 512 + - uid: 358 components: - - pos: -1.5,-10.5 + - pos: -0.5,-7.5 parent: 70 type: Transform - - uid: 513 + - uid: 363 components: - - pos: -2.5,-10.5 + - pos: 2.5,-6.5 parent: 70 type: Transform - - uid: 518 + - uid: 364 components: - - pos: -1.5,-7.5 + - pos: 2.5,-5.5 parent: 70 type: Transform - - uid: 523 + - uid: 365 components: - - pos: -3.5,-7.5 + - pos: 2.5,-4.5 parent: 70 type: Transform - - uid: 524 + - uid: 366 components: - - pos: -2.5,-7.5 + - pos: 3.5,-4.5 parent: 70 type: Transform - - uid: 525 + - uid: 368 components: - - pos: -4.5,-7.5 + - pos: 3.5,-1.5 parent: 70 type: Transform -- proto: CableHV - entities: - - uid: 1 + - uid: 369 components: - - pos: 0.5,-17.5 + - pos: 3.5,-0.5 parent: 70 type: Transform - - uid: 2 + - uid: 370 components: - - pos: -1.5,-17.5 + - pos: 3.5,0.5 parent: 70 type: Transform - - uid: 3 + - uid: 371 components: - - pos: -0.5,-17.5 + - pos: 3.5,1.5 parent: 70 type: Transform - - uid: 4 + - uid: 372 components: - - pos: 1.5,-16.5 + - pos: 3.5,2.5 parent: 70 type: Transform - - uid: 277 + - uid: 373 components: - - pos: -1.5,-17.5 + - pos: 3.5,3.5 parent: 70 type: Transform - - uid: 279 + - uid: 376 components: - - pos: -2.5,-17.5 + - pos: 2.5,-1.5 parent: 70 type: Transform - - uid: 280 + - uid: 377 components: - - pos: -2.5,-16.5 + - pos: 1.5,-1.5 parent: 70 type: Transform - - uid: 281 + - uid: 378 components: - - pos: -2.5,-15.5 + - pos: 0.5,-1.5 parent: 70 type: Transform - - uid: 425 + - uid: 379 components: - - pos: -5.5,-22.5 + - pos: -0.5,-1.5 parent: 70 type: Transform - - uid: 426 + - uid: 380 components: - - pos: -5.5,-21.5 + - pos: -1.5,-1.5 parent: 70 type: Transform - - uid: 427 + - uid: 381 components: - - pos: -5.5,-20.5 + - pos: -2.5,-1.5 parent: 70 type: Transform - - uid: 428 + - uid: 382 components: - - pos: -5.5,-19.5 + - pos: -3.5,-1.5 parent: 70 type: Transform - - uid: 429 + - uid: 383 components: - - pos: -5.5,-18.5 + - pos: -0.5,-0.5 parent: 70 type: Transform - - uid: 430 + - uid: 384 components: - - pos: -5.5,-17.5 + - pos: -0.5,0.5 parent: 70 type: Transform - - uid: 431 + - uid: 385 components: - - pos: -5.5,-16.5 + - pos: -0.5,1.5 parent: 70 type: Transform - - uid: 432 + - uid: 386 components: - - pos: -6.5,-20.5 + - pos: -0.5,2.5 parent: 70 type: Transform - - uid: 433 + - uid: 387 components: - - pos: -6.5,-19.5 + - pos: -0.5,3.5 parent: 70 type: Transform - - uid: 434 + - uid: 390 components: - - pos: -6.5,-18.5 + - pos: -0.5,-2.5 parent: 70 type: Transform - - uid: 435 + - uid: 391 components: - - pos: -6.5,-17.5 + - pos: -0.5,-3.5 parent: 70 type: Transform - - uid: 436 + - uid: 392 components: - - pos: -6.5,-16.5 + - pos: -0.5,-4.5 parent: 70 type: Transform - - uid: 437 + - uid: 393 components: - - pos: -6.5,-15.5 + - pos: -0.5,-5.5 parent: 70 type: Transform - - uid: 438 + - uid: 394 components: - - pos: -6.5,-14.5 + - pos: -0.5,-6.5 parent: 70 type: Transform - - uid: 439 + - uid: 395 components: - - pos: -6.5,-13.5 + - pos: -0.5,-7.5 parent: 70 type: Transform - - uid: 440 + - uid: 396 components: - - pos: -5.5,-13.5 + - pos: -0.5,-8.5 parent: 70 type: Transform - - uid: 441 + - uid: 476 components: - - pos: -4.5,-13.5 + - pos: -2.5,-13.5 parent: 70 type: Transform - - uid: 442 + - uid: 477 components: - - pos: -3.5,-13.5 + - pos: -2.5,-12.5 parent: 70 type: Transform - - uid: 443 + - uid: 478 components: - - pos: -2.5,-13.5 + - pos: -3.5,-12.5 parent: 70 type: Transform - - uid: 444 + - uid: 479 components: - - pos: -1.5,-13.5 + - pos: -3.5,-11.5 parent: 70 type: Transform - - uid: 445 + - uid: 480 components: - - pos: -1.5,-14.5 + - pos: -3.5,-10.5 parent: 70 type: Transform - - uid: 446 + - uid: 481 components: - - pos: -1.5,-15.5 + - pos: -3.5,-9.5 parent: 70 type: Transform - - uid: 447 + - uid: 482 components: - - pos: -0.5,-13.5 + - pos: -4.5,-9.5 parent: 70 type: Transform - - uid: 448 + - uid: 483 components: - - pos: 0.5,-13.5 + - pos: -5.5,-9.5 parent: 70 type: Transform - - uid: 449 + - uid: 484 components: - - pos: 1.5,-13.5 + - pos: -1.5,-13.5 parent: 70 type: Transform - - uid: 450 + - uid: 485 components: - - pos: 2.5,-13.5 + - pos: -0.5,-13.5 parent: 70 type: Transform - - uid: 451 + - uid: 486 components: - - pos: 3.5,-13.5 + - pos: 0.5,-13.5 parent: 70 type: Transform - - uid: 452 + - uid: 487 components: - - pos: 4.5,-13.5 + - pos: 1.5,-13.5 parent: 70 type: Transform - - uid: 453 + - uid: 488 components: - - pos: 5.5,-13.5 + - pos: 1.5,-12.5 parent: 70 type: Transform - - uid: 454 + - uid: 489 components: - - pos: 5.5,-14.5 + - pos: 1.5,-11.5 parent: 70 type: Transform - - uid: 455 + - uid: 490 components: - - pos: 5.5,-15.5 + - pos: 2.5,-11.5 parent: 70 type: Transform - - uid: 456 + - uid: 491 components: - - pos: 5.5,-16.5 + - pos: 2.5,-10.5 parent: 70 type: Transform - - uid: 457 + - uid: 492 components: - - pos: 5.5,-17.5 + - pos: 2.5,-9.5 parent: 70 type: Transform - - uid: 458 + - uid: 493 components: - - pos: 5.5,-18.5 + - pos: 3.5,-9.5 parent: 70 type: Transform - - uid: 459 + - uid: 494 components: - - pos: 5.5,-19.5 + - pos: 4.5,-9.5 parent: 70 type: Transform - - uid: 460 + - uid: 495 components: - - pos: 5.5,-20.5 + - pos: 0.5,-14.5 parent: 70 type: Transform - - uid: 461 + - uid: 496 components: - - pos: 4.5,-16.5 + - pos: 0.5,-15.5 parent: 70 type: Transform - - uid: 462 + - uid: 497 components: - - pos: 4.5,-17.5 + - pos: 0.5,-16.5 parent: 70 type: Transform - - uid: 463 + - uid: 498 components: - - pos: 4.5,-18.5 + - pos: 0.5,-17.5 parent: 70 type: Transform - - uid: 464 + - uid: 499 components: - - pos: 4.5,-19.5 + - pos: 0.5,-18.5 parent: 70 type: Transform - - uid: 465 + - uid: 500 components: - - pos: 4.5,-20.5 + - pos: 1.5,-18.5 parent: 70 type: Transform - - uid: 466 + - uid: 501 components: - - pos: 4.5,-21.5 + - pos: 2.5,-18.5 parent: 70 type: Transform - - uid: 467 + - uid: 502 components: - - pos: 4.5,-22.5 + - pos: -1.5,-14.5 parent: 70 type: Transform - - uid: 468 + - uid: 503 components: - - pos: 4.5,-23.5 + - pos: -1.5,-15.5 parent: 70 type: Transform - - uid: 469 + - uid: 504 components: - - pos: -5.5,-23.5 + - pos: -1.5,-16.5 parent: 70 type: Transform - - uid: 470 + - uid: 505 components: - - pos: -0.5,-15.5 + - pos: -1.5,-17.5 parent: 70 type: Transform - - uid: 606 + - uid: 506 components: - - pos: 1.5,-17.5 + - pos: -1.5,-18.5 parent: 70 type: Transform -- proto: CableMV - entities: - - uid: 23 + - uid: 507 components: - - pos: -2.5,-15.5 + - pos: -2.5,-18.5 parent: 70 type: Transform - - uid: 24 + - uid: 508 components: - - pos: -1.5,-14.5 + - pos: -3.5,-18.5 parent: 70 type: Transform - - uid: 25 + - uid: 509 components: - - pos: -1.5,-12.5 + - pos: 1.5,-10.5 parent: 70 type: Transform - - uid: 26 + - uid: 510 components: - - pos: -3.5,-12.5 + - pos: 0.5,-10.5 parent: 70 type: Transform - - uid: 27 + - uid: 511 components: - - pos: -3.5,-9.5 + - pos: -0.5,-10.5 parent: 70 type: Transform - - uid: 28 + - uid: 512 components: - - pos: -2.5,-8.5 + - pos: -1.5,-10.5 parent: 70 type: Transform - - uid: 29 + - uid: 513 components: - - pos: -0.5,-8.5 + - pos: -2.5,-10.5 parent: 70 type: Transform - - uid: 30 + - uid: 518 components: - - pos: -0.5,-6.5 + - pos: -1.5,-7.5 parent: 70 type: Transform - - uid: 31 + - uid: 523 components: - - pos: -0.5,3.5 + - pos: -3.5,-7.5 parent: 70 type: Transform - - uid: 33 + - uid: 524 components: - - pos: -1.5,6.5 + - pos: -2.5,-7.5 parent: 70 type: Transform - - uid: 34 + - uid: 525 components: - - pos: -2.5,7.5 + - pos: -4.5,-7.5 parent: 70 type: Transform - - uid: 64 +- proto: CableHV + entities: + - uid: 1 components: - - pos: -0.5,-4.5 + - pos: 0.5,-17.5 parent: 70 type: Transform - - uid: 65 + - uid: 2 components: - - pos: -0.5,-2.5 + - pos: -1.5,-17.5 parent: 70 type: Transform - - uid: 66 + - uid: 3 components: - - pos: -0.5,-0.5 + - pos: -0.5,-17.5 parent: 70 type: Transform - - uid: 67 + - uid: 4 components: - - pos: -0.5,1.5 + - pos: 1.5,-16.5 parent: 70 type: Transform - - uid: 232 + - uid: 277 components: - - pos: -3.5,-11.5 + - pos: -1.5,-17.5 parent: 70 type: Transform - - uid: 260 + - uid: 279 components: - - pos: -0.5,5.5 + - pos: -2.5,-17.5 parent: 70 type: Transform - - uid: 262 + - uid: 280 components: - - pos: -0.5,4.5 + - pos: -2.5,-16.5 parent: 70 type: Transform - - uid: 315 + - uid: 281 components: - - pos: -1.5,-15.5 + - pos: -2.5,-15.5 parent: 70 type: Transform - - uid: 316 + - uid: 425 components: - - pos: -1.5,-13.5 + - pos: -5.5,-22.5 parent: 70 type: Transform - - uid: 317 + - uid: 426 components: - - pos: -2.5,-12.5 + - pos: -5.5,-21.5 parent: 70 type: Transform - - uid: 319 + - uid: 427 components: - - pos: -3.5,-10.5 + - pos: -5.5,-20.5 parent: 70 type: Transform - - uid: 320 + - uid: 428 components: - - pos: -3.5,-8.5 + - pos: -5.5,-19.5 parent: 70 type: Transform - - uid: 321 + - uid: 429 components: - - pos: -1.5,-8.5 + - pos: -5.5,-18.5 parent: 70 type: Transform - - uid: 322 + - uid: 430 components: - - pos: -0.5,-7.5 + - pos: -5.5,-17.5 parent: 70 type: Transform - - uid: 323 + - uid: 431 components: - - pos: -0.5,-5.5 + - pos: -5.5,-16.5 parent: 70 type: Transform - - uid: 324 + - uid: 432 components: - - pos: -0.5,-3.5 + - pos: -6.5,-20.5 parent: 70 type: Transform - - uid: 325 + - uid: 433 components: - - pos: -0.5,-1.5 + - pos: -6.5,-19.5 parent: 70 type: Transform - - uid: 326 + - uid: 434 components: - - pos: -0.5,0.5 + - pos: -6.5,-18.5 parent: 70 type: Transform - - uid: 327 + - uid: 435 components: - - pos: -0.5,2.5 + - pos: -6.5,-17.5 parent: 70 type: Transform - - uid: 329 + - uid: 436 components: - - pos: -0.5,6.5 + - pos: -6.5,-16.5 parent: 70 type: Transform - - uid: 330 + - uid: 437 components: - - pos: -2.5,6.5 + - pos: -6.5,-15.5 parent: 70 type: Transform - - uid: 475 + - uid: 438 components: - - pos: -2.5,-14.5 + - pos: -6.5,-14.5 parent: 70 type: Transform -- proto: CableTerminal - entities: - - uid: 278 + - uid: 439 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-17.5 + - pos: -6.5,-13.5 parent: 70 type: Transform -- proto: Catwalk - entities: - - uid: 269 + - uid: 440 components: - - pos: -2.5,-16.5 + - pos: -5.5,-13.5 parent: 70 type: Transform - - uid: 270 + - uid: 441 components: - - pos: -1.5,-16.5 + - pos: -4.5,-13.5 parent: 70 type: Transform - - uid: 271 + - uid: 442 components: - - pos: -0.5,-16.5 + - pos: -3.5,-13.5 parent: 70 type: Transform - - uid: 272 + - uid: 443 components: - - pos: 0.5,-16.5 + - pos: -2.5,-13.5 parent: 70 type: Transform - - uid: 273 + - uid: 444 components: - - pos: 1.5,-16.5 + - pos: -1.5,-13.5 parent: 70 type: Transform -- proto: ChairPilotSeat - entities: - - uid: 312 + - uid: 445 components: - - rot: 3.141592653589793 rad - pos: -0.5,-12.5 + - pos: -1.5,-14.5 parent: 70 type: Transform - - uid: 565 + - uid: 446 components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 + - pos: -1.5,-15.5 parent: 70 type: Transform - - uid: 566 + - uid: 447 components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + - pos: -0.5,-13.5 parent: 70 type: Transform -- proto: ComfyChair - entities: - - uid: 548 + - uid: 448 components: - - pos: -1.5,7.5 + - pos: 0.5,-13.5 parent: 70 type: Transform - - uid: 549 + - uid: 449 components: - - pos: 0.5,7.5 + - pos: 1.5,-13.5 parent: 70 type: Transform -- proto: ComputerFrame - entities: - - uid: 104 + - uid: 450 components: - - pos: 0.5,-11.5 + - pos: 2.5,-13.5 parent: 70 type: Transform -- proto: ComputerShuttle - entities: - - uid: 44 + - uid: 451 components: - - pos: -0.5,-11.5 + - pos: 3.5,-13.5 parent: 70 type: Transform -- proto: ComputerSolarControl - entities: - - uid: 471 + - uid: 452 components: - - pos: -0.5,-15.5 + - pos: 4.5,-13.5 parent: 70 type: Transform -- proto: ComputerStationRecords - entities: - - uid: 306 + - uid: 453 components: - - pos: -1.5,-11.5 + - pos: 5.5,-13.5 parent: 70 type: Transform -- proto: ConveyorBelt - entities: - - uid: 75 + - uid: 454 components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 + - pos: 5.5,-14.5 parent: 70 type: Transform - - links: - - 361 - - 313 - type: DeviceLinkSink - - uid: 78 + - uid: 455 components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + - pos: 5.5,-15.5 parent: 70 type: Transform - - links: - - 361 - - 313 - type: DeviceLinkSink - - uid: 169 + - uid: 456 components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 + - pos: 5.5,-16.5 parent: 70 type: Transform - - links: - - 361 - - 313 - type: DeviceLinkSink - - uid: 172 + - uid: 457 components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + - pos: 5.5,-17.5 parent: 70 type: Transform - - links: - - 361 - - 313 - type: DeviceLinkSink - - uid: 204 + - uid: 458 components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + - pos: 5.5,-18.5 parent: 70 type: Transform - - links: - - 577 - type: DeviceLinkSink - - uid: 216 + - uid: 459 components: - - rot: 3.141592653589793 rad - pos: 1.5,-2.5 + - pos: 5.5,-19.5 parent: 70 type: Transform - - links: - - 577 - type: DeviceLinkSink - - uid: 217 + - uid: 460 components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 + - pos: 5.5,-20.5 parent: 70 type: Transform - - links: - - 577 - type: DeviceLinkSink - - uid: 218 + - uid: 461 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + - pos: 4.5,-16.5 parent: 70 type: Transform - - links: - - 362 - type: DeviceLinkSink - - uid: 220 + - uid: 462 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + - pos: 4.5,-17.5 parent: 70 type: Transform - - links: - - 362 - type: DeviceLinkSink - - uid: 221 + - uid: 463 components: - - rot: -1.5707963267948966 rad - pos: 4.5,3.5 + - pos: 4.5,-18.5 parent: 70 type: Transform - - links: - - 362 - type: DeviceLinkSink - - uid: 230 + - uid: 464 components: - - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + - pos: 4.5,-19.5 parent: 70 type: Transform - - links: - - 362 - type: DeviceLinkSink - - uid: 247 + - uid: 465 components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 + - pos: 4.5,-20.5 parent: 70 type: Transform - - links: - - 362 - type: DeviceLinkSink - - uid: 248 + - uid: 466 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + - pos: 4.5,-21.5 parent: 70 type: Transform - - links: - - 362 - type: DeviceLinkSink - - uid: 249 + - uid: 467 components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 + - pos: 4.5,-22.5 parent: 70 type: Transform - - links: - - 577 - type: DeviceLinkSink - - uid: 250 + - uid: 468 components: - - rot: 3.141592653589793 rad - pos: 1.5,-5.5 + - pos: 4.5,-23.5 parent: 70 type: Transform - - links: - - 577 - type: DeviceLinkSink -- proto: DefibrillatorCabinetFilled - entities: - - uid: 609 + - uid: 469 components: - - pos: 1.5,-7.5 + - pos: -5.5,-23.5 parent: 70 type: Transform -- proto: DrinkGlass - entities: - - uid: 587 + - uid: 470 components: - - pos: -5.4401426,-5.31392 + - pos: -0.5,-15.5 parent: 70 type: Transform - - uid: 588 + - uid: 606 components: - - pos: -5.24136,-5.44164 + - pos: 1.5,-17.5 + parent: 70 + type: Transform +- proto: CableMV + entities: + - uid: 23 + components: + - pos: -2.5,-15.5 + parent: 70 + type: Transform + - uid: 24 + components: + - pos: -1.5,-14.5 + parent: 70 + type: Transform + - uid: 25 + components: + - pos: -1.5,-12.5 + parent: 70 + type: Transform + - uid: 26 + components: + - pos: -3.5,-12.5 + parent: 70 + type: Transform + - uid: 27 + components: + - pos: -3.5,-9.5 + parent: 70 + type: Transform + - uid: 28 + components: + - pos: -2.5,-8.5 + parent: 70 + type: Transform + - uid: 29 + components: + - pos: -0.5,-8.5 + parent: 70 + type: Transform + - uid: 30 + components: + - pos: -0.5,-6.5 + parent: 70 + type: Transform + - uid: 31 + components: + - pos: -0.5,3.5 + parent: 70 + type: Transform + - uid: 33 + components: + - pos: -1.5,6.5 + parent: 70 + type: Transform + - uid: 34 + components: + - pos: -2.5,7.5 + parent: 70 + type: Transform + - uid: 64 + components: + - pos: -0.5,-4.5 + parent: 70 + type: Transform + - uid: 65 + components: + - pos: -0.5,-2.5 + parent: 70 + type: Transform + - uid: 66 + components: + - pos: -0.5,-0.5 + parent: 70 + type: Transform + - uid: 67 + components: + - pos: -0.5,1.5 + parent: 70 + type: Transform + - uid: 232 + components: + - pos: -3.5,-11.5 + parent: 70 + type: Transform + - uid: 260 + components: + - pos: -0.5,5.5 + parent: 70 + type: Transform + - uid: 262 + components: + - pos: -0.5,4.5 + parent: 70 + type: Transform + - uid: 315 + components: + - pos: -1.5,-15.5 + parent: 70 + type: Transform + - uid: 316 + components: + - pos: -1.5,-13.5 + parent: 70 + type: Transform + - uid: 317 + components: + - pos: -2.5,-12.5 + parent: 70 + type: Transform + - uid: 319 + components: + - pos: -3.5,-10.5 + parent: 70 + type: Transform + - uid: 320 + components: + - pos: -3.5,-8.5 + parent: 70 + type: Transform + - uid: 321 + components: + - pos: -1.5,-8.5 + parent: 70 + type: Transform + - uid: 322 + components: + - pos: -0.5,-7.5 + parent: 70 + type: Transform + - uid: 323 + components: + - pos: -0.5,-5.5 + parent: 70 + type: Transform + - uid: 324 + components: + - pos: -0.5,-3.5 + parent: 70 + type: Transform + - uid: 325 + components: + - pos: -0.5,-1.5 + parent: 70 + type: Transform + - uid: 326 + components: + - pos: -0.5,0.5 + parent: 70 + type: Transform + - uid: 327 + components: + - pos: -0.5,2.5 + parent: 70 + type: Transform + - uid: 329 + components: + - pos: -0.5,6.5 + parent: 70 + type: Transform + - uid: 330 + components: + - pos: -2.5,6.5 + parent: 70 + type: Transform + - uid: 475 + components: + - pos: -2.5,-14.5 + parent: 70 + type: Transform +- proto: CableTerminal + entities: + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 70 + type: Transform +- proto: Catwalk + entities: + - uid: 269 + components: + - pos: -2.5,-16.5 + parent: 70 + type: Transform + - uid: 270 + components: + - pos: -1.5,-16.5 + parent: 70 + type: Transform + - uid: 271 + components: + - pos: -0.5,-16.5 + parent: 70 + type: Transform + - uid: 272 + components: + - pos: 0.5,-16.5 + parent: 70 + type: Transform + - uid: 273 + components: + - pos: 1.5,-16.5 + parent: 70 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 70 + type: Transform + - uid: 565 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 70 + type: Transform + - uid: 566 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 70 + type: Transform +- proto: ComfyChair + entities: + - uid: 548 + components: + - pos: -1.5,7.5 + parent: 70 + type: Transform + - uid: 549 + components: + - pos: 0.5,7.5 + parent: 70 + type: Transform +- proto: ComputerFrame + entities: + - uid: 104 + components: + - pos: 0.5,-11.5 + parent: 70 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 44 + components: + - pos: -0.5,-11.5 + parent: 70 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 471 + components: + - pos: -0.5,-15.5 + parent: 70 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 306 + components: + - pos: -1.5,-11.5 + parent: 70 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 70 + type: Transform + - links: + - 361 + - 313 + type: DeviceLinkSink + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 70 + type: Transform + - links: + - 361 + - 313 + type: DeviceLinkSink + - uid: 169 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 70 + type: Transform + - links: + - 361 + - 313 + type: DeviceLinkSink + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 70 + type: Transform + - links: + - 361 + - 313 + type: DeviceLinkSink + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 70 + type: Transform + - links: + - 577 + type: DeviceLinkSink + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 70 + type: Transform + - links: + - 577 + type: DeviceLinkSink + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 70 + type: Transform + - links: + - 577 + type: DeviceLinkSink + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 70 + type: Transform + - links: + - 362 + type: DeviceLinkSink + - uid: 220 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 70 + type: Transform + - links: + - 362 + type: DeviceLinkSink + - uid: 221 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 70 + type: Transform + - links: + - 362 + type: DeviceLinkSink + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 70 + type: Transform + - links: + - 362 + type: DeviceLinkSink + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 70 + type: Transform + - links: + - 362 + type: DeviceLinkSink + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 70 + type: Transform + - links: + - 362 + type: DeviceLinkSink + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 70 + type: Transform + - links: + - 577 + type: DeviceLinkSink + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 70 + type: Transform + - links: + - 577 + type: DeviceLinkSink +- proto: DefibrillatorCabinetFilled + entities: + - uid: 609 + components: + - pos: 1.5,-7.5 + parent: 70 + type: Transform +- proto: DrinkGlass + entities: + - uid: 587 + components: + - pos: -5.4401426,-5.31392 + parent: 70 + type: Transform + - uid: 588 + components: + - pos: -5.24136,-5.44164 parent: 70 type: Transform - proto: DrinkShaker entities: - uid: 582 components: - - pos: -5.795113,-5.4700217 + - pos: -5.795113,-5.4700217 + parent: 70 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 589 + components: + - pos: -5.496938,-5.6970797 + parent: 70 + type: Transform + - uid: 590 + components: + - pos: -5.2981544,-5.7964177 + parent: 70 + type: Transform +- proto: DrinkVacuumFlask + entities: + - uid: 284 + components: + - pos: -0.49386668,7.58623 + parent: 70 + type: Transform +- proto: EmergencyLight + entities: + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 70 + type: Transform + - uid: 733 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 70 + type: Transform + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 70 + type: Transform + - uid: 735 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 70 + type: Transform + - uid: 736 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 70 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 580 + components: + - pos: -4.5,6.5 + parent: 70 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 311 + components: + - pos: -2.5,-11.5 + parent: 70 + type: Transform + - name: The Barge + type: FaxMachine +- proto: FireAlarm + entities: + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 70 + type: Transform + - devices: + - 585 + - 584 + - 342 + - 140 + type: DeviceList + - uid: 574 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 70 + type: Transform + - devices: + - 266 + - 275 + - 283 + - 168 + - 140 + type: DeviceList + - uid: 576 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 70 + type: Transform + - devices: + - 340 + - 283 + - 275 + - 266 + - 318 + - 328 + type: DeviceList +- proto: Firelock + entities: + - uid: 584 + components: + - pos: -1.5,-14.5 + parent: 70 + type: Transform + - uid: 585 + components: + - pos: 0.5,-14.5 + parent: 70 + type: Transform +- proto: FirelockGlass + entities: + - uid: 140 + components: + - pos: -1.5,-0.5 + parent: 70 + type: Transform + - uid: 168 + components: + - pos: -1.5,4.5 + parent: 70 + type: Transform + - uid: 266 + components: + - pos: 0.5,1.5 + parent: 70 + type: Transform + - uid: 275 + components: + - pos: 0.5,2.5 + parent: 70 + type: Transform + - uid: 283 + components: + - pos: 0.5,3.5 + parent: 70 + type: Transform + - uid: 318 + components: + - pos: 2.5,-2.5 + parent: 70 + type: Transform + - uid: 328 + components: + - pos: 1.5,-2.5 + parent: 70 + type: Transform + - uid: 340 + components: + - pos: 1.5,6.5 + parent: 70 + type: Transform + - uid: 342 + components: + - pos: 2.5,-7.5 + parent: 70 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 70 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 70 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 274 + components: + - pos: 0.5,-18.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 737 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 70 + type: Transform + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 552 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-17.5 parent: 70 type: Transform -- proto: DrinkShotGlass - entities: - - uid: 589 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 615 components: - - pos: -5.496938,-5.6970797 + - pos: -1.5,-12.5 parent: 70 type: Transform - - uid: 590 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 616 components: - - pos: -5.2981544,-5.7964177 + - rot: 3.141592653589793 rad + pos: -3.5,-12.5 parent: 70 type: Transform -- proto: DrinkVacuumFlask - entities: - - uid: 284 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 621 components: - - pos: -0.49386668,7.58623 + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 parent: 70 type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 580 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 645 components: - - pos: -4.5,6.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 parent: 70 type: Transform -- proto: FaxMachineShip + - color: '#990000FF' + type: AtmosPipeColor + - uid: 648 + components: + - pos: -4.5,-3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 649 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway entities: - - uid: 311 + - uid: 18 components: - - pos: -2.5,-11.5 + - pos: -0.5,-1.5 parent: 70 type: Transform - - name: The Barge - type: FaxMachine -- proto: FireAlarm + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 222 + components: + - pos: 0.5,-16.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 628 + components: + - pos: -1.5,-4.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 633 + components: + - pos: -1.5,3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight entities: - - uid: 564 + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 17 + components: + - pos: -0.5,-7.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 19 + components: + - pos: -0.5,0.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 47 + components: + - pos: 0.5,-14.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 49 components: - rot: 3.141592653589793 rad - pos: 2.5,-13.5 + pos: 2.5,-10.5 parent: 70 type: Transform - - devices: - - 585 - - 584 - - 342 - - 140 - type: DeviceList - - uid: 574 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 50 + components: + - pos: -0.5,-5.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 51 + components: + - pos: -0.5,-3.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 53 components: - rot: -1.5707963267948966 rad - pos: 0.5,0.5 + pos: -2.5,-1.5 parent: 70 type: Transform - - devices: - - 266 - - 275 - - 283 - - 168 - - 140 - type: DeviceList - - uid: 576 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 54 components: - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + pos: 1.5,-1.5 parent: 70 type: Transform - - devices: - - 340 - - 283 - - 275 - - 266 - - 318 - - 328 - type: DeviceList -- proto: Firelock - entities: - - uid: 584 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 215 components: - - pos: -1.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 parent: 70 type: Transform - - uid: 585 + - uid: 223 components: - - pos: 0.5,-14.5 + - pos: 0.5,-17.5 parent: 70 type: Transform -- proto: FirelockGlass - entities: - - uid: 140 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 288 components: - - pos: -1.5,-0.5 + - pos: 0.5,-13.5 parent: 70 type: Transform - - uid: 168 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 289 components: - - pos: -1.5,4.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 parent: 70 type: Transform - - uid: 266 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 290 components: - - pos: 0.5,1.5 + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 parent: 70 type: Transform - - uid: 275 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 291 components: - - pos: 0.5,2.5 + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 parent: 70 type: Transform - - uid: 283 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 293 components: - - pos: 0.5,3.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 70 type: Transform - - uid: 318 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 294 components: - - pos: 2.5,-2.5 + - pos: -0.5,-6.5 parent: 70 type: Transform - - uid: 328 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 295 components: - - pos: 1.5,-2.5 + - pos: -0.5,-4.5 parent: 70 type: Transform - - uid: 340 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 296 components: - - pos: 1.5,6.5 + - pos: -0.5,-2.5 parent: 70 type: Transform - - uid: 342 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 297 + components: + - pos: -0.5,-0.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 298 + components: + - pos: -0.5,1.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 301 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 302 components: - - pos: 2.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 parent: 70 type: Transform -- proto: GasMixerFlipped - entities: - - uid: 274 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 303 components: - - pos: 0.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 parent: 70 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor -- proto: GasPipeBend - entities: - - uid: 15 + - uid: 532 components: - - pos: 2.5,-8.5 + - pos: -0.5,4.5 parent: 70 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 48 + - uid: 533 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 + - pos: -0.5,5.5 parent: 70 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 264 + - uid: 562 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 + - rot: 3.141592653589793 rad + pos: -1.5,-16.5 parent: 70 type: Transform - - uid: 282 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 578 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-16.5 + - rot: 3.141592653589793 rad + pos: -1.5,-15.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 18 + - uid: 583 components: - - pos: -0.5,-1.5 + - rot: 3.141592653589793 rad + pos: -1.5,-14.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 16 + - uid: 617 components: - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 + pos: -2.5,-12.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 17 + - uid: 618 components: - - pos: -0.5,-7.5 + - pos: -3.5,-11.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 19 + - uid: 619 components: - - pos: -0.5,0.5 + - pos: -3.5,-10.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 20 + - uid: 620 components: - - pos: -0.5,2.5 + - pos: -3.5,-9.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 47 + - uid: 624 components: - - pos: 0.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 49 + - uid: 625 components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 + - pos: -1.5,-7.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 50 + - uid: 626 components: - - pos: -0.5,-5.5 + - pos: -1.5,-6.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 51 + - uid: 627 components: - - pos: -0.5,-3.5 + - pos: -1.5,-5.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 53 + - uid: 629 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + - pos: -1.5,-3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 54 + - uid: 630 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 + - pos: -1.5,-2.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 215 + - uid: 631 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 + - pos: -1.5,-1.5 parent: 70 type: Transform - - uid: 222 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 632 components: - - pos: 0.5,-15.5 + - pos: -1.5,-0.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 223 + - uid: 634 components: - - pos: 0.5,-17.5 + - pos: -1.5,1.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 288 + - uid: 635 components: - - pos: 0.5,-13.5 + - pos: -1.5,2.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 289 + - uid: 637 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 + - pos: -1.5,4.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 290 + - uid: 638 components: - - rot: 3.141592653589793 rad - pos: 2.5,-11.5 + - pos: -1.5,5.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 291 + - uid: 640 components: - rot: 3.141592653589793 rad - pos: 2.5,-9.5 + pos: 2.5,-7.5 parent: 70 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 293 + - uid: 642 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 294 + - uid: 643 components: - - pos: -0.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 295 + - uid: 644 components: - - pos: -0.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 296 + - uid: 650 components: - - pos: -0.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 297 + - uid: 651 components: - - pos: -0.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 298 + - uid: 652 components: - - pos: -0.5,1.5 + - rot: 3.141592653589793 rad + pos: -0.5,3.5 parent: 70 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 299 + - uid: 653 components: - - pos: -0.5,3.5 + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 300 + - uid: 654 components: - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 + pos: -2.5,3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 301 + - uid: 655 components: - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + pos: -4.5,3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 302 + - uid: 657 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 303 + - uid: 658 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 532 + - uid: 659 components: - - pos: -0.5,4.5 + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 parent: 70 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 533 + - uid: 660 components: - - pos: -0.5,5.5 + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 70 type: Transform - color: '#03FCD3FF' @@ -2305,10 +3054,10 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 43 + - uid: 15 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 parent: 70 type: Transform - color: '#03FCD3FF' @@ -2321,6 +3070,38 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor + - uid: 299 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 586 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 42 @@ -2342,6 +3123,16 @@ entities: pos: 0.5,-19.5 parent: 70 type: Transform +- proto: GasPressurePump + entities: + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - proto: GasVentPump entities: - uid: 55 @@ -2383,6 +3174,92 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 636 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 641 + components: + - pos: 2.5,-6.5 + parent: 70 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 550 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 594 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 639 + components: + - pos: -1.5,6.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 646 + components: + - pos: 2.5,-3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 662 + components: + - pos: 3.5,4.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 70 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 569 @@ -4112,7 +4989,7 @@ entities: - pos: -2.397523,-13.449847 parent: 70 type: Transform -- proto: WindoorBarLocked +- proto: Windoor entities: - uid: 160 components: diff --git a/Resources/Maps/Shuttles/bison.yml b/Resources/Maps/Shuttles/bison.yml index 3d9b5be4624..f8c224224dc 100644 --- a/Resources/Maps/Shuttles/bison.yml +++ b/Resources/Maps/Shuttles/bison.yml @@ -5,30 +5,30 @@ tilemap: 0: Space 1: FloorArcadeBlue 12: FloorBar - 26: FloorDark - 27: FloorDarkDiagonal - 28: FloorDarkDiagonalMini - 31: FloorDarkMono - 35: FloorDarkPlastic - 41: FloorFreezer - 51: FloorGreenCircuit - 57: FloorKitchen - 58: FloorLaundry - 62: FloorMime - 77: FloorShuttlePurple - 83: FloorSteel - 88: FloorSteelDirty - 91: FloorSteelMono - 95: FloorTechMaint - 96: FloorTechMaint2 - 97: FloorTechMaint3 - 99: FloorWhite - 103: FloorWhiteMini - 104: FloorWhiteMono - 108: FloorWhitePlastic - 109: FloorWood - 111: Lattice - 112: Plating + 27: FloorDark + 28: FloorDarkDiagonal + 29: FloorDarkDiagonalMini + 32: FloorDarkMono + 36: FloorDarkPlastic + 42: FloorFreezer + 52: FloorGreenCircuit + 58: FloorKitchen + 59: FloorLaundry + 63: FloorMime + 78: FloorShuttlePurple + 84: FloorSteel + 89: FloorSteelDirty + 92: FloorSteelMono + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 104: FloorWhiteMini + 105: FloorWhiteMono + 109: FloorWhitePlastic + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -41,35 +41,35 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAYQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAbQAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAHAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAHwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAHwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAHAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAHAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAHAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAcAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAcAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAMwAAAAAAcAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAHAAAAAAA + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAYgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAbgAAAAAAAQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAcQAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAcQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAYAAAAAAAYAAAAAAANAAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAHQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAHwAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAUwAAAAAAWwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHwAAAAAAHwAAAAAAYQAAAAAAHwAAAAAAYQAAAAAAHwAAAAAAcAAAAAAAHwAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHwAAAAAAHwAAAAAAYQAAAAAAHwAAAAAAYQAAAAAAHwAAAAAAcAAAAAAAHwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHwAAAAAAHwAAAAAAYQAAAAAAHwAAAAAAYQAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAWAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWAAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAWAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWAAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAHAAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAIAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAVAAAAAAAXAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAIAAAAAAAYgAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAIAAAAAAAYgAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAIAAAAAAAYgAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAANAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: cAAAAAAAGgAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcAAAAAAAKQAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAIwAAAAAAcAAAAAAAIwAAAAAAcAAAAAAAUwAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcAAAAAAAKQAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAHAAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAHAAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAHAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWAAAAAAAWAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAADAAAAAAAWwAAAAAAHAAAAAAAbAAAAAAAaAAAAAAAaAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWwAAAAAADAAAAAAADAAAAAAAWwAAAAAAHwAAAAAAbAAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWwAAAAAADAAAAAAADAAAAAAAWwAAAAAAHwAAAAAAbAAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAADAAAAAAADAAAAAAAWwAAAAAAHwAAAAAAbAAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAADAAAAAAADAAAAAAAWwAAAAAAcAAAAAAAbAAAAAAAaAAAAAAAaAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAADAAAAAAADAAAAAAADAAAAAAAWwAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAADAAAAAAADAAAAAAADAAAAAAAWwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAA + tiles: cQAAAAAAGwAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYQAAAAAAYQAAAAAAPwAAAAAAcQAAAAAAKgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAJAAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAVAAAAAAAYQAAAAAAYQAAAAAAPwAAAAAAcQAAAAAAKgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAVAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAHQAAAAAAVAAAAAAAXAAAAAAAXAAAAAAAHQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAADAAAAAAAXAAAAAAAHQAAAAAAbQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAXAAAAAAADAAAAAAADAAAAAAAXAAAAAAAIAAAAAAAbQAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAXAAAAAAADAAAAAAADAAAAAAAXAAAAAAAIAAAAAAAbQAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAXAAAAAAADAAAAAAADAAAAAAAXAAAAAAAIAAAAAAAbQAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAADAAAAAAADAAAAAAAXAAAAAAAcQAAAAAAbQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAADAAAAAAADAAAAAAADAAAAAAAXAAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAADAAAAAAADAAAAAAADAAAAAAAXAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAcAAAAAAAHAAAAAAAHwAAAAAAHwAAAAAAHAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAIwAAAAAAAAAAAAAAcAAAAAAAHAAAAAAAHwAAAAAAHwAAAAAAHAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAIwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAIwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAAAWwAAAAAAHAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAWwAAAAAAWAAAAAAAWwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAHAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAA + tiles: AAAAAAAAcQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAcQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAXAAAAAAAXAAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAHQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAXAAAAAAAWQAAAAAAXAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAHAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAcAAAAAAAZwAAAAAAYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAATQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAZwAAAAAAYwAAAAAAHAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAATQAAAAAAAAAAAAAAcAAAAAAAHAAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAHAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAaAAAAAAAZAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAATgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAaAAAAAAAZAAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAATgAAAAAAAAAAAAAAcQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAATgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAUwAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYQAAAAAAYQAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAVAAAAAAAYQAAAAAAYQAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -2584,15 +2584,11 @@ entities: - pos: 14.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 38 components: - pos: -8.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 52 components: - pos: -7.5,-16.5 @@ -2603,8 +2599,6 @@ entities: - pos: -7.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 57 components: - pos: -8.5,-23.5 @@ -2615,8 +2609,6 @@ entities: - pos: 4.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 62 components: - pos: -6.5,-4.5 @@ -2642,15 +2634,11 @@ entities: - pos: 1.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 102 components: - pos: 6.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 105 components: - pos: -12.5,-32.5 @@ -2671,36 +2659,26 @@ entities: - pos: 6.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 124 components: - pos: 6.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 126 components: - pos: 6.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 133 components: - pos: 12.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 134 components: - pos: 5.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 144 components: - pos: -11.5,-32.5 @@ -2716,8 +2694,6 @@ entities: - pos: 2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 167 components: - pos: -10.5,-24.5 @@ -2728,8 +2704,6 @@ entities: - pos: -12.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 170 components: - pos: -10.5,-25.5 @@ -2740,15 +2714,11 @@ entities: - pos: -12.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 173 components: - pos: 8.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 180 components: - pos: -3.5,-31.5 @@ -2759,8 +2729,6 @@ entities: - pos: 0.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 380 components: - pos: -11.5,-31.5 @@ -2771,8 +2739,6 @@ entities: - pos: -3.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 390 components: - pos: -3.5,-26.5 @@ -2783,15 +2749,11 @@ entities: - pos: -3.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 419 components: - pos: -11.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 427 components: - pos: 5.5,-14.5 @@ -2802,22 +2764,16 @@ entities: - pos: 12.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 494 components: - pos: 6.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 503 components: - pos: 3.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 504 components: - pos: 2.5,-15.5 @@ -2833,36 +2789,26 @@ entities: - pos: -14.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 524 components: - pos: -12.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 526 components: - pos: -4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 532 components: - pos: 3.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 535 components: - pos: 1.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 536 components: - pos: 1.5,-16.5 @@ -2873,8 +2819,6 @@ entities: - pos: 6.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 547 components: - pos: -0.5,-3.5 @@ -2885,8 +2829,6 @@ entities: - pos: 2.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 549 components: - pos: 5.5,-3.5 @@ -2897,8 +2839,6 @@ entities: - pos: -13.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 553 components: - pos: -10.5,-26.5 @@ -2909,15 +2849,11 @@ entities: - pos: -4.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 556 components: - pos: -0.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 566 components: - pos: -6.5,-16.5 @@ -2928,22 +2864,16 @@ entities: - pos: -5.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 687 components: - pos: 14.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 753 components: - pos: -8.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 800 components: - pos: 4.5,-15.5 @@ -2974,8 +2904,6 @@ entities: - pos: 0.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 810 components: - pos: -0.5,-31.5 @@ -2991,8 +2919,6 @@ entities: - pos: 5.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 814 components: - pos: 8.5,-17.5 @@ -3003,8 +2929,6 @@ entities: - pos: 8.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 816 components: - pos: 8.5,-16.5 @@ -3015,22 +2939,16 @@ entities: - pos: 3.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 818 components: - pos: 4.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 819 components: - pos: 12.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 820 components: - pos: 11.5,-21.5 @@ -3041,15 +2959,11 @@ entities: - pos: 5.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 829 components: - pos: 6.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 830 components: - pos: 9.5,-21.5 @@ -3060,15 +2974,11 @@ entities: - pos: 10.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 832 components: - pos: 12.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 849 components: - pos: 6.5,-21.5 @@ -3079,15 +2989,11 @@ entities: - pos: 6.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 856 components: - pos: -11.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 857 components: - pos: 7.5,-18.5 @@ -3108,15 +3014,11 @@ entities: - pos: -0.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1168 components: - pos: -11.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1169 components: - pos: -10.5,-23.5 @@ -3132,78 +3034,56 @@ entities: - pos: -11.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1172 components: - pos: -11.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1173 components: - pos: -11.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1174 components: - pos: -11.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1175 components: - pos: -11.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1176 components: - pos: -11.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1177 components: - pos: -11.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1178 components: - pos: -11.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1179 components: - pos: -11.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1180 components: - pos: -11.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1181 components: - pos: -10.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1182 components: - pos: -9.5,-13.5 @@ -3264,29 +3144,21 @@ entities: - pos: -5.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1194 components: - pos: -5.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1195 components: - pos: -4.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1196 components: - pos: -3.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1197 components: - pos: -2.5,-16.5 @@ -3302,22 +3174,16 @@ entities: - pos: -0.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1200 components: - pos: -0.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1201 components: - pos: -0.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1202 components: - pos: -1.5,-15.5 @@ -3338,22 +3204,16 @@ entities: - pos: -1.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1206 components: - pos: -1.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1207 components: - pos: -1.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1208 components: - pos: -1.5,-9.5 @@ -3369,15 +3229,11 @@ entities: - pos: -1.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1211 components: - pos: -8.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1212 components: - pos: -7.5,-3.5 @@ -3413,15 +3269,11 @@ entities: - pos: -1.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1219 components: - pos: -1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1220 components: - pos: -1.5,-5.5 @@ -3432,15 +3284,11 @@ entities: - pos: -1.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1222 components: - pos: -1.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1223 components: - pos: -4.5,-2.5 @@ -3466,22 +3314,16 @@ entities: - pos: -6.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1228 components: - pos: -7.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1229 components: - pos: -8.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1230 components: - pos: -8.5,-6.5 @@ -3497,15 +3339,11 @@ entities: - pos: -8.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1233 components: - pos: 3.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1234 components: - pos: 3.5,-2.5 @@ -3531,36 +3369,26 @@ entities: - pos: -3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1239 components: - pos: -9.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1240 components: - pos: -10.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1241 components: - pos: -2.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1242 components: - pos: -1.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1243 components: - pos: -1.5,-8.5 @@ -3576,15 +3404,11 @@ entities: - pos: 0.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1246 components: - pos: 1.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1247 components: - pos: 2.5,-13.5 @@ -3595,8 +3419,6 @@ entities: - pos: 3.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1249 components: - pos: 4.5,-13.5 @@ -3607,15 +3429,11 @@ entities: - pos: 5.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1251 components: - pos: 6.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1252 components: - pos: 7.5,-13.5 @@ -3641,22 +3459,16 @@ entities: - pos: 11.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1257 components: - pos: 12.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1258 components: - pos: 12.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1259 components: - pos: 9.5,-12.5 @@ -3692,15 +3504,11 @@ entities: - pos: 10.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1266 components: - pos: 11.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1267 components: - pos: 9.5,-6.5 @@ -3716,8 +3524,6 @@ entities: - pos: 9.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1272 components: - pos: 7.5,-3.5 @@ -3728,15 +3534,11 @@ entities: - pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1274 components: - pos: 3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1275 components: - pos: 5.5,-1.5 @@ -3747,8 +3549,6 @@ entities: - pos: 6.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1277 components: - pos: 7.5,-1.5 @@ -3759,8 +3559,6 @@ entities: - pos: 7.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1279 components: - pos: -10.5,-27.5 @@ -3771,15 +3569,11 @@ entities: - pos: -10.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1281 components: - pos: -10.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1282 components: - pos: -10.5,-30.5 @@ -3795,8 +3589,6 @@ entities: - pos: -10.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1285 components: - pos: -9.5,-32.5 @@ -3812,8 +3604,6 @@ entities: - pos: -7.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1289 components: - pos: -13.5,-32.5 @@ -3824,85 +3614,61 @@ entities: - pos: -14.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1291 components: - pos: -14.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1292 components: - pos: -14.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1293 components: - pos: -7.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1294 components: - pos: -7.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1295 components: - pos: -7.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1296 components: - pos: -7.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1297 components: - pos: -7.5,-37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1298 components: - pos: -7.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1299 components: - pos: -8.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1300 components: - pos: -9.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1301 components: - pos: -10.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1302 components: - pos: -6.5,-36.5 @@ -3918,22 +3684,16 @@ entities: - pos: -6.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1305 components: - pos: -5.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1306 components: - pos: -4.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1307 components: - pos: -3.5,-32.5 @@ -3949,8 +3709,6 @@ entities: - pos: -1.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1310 components: - pos: -4.5,-33.5 @@ -3961,15 +3719,11 @@ entities: - pos: -4.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1312 components: - pos: -4.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1313 components: - pos: -3.5,-35.5 @@ -3980,50 +3734,36 @@ entities: - pos: -4.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1315 components: - pos: -1.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1316 components: - pos: -0.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1317 components: - pos: 0.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1318 components: - pos: 1.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1319 components: - pos: 2.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1320 components: - pos: 2.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1321 components: - pos: 2.5,-37.5 @@ -4034,106 +3774,76 @@ entities: - pos: 2.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1323 components: - pos: 2.5,-39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1325 components: - pos: 0.5,-39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1326 components: - pos: -0.5,-39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1327 components: - pos: 4.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - pos: 5.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1329 components: - pos: 5.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1330 components: - pos: 5.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1331 components: - pos: 5.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1332 components: - pos: 5.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1333 components: - pos: 6.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1334 components: - pos: 7.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1335 components: - pos: 8.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1336 components: - pos: 9.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1337 components: - pos: 10.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1338 components: - pos: 10.5,-36.5 @@ -4144,64 +3854,46 @@ entities: - pos: 10.5,-37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1340 components: - pos: 10.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1341 components: - pos: 10.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1342 components: - pos: 10.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1343 components: - pos: 10.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1344 components: - pos: 10.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1345 components: - pos: 10.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1346 components: - pos: 10.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1347 components: - pos: 10.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1348 components: - pos: 11.5,-27.5 @@ -4212,8 +3904,6 @@ entities: - pos: 12.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1350 components: - pos: 11.5,-31.5 @@ -4234,85 +3924,61 @@ entities: - pos: 14.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1354 components: - pos: 15.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1355 components: - pos: 15.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1356 components: - pos: 13.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1357 components: - pos: 14.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1358 components: - pos: 14.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1359 components: - pos: 15.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1360 components: - pos: 15.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1361 components: - pos: 12.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1362 components: - pos: 13.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1363 components: - pos: 12.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1364 components: - pos: 13.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1365 components: - pos: 8.5,-20.5 @@ -4328,8 +3994,6 @@ entities: - pos: 8.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1368 components: - pos: 7.5,-20.5 @@ -4345,57 +4009,41 @@ entities: - pos: 12.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1371 components: - pos: 12.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1372 components: - pos: 12.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1373 components: - pos: 12.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1374 components: - pos: 13.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1375 components: - pos: 12.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1376 components: - pos: 12.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1377 components: - pos: 11.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1378 components: - pos: 10.5,-15.5 @@ -4406,15 +4054,11 @@ entities: - pos: 11.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1380 components: - pos: 11.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1381 components: - pos: 8.5,-14.5 @@ -4430,15 +4074,11 @@ entities: - pos: -4.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1384 components: - pos: -6.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1385 components: - pos: 8.5,-10.5 @@ -4469,8 +4109,6 @@ entities: - pos: -0.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1391 components: - pos: -4.5,-27.5 @@ -4481,8 +4119,6 @@ entities: - pos: -3.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1393 components: - pos: -3.5,-21.5 @@ -4493,15 +4129,11 @@ entities: - pos: -3.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1395 components: - pos: -3.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1396 components: - pos: -3.5,-18.5 @@ -4512,22 +4144,16 @@ entities: - pos: -3.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1398 components: - pos: 5.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1399 components: - pos: 6.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1400 components: - pos: 7.5,-29.5 @@ -4538,8 +4164,6 @@ entities: - pos: 6.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1402 components: - pos: 6.5,-27.5 @@ -4555,15 +4179,11 @@ entities: - pos: 8.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1405 components: - pos: 9.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1406 components: - pos: 6.5,-23.5 @@ -4584,15 +4204,11 @@ entities: - pos: 4.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1410 components: - pos: 13.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1411 components: - pos: 3.5,-28.5 @@ -4623,71 +4239,51 @@ entities: - pos: 9.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1417 components: - pos: 10.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1418 components: - pos: 11.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1419 components: - pos: 10.5,-37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1420 components: - pos: 1.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1421 components: - pos: 0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1422 components: - pos: -0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1423 components: - pos: -1.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1424 components: - pos: -2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1425 components: - pos: -3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1426 components: - pos: -6.5,-5.5 @@ -4698,8 +4294,6 @@ entities: - pos: -4.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1428 components: - pos: -4.5,-12.5 @@ -4710,36 +4304,26 @@ entities: - pos: -1.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1430 components: - pos: 0.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1431 components: - pos: 0.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1682 components: - pos: 1.5,-39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1784 components: - pos: -0.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1796 components: - pos: 4.5,-28.5 @@ -4750,8 +4334,6 @@ entities: - pos: 14.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1904 components: - pos: -6.5,-15.5 @@ -4792,8 +4374,6 @@ entities: - pos: 1.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2092 components: - pos: 12.5,-33.5 @@ -4804,15 +4384,11 @@ entities: - pos: 6.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2476 components: - pos: -0.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2527 components: - pos: -10.5,-18.5 @@ -4828,8 +4404,6 @@ entities: - pos: 5.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2532 components: - pos: -1.5,-22.5 @@ -4860,22 +4434,16 @@ entities: - pos: 0.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2538 components: - pos: 1.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2539 components: - pos: 2.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2540 components: - pos: -5.5,-27.5 @@ -4946,8 +4514,6 @@ entities: - pos: -1.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2554 components: - pos: -0.5,-2.5 @@ -5023,8 +4589,6 @@ entities: - pos: -1.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2569 components: - pos: -2.5,-12.5 @@ -5105,8 +4669,6 @@ entities: - pos: 14.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2585 components: - pos: 12.5,-28.5 @@ -5122,15 +4684,11 @@ entities: - pos: 12.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2588 components: - pos: 12.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2589 components: - pos: 11.5,-22.5 @@ -5216,8 +4774,6 @@ entities: - pos: -4.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2608 components: - pos: -0.5,-37.5 @@ -5228,22 +4784,16 @@ entities: - pos: -0.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2610 components: - pos: -0.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2611 components: - pos: -1.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2612 components: - pos: 1.5,-37.5 @@ -5269,211 +4819,151 @@ entities: - pos: 15.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2663 components: - pos: 14.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2684 components: - pos: 13.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2693 components: - pos: 15.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2713 components: - pos: -4.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2714 components: - pos: -4.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2715 components: - pos: -4.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2716 components: - pos: -4.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2717 components: - pos: -5.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2718 components: - pos: -5.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2719 components: - pos: 4.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2720 components: - pos: 5.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2721 components: - pos: 5.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2722 components: - pos: 5.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2723 components: - pos: 5.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2724 components: - pos: 6.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2725 components: - pos: 6.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2726 components: - pos: 11.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2727 components: - pos: 10.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2728 components: - pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2729 components: - pos: -3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2730 components: - pos: -9.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2731 components: - pos: -10.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2732 components: - pos: -11.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2733 components: - pos: -11.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2734 components: - pos: 14.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2735 components: - pos: 12.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2737 components: - pos: -11.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2743 components: - pos: 13.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2746 components: - pos: 12.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2785 components: - pos: 6.5,-6.5 @@ -5504,113 +4994,81 @@ entities: - pos: 13.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2814 components: - pos: -13.5,-37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2815 components: - pos: -13.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2921 components: - pos: 13.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2948 components: - pos: -11.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2951 components: - pos: -12.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2956 components: - pos: 15.5,-36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2958 components: - pos: -10.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2959 components: - pos: -12.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2960 components: - pos: -11.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2962 components: - pos: -11.5,-38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2963 components: - pos: -14.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2964 components: - pos: -14.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2966 components: - pos: -13.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2967 components: - pos: 12.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3030 components: - pos: 6.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - uid: 7 @@ -5623,22 +5081,16 @@ entities: - pos: -1.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 154 components: - pos: -1.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 155 components: - pos: 6.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 158 components: - pos: -1.5,-9.5 @@ -5649,8 +5101,6 @@ entities: - pos: 0.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 190 components: - pos: -2.5,-17.5 @@ -5661,15 +5111,11 @@ entities: - pos: -4.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 208 components: - pos: -5.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 214 components: - pos: -2.5,-16.5 @@ -5720,29 +5166,21 @@ entities: - pos: -0.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 342 components: - pos: -9.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 344 components: - pos: -6.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 347 components: - pos: -3.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 348 components: - pos: -2.5,-20.5 @@ -5778,15 +5216,11 @@ entities: - pos: 4.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 366 components: - pos: 3.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 388 components: - pos: 4.5,-12.5 @@ -5797,8 +5231,6 @@ entities: - pos: 5.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 476 components: - pos: -2.5,-12.5 @@ -5824,22 +5256,16 @@ entities: - pos: -1.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 545 components: - pos: -7.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 558 components: - pos: 3.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 561 components: - pos: 2.5,-32.5 @@ -5875,15 +5301,11 @@ entities: - pos: 11.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 774 components: - pos: -8.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 775 components: - pos: 2.5,-12.5 @@ -5909,8 +5331,6 @@ entities: - pos: 2.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 824 components: - pos: 2.5,-27.5 @@ -5931,8 +5351,6 @@ entities: - pos: 12.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 949 components: - pos: -0.5,-30.5 @@ -5958,8 +5376,6 @@ entities: - pos: -1.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 999 components: - pos: -1.5,-5.5 @@ -5970,36 +5386,26 @@ entities: - pos: -1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1001 components: - pos: -1.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1002 components: - pos: -1.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1003 components: - pos: -1.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1004 components: - pos: -1.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1005 components: - pos: -2.5,-0.5 @@ -6010,36 +5416,26 @@ entities: - pos: 12.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1007 components: - pos: 12.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1008 components: - pos: 12.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1009 components: - pos: 12.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1010 components: - pos: 12.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1011 components: - pos: 4.5,-36.5 @@ -6050,15 +5446,11 @@ entities: - pos: 13.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1013 components: - pos: 13.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1014 components: - pos: -2.5,-19.5 @@ -6069,8 +5461,6 @@ entities: - pos: 13.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1610 components: - pos: -0.5,-31.5 @@ -6101,57 +5491,41 @@ entities: - pos: 13.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2280 components: - pos: 13.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2285 components: - pos: 13.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2419 components: - pos: -0.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2420 components: - pos: -0.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2421 components: - pos: -0.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2422 components: - pos: 0.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2423 components: - pos: 1.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2425 components: - pos: 3.5,-23.5 @@ -6187,15 +5561,11 @@ entities: - pos: 6.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2432 components: - pos: 6.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2433 components: - pos: 6.5,-26.5 @@ -6211,15 +5581,11 @@ entities: - pos: 6.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2436 components: - pos: 6.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2437 components: - pos: 6.5,-30.5 @@ -6240,43 +5606,31 @@ entities: - pos: 13.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2441 components: - pos: 13.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2442 components: - pos: 13.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2443 components: - pos: 13.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2444 components: - pos: 13.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2445 components: - pos: 13.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2446 components: - pos: 13.5,-28.5 @@ -6307,22 +5661,16 @@ entities: - pos: 13.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2452 components: - pos: 13.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2453 components: - pos: -1.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2454 components: - pos: -2.5,-30.5 @@ -6368,22 +5716,16 @@ entities: - pos: -9.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2464 components: - pos: -9.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2465 components: - pos: -9.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2660 components: - pos: -3.5,-3.5 @@ -6394,22 +5736,16 @@ entities: - pos: 1.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2697 components: - pos: 3.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2698 components: - pos: 3.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2987 components: - pos: -2.5,-25.5 @@ -6420,22 +5756,16 @@ entities: - pos: -1.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2989 components: - pos: -4.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2990 components: - pos: -4.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2991 components: - pos: -4.5,-27.5 @@ -6446,15 +5776,11 @@ entities: - pos: -4.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2993 components: - pos: -4.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2994 components: - pos: -4.5,-24.5 @@ -6465,8 +5791,6 @@ entities: - pos: -4.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2996 components: - pos: -4.5,-22.5 @@ -6482,8 +5806,6 @@ entities: - pos: -4.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2999 components: - pos: -4.5,-19.5 @@ -6504,29 +5826,21 @@ entities: - pos: -4.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3003 components: - pos: -4.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3004 components: - pos: -4.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3005 components: - pos: -4.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3006 components: - pos: -4.5,-12.5 @@ -6537,36 +5851,26 @@ entities: - pos: -4.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3008 components: - pos: -4.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3009 components: - pos: -4.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3010 components: - pos: -4.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3011 components: - pos: -4.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3012 components: - pos: -4.5,-6.5 @@ -6636,8 +5940,6 @@ entities: - pos: 6.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1024 components: - pos: 6.5,-10.5 @@ -6663,8 +5965,6 @@ entities: - pos: -1.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1029 components: - pos: -0.5,-7.5 @@ -6710,8 +6010,6 @@ entities: - pos: 3.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1038 components: - pos: 3.5,-5.5 @@ -6727,8 +6025,6 @@ entities: - pos: 6.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1041 components: - pos: 7.5,-12.5 @@ -6759,8 +6055,6 @@ entities: - pos: 11.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1047 components: - pos: 8.5,-13.5 @@ -6776,8 +6070,6 @@ entities: - pos: 8.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1050 components: - pos: 8.5,-16.5 @@ -6793,22 +6085,16 @@ entities: - pos: 8.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1053 components: - pos: -9.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1054 components: - pos: -9.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1055 components: - pos: -9.5,-18.5 @@ -6829,8 +6115,6 @@ entities: - pos: -8.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1059 components: - pos: -7.5,-16.5 @@ -6846,15 +6130,11 @@ entities: - pos: -5.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1062 components: - pos: -9.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1063 components: - pos: -9.5,-14.5 @@ -6870,15 +6150,11 @@ entities: - pos: -10.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1066 components: - pos: -11.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1067 components: - pos: -10.5,-22.5 @@ -6899,8 +6175,6 @@ entities: - pos: -9.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1071 components: - pos: 4.5,-30.5 @@ -6911,22 +6185,16 @@ entities: - pos: 4.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1073 components: - pos: 5.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1074 components: - pos: -1.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1075 components: - pos: -0.5,-32.5 @@ -6937,8 +6205,6 @@ entities: - pos: 0.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1077 components: - pos: 1.5,-32.5 @@ -6954,8 +6220,6 @@ entities: - pos: 3.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1080 components: - pos: 4.5,-32.5 @@ -6966,22 +6230,16 @@ entities: - pos: -6.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1082 components: - pos: -5.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1083 components: - pos: -4.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1084 components: - pos: -3.5,-32.5 @@ -6997,8 +6255,6 @@ entities: - pos: 12.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1087 components: - pos: 12.5,-28.5 @@ -7039,15 +6295,11 @@ entities: - pos: 13.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1096 components: - pos: 10.5,-37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1097 components: - pos: 10.5,-36.5 @@ -7073,8 +6325,6 @@ entities: - pos: -8.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1102 components: - pos: -7.5,-4.5 @@ -7130,8 +6380,6 @@ entities: - pos: -2.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1113 components: - pos: -8.5,-13.5 @@ -7167,8 +6415,6 @@ entities: - pos: -8.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1120 components: - pos: -8.5,-6.5 @@ -7184,8 +6430,6 @@ entities: - pos: -8.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1124 components: - pos: -8.5,-22.5 @@ -7196,8 +6440,6 @@ entities: - pos: -7.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1126 components: - pos: -6.5,-22.5 @@ -7218,8 +6460,6 @@ entities: - pos: -3.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1130 components: - pos: -2.5,-22.5 @@ -7235,36 +6475,26 @@ entities: - pos: -0.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1133 components: - pos: -0.5,-21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1134 components: - pos: -0.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1135 components: - pos: -0.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1136 components: - pos: -0.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1137 components: - pos: -7.5,-31.5 @@ -7280,8 +6510,6 @@ entities: - pos: -7.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1140 components: - pos: -7.5,-28.5 @@ -7297,8 +6525,6 @@ entities: - pos: -7.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1143 components: - pos: -7.5,-25.5 @@ -7314,15 +6540,11 @@ entities: - pos: -7.5,-23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1146 components: - pos: -7.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1147 components: - pos: 7.5,-18.5 @@ -7333,8 +6555,6 @@ entities: - pos: 6.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1149 components: - pos: 5.5,-18.5 @@ -7365,22 +6585,16 @@ entities: - pos: 0.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1155 components: - pos: 9.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1156 components: - pos: 10.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1157 components: - pos: 11.5,-18.5 @@ -7436,15 +6650,11 @@ entities: - pos: 12.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1288 components: - pos: -7.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2128 components: - pos: -0.5,-31.5 @@ -7455,8 +6665,6 @@ entities: - pos: -1.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2659 components: - pos: -3.5,-3.5 @@ -12871,16 +12079,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 522 components: - rot: 1.5707963267948966 rad pos: 10.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 533 components: - rot: 1.5707963267948966 rad @@ -12889,8 +12093,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 655 components: - rot: -1.5707963267948966 rad @@ -12899,16 +12101,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 657 components: - rot: -1.5707963267948966 rad pos: 10.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 658 components: - rot: -1.5707963267948966 rad @@ -12917,8 +12115,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 764 components: - pos: -8.5,-19.5 @@ -12926,8 +12122,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 785 components: - rot: 1.5707963267948966 rad @@ -12950,16 +12144,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 834 components: - rot: 3.141592653589793 rad pos: 6.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 852 components: - rot: 1.5707963267948966 rad @@ -12968,8 +12158,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 853 components: - rot: 3.141592653589793 rad @@ -12985,8 +12173,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 868 components: - rot: 3.141592653589793 rad @@ -12995,8 +12181,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 883 components: - pos: 2.5,-32.5 @@ -13012,15 +12196,11 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 911 components: - pos: 11.5,-28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 933 components: - rot: -1.5707963267948966 rad @@ -13037,8 +12217,6 @@ entities: - pos: 5.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 942 components: - rot: 3.141592653589793 rad @@ -13106,8 +12284,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1509 components: - rot: 3.141592653589793 rad @@ -13116,8 +12292,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1510 components: - pos: 12.5,-27.5 @@ -13125,8 +12299,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1531 components: - pos: -1.5,-17.5 @@ -13172,8 +12344,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1599 components: - rot: -1.5707963267948966 rad @@ -13198,8 +12368,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1631 components: - rot: 1.5707963267948966 rad @@ -13215,8 +12383,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1646 components: - rot: 3.141592653589793 rad @@ -13225,8 +12391,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1669 components: - rot: -1.5707963267948966 rad @@ -13258,8 +12422,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1900 components: - rot: 3.141592653589793 rad @@ -13268,8 +12430,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1921 components: - rot: 1.5707963267948966 rad @@ -13278,8 +12438,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1981 components: - pos: 1.5,-30.5 @@ -13315,8 +12473,6 @@ entities: pos: 4.5,-39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeFourway entities: - uid: 308 @@ -13333,8 +12489,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 698 components: - pos: -3.5,-2.5 @@ -13370,8 +12524,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPipeStraight entities: - uid: 13 @@ -13445,8 +12597,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 103 components: - rot: -1.5707963267948966 rad @@ -13471,8 +12621,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 128 components: - rot: -1.5707963267948966 rad @@ -13564,8 +12712,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 365 components: - rot: 3.141592653589793 rad @@ -13590,8 +12736,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 386 components: - rot: 3.141592653589793 rad @@ -13632,8 +12776,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 499 components: - rot: -1.5707963267948966 rad @@ -13642,8 +12784,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 500 components: - rot: -1.5707963267948966 rad @@ -13681,8 +12821,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 527 components: - rot: 1.5707963267948966 rad @@ -13699,8 +12837,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 529 components: - rot: 3.141592653589793 rad @@ -13709,8 +12845,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 530 components: - rot: 3.141592653589793 rad @@ -13719,8 +12853,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 531 components: - rot: 3.141592653589793 rad @@ -13736,8 +12868,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 543 components: - rot: 3.141592653589793 rad @@ -13751,8 +12881,6 @@ entities: - pos: 5.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 546 components: - rot: 1.5707963267948966 rad @@ -13777,8 +12905,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 577 components: - rot: 3.141592653589793 rad @@ -13787,8 +12913,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 604 components: - rot: -1.5707963267948966 rad @@ -13797,8 +12921,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 618 components: - rot: 3.141592653589793 rad @@ -13807,8 +12929,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 624 components: - rot: 3.141592653589793 rad @@ -13817,16 +12937,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 656 components: - rot: 3.141592653589793 rad pos: 10.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 659 components: - rot: -1.5707963267948966 rad @@ -13835,8 +12951,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 662 components: - rot: 3.141592653589793 rad @@ -13845,8 +12959,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 673 components: - rot: 1.5707963267948966 rad @@ -13855,8 +12967,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 678 components: - rot: -1.5707963267948966 rad @@ -13865,22 +12975,16 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 685 components: - pos: 5.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 688 components: - pos: 5.5,-34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 726 components: - pos: -2.5,-19.5 @@ -13902,8 +13006,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 795 components: - rot: -1.5707963267948966 rad @@ -13912,8 +13014,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 796 components: - rot: 3.141592653589793 rad @@ -13922,8 +13022,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 797 components: - rot: 3.141592653589793 rad @@ -13939,8 +13037,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 804 components: - rot: 1.5707963267948966 rad @@ -13957,8 +13053,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 825 components: - rot: 3.141592653589793 rad @@ -13975,8 +13069,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 827 components: - rot: 3.141592653589793 rad @@ -13985,8 +13077,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 836 components: - rot: 1.5707963267948966 rad @@ -14001,8 +13091,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 841 components: - pos: -10.5,-20.5 @@ -14010,8 +13098,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 846 components: - pos: -10.5,-18.5 @@ -14034,8 +13120,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 851 components: - rot: 1.5707963267948966 rad @@ -14049,8 +13133,6 @@ entities: - pos: 10.5,-29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 861 components: - rot: -1.5707963267948966 rad @@ -14074,8 +13156,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 869 components: - rot: 3.141592653589793 rad @@ -14124,8 +13204,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 888 components: - desc: Extracts oxygen from the oxygen storage tank to be mixed into breathable air. Make sure this pump is off whenever you open and close the storage tank door, otherwise you will pull gas from the ship and contaminate the main air storage tank. @@ -14136,8 +13214,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 902 components: - rot: 3.141592653589793 rad @@ -14234,8 +13310,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 944 components: - rot: 3.141592653589793 rad @@ -14244,8 +13318,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 945 components: - rot: 1.5707963267948966 rad @@ -14254,8 +13326,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 948 components: - rot: -1.5707963267948966 rad @@ -14604,8 +13674,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1479 components: - rot: -1.5707963267948966 rad @@ -14674,8 +13742,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1491 components: - rot: 3.141592653589793 rad @@ -14684,8 +13750,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1492 components: - rot: 3.141592653589793 rad @@ -14694,8 +13758,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1493 components: - rot: 3.141592653589793 rad @@ -14704,8 +13766,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1494 components: - rot: 3.141592653589793 rad @@ -14714,8 +13774,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1496 components: - rot: -1.5707963267948966 rad @@ -14724,8 +13782,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1497 components: - rot: -1.5707963267948966 rad @@ -14742,8 +13798,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1504 components: - rot: 1.5707963267948966 rad @@ -14752,8 +13806,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1505 components: - rot: 1.5707963267948966 rad @@ -14762,8 +13814,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1506 components: - rot: 1.5707963267948966 rad @@ -14779,8 +13829,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1508 components: - pos: 10.5,-26.5 @@ -14927,8 +13975,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1535 components: - rot: 3.141592653589793 rad @@ -14961,8 +14007,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1542 components: - rot: -1.5707963267948966 rad @@ -14971,8 +14015,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1543 components: - rot: -1.5707963267948966 rad @@ -14981,8 +14023,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1544 components: - rot: 3.141592653589793 rad @@ -14999,8 +14039,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1547 components: - rot: -1.5707963267948966 rad @@ -15033,8 +14071,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1551 components: - rot: 3.141592653589793 rad @@ -15043,8 +14079,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1552 components: - rot: 3.141592653589793 rad @@ -15092,8 +14126,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1569 components: - rot: 3.141592653589793 rad @@ -15102,8 +14134,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1570 components: - rot: 3.141592653589793 rad @@ -15112,8 +14142,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1571 components: - rot: -1.5707963267948966 rad @@ -15122,8 +14150,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1576 components: - rot: 1.5707963267948966 rad @@ -15155,8 +14181,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1582 components: - rot: 3.141592653589793 rad @@ -15239,8 +14263,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1600 components: - rot: 3.141592653589793 rad @@ -15280,8 +14302,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1605 components: - pos: -6.5,-33.5 @@ -15342,8 +14362,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1621 components: - rot: 1.5707963267948966 rad @@ -15352,8 +14370,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1622 components: - rot: 1.5707963267948966 rad @@ -15362,8 +14378,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1623 components: - rot: 1.5707963267948966 rad @@ -15372,8 +14386,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1624 components: - rot: 1.5707963267948966 rad @@ -15382,8 +14394,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1625 components: - rot: 1.5707963267948966 rad @@ -15392,8 +14402,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1626 components: - rot: 1.5707963267948966 rad @@ -15402,8 +14410,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1627 components: - rot: 1.5707963267948966 rad @@ -15412,8 +14418,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1628 components: - rot: 1.5707963267948966 rad @@ -15422,8 +14426,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1629 components: - rot: 1.5707963267948966 rad @@ -15432,8 +14434,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1630 components: - rot: -1.5707963267948966 rad @@ -15442,8 +14442,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1633 components: - pos: -0.5,-31.5 @@ -15481,8 +14479,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1639 components: - rot: 3.141592653589793 rad @@ -15505,8 +14501,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1647 components: - rot: 1.5707963267948966 rad @@ -15539,8 +14533,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1653 components: - rot: 1.5707963267948966 rad @@ -15549,8 +14541,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1654 components: - rot: 1.5707963267948966 rad @@ -15599,8 +14589,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1671 components: - rot: 3.141592653589793 rad @@ -15609,8 +14597,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1672 components: - rot: 3.141592653589793 rad @@ -15651,8 +14637,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1680 components: - rot: 1.5707963267948966 rad @@ -15677,8 +14661,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1684 components: - rot: -1.5707963267948966 rad @@ -15711,8 +14693,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1691 components: - rot: 1.5707963267948966 rad @@ -15753,8 +14733,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1696 components: - rot: 1.5707963267948966 rad @@ -15779,8 +14757,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1992 components: - rot: 1.5707963267948966 rad @@ -15797,8 +14773,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2114 components: - rot: 3.141592653589793 rad @@ -15830,8 +14804,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2517 components: - rot: -1.5707963267948966 rad @@ -15848,8 +14820,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2520 components: - rot: 1.5707963267948966 rad @@ -15903,8 +14873,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 175 components: - rot: -1.5707963267948966 rad @@ -15945,8 +14913,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 302 components: - rot: -1.5707963267948966 rad @@ -15971,8 +14937,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 576 components: - rot: -1.5707963267948966 rad @@ -15981,8 +14945,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 578 components: - rot: -1.5707963267948966 rad @@ -15991,8 +14953,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 648 components: - rot: -1.5707963267948966 rad @@ -16001,8 +14961,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 663 components: - rot: -1.5707963267948966 rad @@ -16011,32 +14969,24 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 693 components: - rot: -1.5707963267948966 rad pos: 10.5,-31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 694 components: - rot: -1.5707963267948966 rad pos: 10.5,-32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 706 components: - rot: -1.5707963267948966 rad pos: 10.5,-33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 746 components: - rot: 1.5707963267948966 rad @@ -16065,16 +15015,12 @@ entities: pos: 9.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 835 components: - rot: 3.141592653589793 rad pos: 7.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 840 components: - rot: 1.5707963267948966 rad @@ -16089,16 +15035,12 @@ entities: pos: 8.5,-35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 855 components: - rot: -1.5707963267948966 rad pos: 10.5,-30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 863 components: - pos: -8.5,-30.5 @@ -16122,8 +15064,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 978 components: - rot: 1.5707963267948966 rad @@ -16164,8 +15104,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1466 components: - rot: 3.141592653589793 rad @@ -16214,8 +15152,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1523 components: - rot: 3.141592653589793 rad @@ -16248,8 +15184,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1545 components: - pos: 2.5,-25.5 @@ -16257,8 +15191,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1553 components: - rot: 1.5707963267948966 rad @@ -16290,8 +15222,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1574 components: - rot: -1.5707963267948966 rad @@ -16354,8 +15284,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPressurePump entities: - uid: 954 @@ -16475,8 +15403,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVentPump @@ -16486,8 +15412,6 @@ entities: - pos: -4.5,-21.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 257 @@ -16495,8 +15419,6 @@ entities: - pos: 1.5,-37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 811 @@ -16505,8 +15427,6 @@ entities: pos: 6.5,-30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 887 @@ -16515,8 +15435,6 @@ entities: pos: -10.5,-34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 907 @@ -16525,8 +15443,6 @@ entities: pos: -11.5,-31.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1444 @@ -16535,8 +15451,6 @@ entities: pos: 2.5,-27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1445 @@ -16545,8 +15459,6 @@ entities: pos: -2.5,-22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1521 @@ -16554,8 +15466,6 @@ entities: - pos: -4.5,-24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1538 @@ -16564,8 +15474,6 @@ entities: pos: 4.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1539 @@ -16574,8 +15482,6 @@ entities: pos: -2.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1540 @@ -16584,8 +15490,6 @@ entities: pos: 2.5,-20.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1559 @@ -16594,8 +15498,6 @@ entities: pos: 8.5,-28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1564 @@ -16604,8 +15506,6 @@ entities: pos: 9.5,-19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1565 @@ -16614,8 +15514,6 @@ entities: pos: 7.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1566 @@ -16624,8 +15522,6 @@ entities: pos: 11.5,-22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1567 @@ -16634,8 +15530,6 @@ entities: pos: 10.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1572 @@ -16644,8 +15538,6 @@ entities: pos: -8.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1586 @@ -16653,8 +15545,6 @@ entities: - pos: 5.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1594 @@ -16663,8 +15553,6 @@ entities: pos: -4.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1595 @@ -16673,8 +15561,6 @@ entities: pos: -0.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1632 @@ -16683,15 +15569,11 @@ entities: pos: -5.5,-35.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1640 components: - pos: -5.5,-27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1645 @@ -16700,8 +15582,6 @@ entities: pos: -9.5,-22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1649 @@ -16710,8 +15590,6 @@ entities: pos: -6.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1650 @@ -16719,8 +15597,6 @@ entities: - pos: -9.5,-18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1663 @@ -16729,8 +15605,6 @@ entities: pos: 7.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1674 @@ -16739,8 +15613,6 @@ entities: pos: 12.5,-30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2188 @@ -16749,8 +15621,6 @@ entities: pos: 12.5,-36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -16761,8 +15631,6 @@ entities: pos: -1.5,-26.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 626 @@ -16771,8 +15639,6 @@ entities: pos: -2.5,-14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 668 @@ -16781,8 +15647,6 @@ entities: pos: 11.5,-24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 874 @@ -16790,8 +15654,6 @@ entities: - pos: -10.5,-22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 875 @@ -16800,8 +15662,6 @@ entities: pos: -8.5,-34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 876 @@ -16810,8 +15670,6 @@ entities: pos: -5.5,-33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 877 @@ -16820,8 +15678,6 @@ entities: pos: -0.5,-37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 878 @@ -16830,8 +15686,6 @@ entities: pos: -6.5,-27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 879 @@ -16840,8 +15694,6 @@ entities: pos: -5.5,-24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 880 @@ -16850,8 +15702,6 @@ entities: pos: -5.5,-21.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 881 @@ -16860,8 +15710,6 @@ entities: pos: -7.5,-18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 920 @@ -16870,8 +15718,6 @@ entities: pos: 8.5,-27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 959 @@ -16880,8 +15726,6 @@ entities: pos: -0.5,-34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 977 @@ -16890,8 +15734,6 @@ entities: pos: 5.5,-20.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1446 @@ -16900,8 +15742,6 @@ entities: pos: 6.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1447 @@ -16910,8 +15750,6 @@ entities: pos: -4.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1448 @@ -16920,8 +15758,6 @@ entities: pos: 4.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1449 @@ -16930,8 +15766,6 @@ entities: pos: 8.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1450 @@ -16940,8 +15774,6 @@ entities: pos: 9.5,-23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1451 @@ -16950,8 +15782,6 @@ entities: pos: 12.5,-28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1452 @@ -16959,8 +15789,6 @@ entities: - pos: 9.5,-36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1453 @@ -16969,8 +15797,6 @@ entities: pos: -9.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1454 @@ -16979,8 +15805,6 @@ entities: pos: -8.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1455 @@ -16989,8 +15813,6 @@ entities: pos: 2.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1498 @@ -16999,8 +15821,6 @@ entities: pos: 7.5,-16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1499 @@ -17008,8 +15828,6 @@ entities: - pos: 0.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1500 @@ -17018,8 +15836,6 @@ entities: pos: -12.5,-31.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1662 @@ -17027,8 +15843,6 @@ entities: - pos: 7.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVolumePump @@ -18281,24 +17095,18 @@ entities: pos: 4.5,-32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2016 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2123 components: - rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightLED entities: - uid: 25 @@ -18307,236 +17115,174 @@ entities: pos: 1.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 579 components: - rot: 1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 580 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 582 components: - rot: 1.5707963267948966 rad pos: -0.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 584 components: - rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 587 components: - rot: 1.5707963267948966 rad pos: -7.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 588 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 589 components: - rot: 1.5707963267948966 rad pos: 2.5,-22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 590 components: - pos: 8.5,-19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 591 components: - pos: -6.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 596 components: - rot: -1.5707963267948966 rad pos: 5.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 634 components: - pos: -6.5,-27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 635 components: - pos: -5.5,-24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 636 components: - pos: -5.5,-21.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 646 components: - rot: 3.141592653589793 rad pos: -9.5,-23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 647 components: - rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 649 components: - pos: 1.5,-26.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 651 components: - pos: 8.5,-26.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 652 components: - rot: 1.5707963267948966 rad pos: 7.5,-16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 653 components: - rot: 3.141592653589793 rad pos: 8.5,-14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 661 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 671 components: - pos: 12.5,-28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 689 components: - rot: 3.141592653589793 rad pos: 8.5,-23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 700 components: - pos: -6.5,-30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 708 components: - pos: -5.5,-33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 709 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 724 components: - pos: -10.5,-16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 732 components: - rot: -1.5707963267948966 rad pos: -5.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1954 components: - pos: 0.5,-37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2143 components: - rot: -1.5707963267948966 rad pos: 5.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2269 components: - rot: 1.5707963267948966 rad pos: -4.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 1895 @@ -20284,6 +19030,18 @@ entities: pos: 4.5,1.5 parent: 1 type: Transform + - uid: 1727 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 1731 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform - uid: 1740 components: - pos: -1.5,-35.5 @@ -20295,6 +19053,12 @@ entities: pos: 2.5,-39.5 parent: 1 type: Transform + - uid: 1788 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 1 + type: Transform - uid: 1855 components: - rot: 3.141592653589793 rad @@ -20360,26 +19124,6 @@ entities: pos: 4.5,-39.5 parent: 1 type: Transform -- proto: WallPlastitaniumIndestructible - entities: - - uid: 1727 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 1731 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 1788 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 1 - type: Transform - proto: WallReinforced entities: - uid: 8 diff --git a/Resources/Maps/Shuttles/bocadillo.yml b/Resources/Maps/Shuttles/bocadillo.yml index 151a299895e..30eb95443d8 100644 --- a/Resources/Maps/Shuttles/bocadillo.yml +++ b/Resources/Maps/Shuttles/bocadillo.yml @@ -62,17 +62,18 @@ entities: -2,0: 0: 65280 -2,1: - 0: 63999 - 1: 512 - 2: 1024 + 0: 65535 -1,0: - 0: 65518 + 0: 65484 + 1: 34 -1,1: 0: 65535 1,1: - 0: 4915 + 0: 819 + 1: 4096 1,0: - 0: 13072 + 1: 16 + 0: 13056 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -90,29 +91,14 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 23.43119 - - 88.145905 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 @@ -123,6 +109,39 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 245 + - 237 + - 247 + - 239 + - 211 + - 240 + - 246 + type: DeviceNetwork + - devices: + - 240 + - 211 + - 239 + - 237 + - 245 + - 247 + - 246 + type: DeviceList +- proto: AirCanister + entities: + - uid: 212 + components: + - pos: -6.5,6.5 + parent: 2 + type: Transform - proto: AirlockCaptainGlassLocked entities: - uid: 137 @@ -181,9 +200,10 @@ entities: type: Transform - proto: APCBasic entities: - - uid: 88 + - uid: 1 components: - - pos: -9.5,2.5 + - rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 2 type: Transform - uid: 89 @@ -217,6 +237,28 @@ entities: pos: 5.5,5.5 parent: 2 type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 244 + components: + - pos: -2.5,0.5 + parent: 2 + type: Transform + - uid: 248 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 249 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 250 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform - proto: BarSign entities: - uid: 143 @@ -233,13 +275,48 @@ entities: type: Transform - proto: ButchCleaver entities: - - uid: 161 + - uid: 15 components: - - pos: -1.5070472,6.662921 + - pos: -2.5855894,6.703055 parent: 2 type: Transform - proto: CableApcExtension entities: + - uid: 84 + components: + - pos: -5.5,3.5 + parent: 2 + type: Transform + - uid: 88 + components: + - pos: -5.5,4.5 + parent: 2 + type: Transform + - uid: 93 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 94 + components: + - pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 95 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - uid: 96 + components: + - pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 97 + components: + - pos: -8.5,5.5 + parent: 2 + type: Transform - uid: 104 components: - pos: -9.5,2.5 @@ -247,32 +324,27 @@ entities: type: Transform - uid: 105 components: - - pos: -8.5,2.5 + - pos: -9.5,5.5 parent: 2 type: Transform - uid: 106 components: - - pos: -7.5,2.5 + - pos: 2.5,5.5 parent: 2 type: Transform - uid: 107 components: - - pos: -6.5,2.5 + - pos: 1.5,1.5 parent: 2 type: Transform - uid: 108 components: - - pos: -5.5,2.5 + - pos: -0.5,1.5 parent: 2 type: Transform - uid: 109 components: - - pos: -4.5,2.5 - parent: 2 - type: Transform - - uid: 110 - components: - - pos: -3.5,2.5 + - pos: -4.5,4.5 parent: 2 type: Transform - uid: 111 @@ -280,21 +352,11 @@ entities: - pos: -2.5,2.5 parent: 2 type: Transform - - uid: 112 - components: - - pos: -1.5,2.5 - parent: 2 - type: Transform - uid: 113 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 114 - components: - - pos: 0.5,2.5 - parent: 2 - type: Transform - uid: 115 components: - pos: 1.5,2.5 @@ -302,7 +364,7 @@ entities: type: Transform - uid: 116 components: - - pos: 2.5,2.5 + - pos: -0.5,3.5 parent: 2 type: Transform - uid: 117 @@ -317,7 +379,7 @@ entities: type: Transform - uid: 119 components: - - pos: -10.5,4.5 + - pos: -0.5,4.5 parent: 2 type: Transform - uid: 120 @@ -365,16 +427,6 @@ entities: - pos: 1.5,6.5 parent: 2 type: Transform - - uid: 129 - components: - - pos: 2.5,6.5 - parent: 2 - type: Transform - - uid: 130 - components: - - pos: 3.5,6.5 - parent: 2 - type: Transform - uid: 131 components: - pos: 3.5,5.5 @@ -440,6 +492,11 @@ entities: - pos: 4.5,2.5 parent: 2 type: Transform + - uid: 222 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform - proto: CableHV entities: - uid: 90 @@ -459,66 +516,83 @@ entities: - pos: -9.5,7.5 parent: 2 type: Transform - - uid: 93 + - uid: 98 components: - - pos: -8.5,7.5 + - pos: -3.5,7.5 parent: 2 type: Transform - - uid: 94 + - uid: 99 components: - - pos: -7.5,7.5 + - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 95 + - uid: 100 components: - - pos: -6.5,7.5 + - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 96 + - uid: 101 components: - - pos: -5.5,7.5 + - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 97 + - uid: 102 components: - - pos: -4.5,7.5 + - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 98 + - uid: 103 components: - - pos: -3.5,7.5 + - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 99 + - uid: 215 components: - - pos: -9.5,6.5 + - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 100 + - uid: 216 components: - - pos: -9.5,5.5 + - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 101 + - uid: 217 components: - - pos: -9.5,4.5 + - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 102 + - uid: 218 components: - - pos: -9.5,3.5 + - pos: -5.5,5.5 parent: 2 type: Transform - - uid: 103 + - uid: 219 components: - - pos: -9.5,2.5 + - pos: -4.5,5.5 + parent: 2 + type: Transform + - uid: 220 + components: + - pos: -3.5,5.5 + parent: 2 + type: Transform + - uid: 221 + components: + - pos: -3.5,6.5 parent: 2 type: Transform - proto: ClosetChefFilled entities: - - uid: 1 + - uid: 160 components: - - pos: -6.5,6.5 + - pos: -1.5,6.5 + parent: 2 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 242 + components: + - pos: -5.5,7.5 parent: 2 type: Transform - proto: ComputerShuttle @@ -539,7 +613,7 @@ entities: type: Transform - proto: ComputerWallmountWithdrawBankATM entities: - - uid: 15 + - uid: 130 components: - rot: 3.141592653589793 rad pos: 2.5,1.5 @@ -558,15 +632,34 @@ entities: - pos: -7.5,6.5 parent: 2 type: Transform +- proto: DeskBell + entities: + - uid: 213 + components: + - pos: 2.6402364,4.6301794 + parent: 2 + type: Transform +- proto: EmergencyLight + entities: + - uid: 223 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 2 + type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 145 components: - - pos: -7.5,4.5 + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 parent: 2 type: Transform - - opened: True - type: ItemCabinet - proto: FaxMachineShip entities: - uid: 138 @@ -574,6 +667,348 @@ entities: - pos: -8.5,6.5 parent: 2 type: Transform +- proto: FirelockEdge + entities: + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork +- proto: FirelockGlass + entities: + - uid: 245 + components: + - pos: -7.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 129 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasPassiveVent + entities: + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 180 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 234 + components: + - pos: 1.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 163 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 165 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 169 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 170 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 172 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 206 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 207 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 208 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 209 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 210 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 229 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 235 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 168 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 228 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 112 + components: + - pos: -6.5,6.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 236 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 240 + components: + - pos: -4.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 110 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 133 @@ -675,23 +1110,23 @@ entities: type: Transform - proto: KitchenKnife entities: - - uid: 165 + - uid: 153 components: - - pos: -1.5695472,6.600421 + - pos: -2.7262144,6.671805 parent: 2 type: Transform - proto: KitchenMicrowave entities: - uid: 151 components: - - pos: -2.5,6.5 + - pos: -3.5,6.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - uid: 152 components: - - pos: -3.5,6.5 + - pos: -4.5,6.5 parent: 2 type: Transform - proto: LargeBeaker @@ -727,6 +1162,13 @@ entities: - pos: -4.2193184,6.7525597 parent: 2 type: Transform +- proto: Plunger + entities: + - uid: 166 + components: + - pos: -6.520974,4.2649193 + parent: 2 + type: Transform - proto: PortableGeneratorPacman entities: - uid: 86 @@ -947,11 +1389,6 @@ entities: type: Transform - proto: TableGlass entities: - - uid: 84 - components: - - pos: -1.5,6.5 - parent: 2 - type: Transform - uid: 85 components: - pos: -2.5,6.5 diff --git a/Resources/Maps/Shuttles/caduceus.yml b/Resources/Maps/Shuttles/caduceus.yml index 6f15cce9d40..48ea6f8bcb4 100644 --- a/Resources/Maps/Shuttles/caduceus.yml +++ b/Resources/Maps/Shuttles/caduceus.yml @@ -4,20 +4,20 @@ meta: tilemap: 0: Space 12: FloorBar - 26: FloorDark - 31: FloorDarkMono - 35: FloorDarkPlastic - 41: FloorFreezer - 47: FloorGrassLight - 55: FloorHydro - 75: FloorShuttleBlue - 83: FloorSteel - 95: FloorTechMaint - 97: FloorTechMaint3 - 99: FloorWhite - 100: FloorWhiteDiagonal - 111: Lattice - 112: Plating + 28: FloorDark + 33: FloorDarkMono + 37: FloorDarkPlastic + 43: FloorFreezer + 49: FloorGrassLight + 57: FloorHydro + 77: FloorShuttleBlue + 85: FloorSteel + 97: FloorTechMaint + 99: FloorTechMaint3 + 101: FloorWhite + 102: FloorWhiteDiagonal + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -26,48 +26,48 @@ entities: - name: grid type: MetaData - pos: -0.49010277,-0.49010563 - parent: invalid + parent: 1116 type: Transform - chunks: 0,-1: ind: 0,-1 - tiles: IwAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYQAAAAACYQAAAAADYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAAAYQAAAAABZAAAAAABZAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAADYwAAAAABZAAAAAABcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACcAAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAADYQAAAAACcAAAAAAAZAAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABYQAAAAACYQAAAAAAYwAAAAACZAAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAAZAAAAAABcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAZAAAAAADcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAZAAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADZAAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAABYwAAAAADYwAAAAADYwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADZAAAAAAAYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACZAAAAAACYwAAAAAAYwAAAAACYwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAAAcgAAAAAAcgAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAADZQAAAAADZQAAAAAAZQAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAACZQAAAAACZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAADZQAAAAADZQAAAAABZQAAAAAAcgAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABZgAAAAABZgAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAABcgAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAADZQAAAAABZgAAAAABcgAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAZQAAAAADZQAAAAACZQAAAAADZQAAAAACcgAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAACcgAAAAAAZgAAAAADZQAAAAADZQAAAAABZQAAAAACZQAAAAABZQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYwAAAAABYwAAAAACYwAAAAAAZQAAAAACZgAAAAABZQAAAAAAZQAAAAABZQAAAAABZQAAAAACZQAAAAADZQAAAAABcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAMQAAAAAAZgAAAAABcgAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAAAZQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAZgAAAAADcgAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAADZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAZgAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAAZQAAAAADZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZgAAAAACZQAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAADZQAAAAAAZQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAABZQAAAAABZQAAAAACZQAAAAACZQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZgAAAAABZQAAAAADZQAAAAADZQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZgAAAAAAZQAAAAACZQAAAAAAZQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZgAAAAACZQAAAAAAZQAAAAACZQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: YwAAAAAAZAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABZAAAAAADYwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADZAAAAAAAYwAAAAABYwAAAAADYwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABZAAAAAACYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAABIwAAAAAAIwAAAAACIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAABYwAAAAAAcAAAAAAAIwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAACIwAAAAAAIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACDAAAAAABDAAAAAABDAAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAADAAAAAACDAAAAAABDAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZQAAAAAAZgAAAAAAZQAAAAABZQAAAAACZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZgAAAAADZQAAAAAAZQAAAAABZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZgAAAAAAZQAAAAABZQAAAAADZQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZgAAAAACZQAAAAAAZQAAAAABZQAAAAAAZQAAAAABZQAAAAABJQAAAAAAJQAAAAACJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABZgAAAAADZgAAAAAAZgAAAAACZgAAAAABZQAAAAAAcgAAAAAAJQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAABZQAAAAADZQAAAAABZQAAAAADZQAAAAACZQAAAAACJQAAAAAAJQAAAAACJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACDAAAAAABDAAAAAABDAAAAAABcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAADHAAAAAADcgAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAABHAAAAAADcgAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAADAAAAAACDAAAAAABDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAACcgAAAAAAZQAAAAABZQAAAAABZQAAAAABZQAAAAAAZQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAIwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAACcAAAAAAAYwAAAAADZAAAAAADZAAAAAABZAAAAAABZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAABIwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAACGgAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAACZQAAAAAAZQAAAAACZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAADZQAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAACZQAAAAABZQAAAAACZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAAJQAAAAADZQAAAAAAZQAAAAAAZQAAAAACZQAAAAAAZQAAAAABZgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAJQAAAAACcgAAAAAAZQAAAAADZgAAAAADZgAAAAABZgAAAAABZgAAAAACZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAABJQAAAAADZQAAAAABZQAAAAACZQAAAAABZQAAAAACZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHAAAAAACHAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAHAAAAAADHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAHAAAAAACHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YQAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABcAAAAAAAIwAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAAAYQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAADYQAAAAACYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAACYQAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADYwAAAAAAYwAAAAAAZAAAAAADYQAAAAADYQAAAAAAYQAAAAACYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABZAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAABYwAAAAADZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAYwAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAYwAAAAADZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAAcAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAAcAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABZAAAAAAD + tiles: YwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAABcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAACIQAAAAABcgAAAAAAJQAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZQAAAAAAZQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAADYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZgAAAAADZgAAAAABZgAAAAABZgAAAAACZgAAAAADZgAAAAABZgAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADZQAAAAAAZQAAAAAAZgAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAABZgAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAACZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAADZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAABZQAAAAADZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAZQAAAAADcgAAAAAAcgAAAAAAZQAAAAABZQAAAAABZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZQAAAAADZgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZQAAAAADZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAAcgAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAAcgAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAABZQAAAAAAZQAAAAAAZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAADZQAAAAADZQAAAAABZgAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACcAAAAAAAIwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACcgAAAAAAJQAAAAAD version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: YQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -3714,6 +3714,23 @@ entities: pos: 16.5,-15.5 parent: 1 type: Transform +- proto: CaduceusMothershipComputer + entities: + - uid: 1117 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - proto: Chair entities: - uid: 739 @@ -3739,16 +3756,6 @@ entities: - pos: 2.5,6.5 parent: 1 type: Transform - - uid: 1116 - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform - - uid: 1117 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - uid: 1143 components: - rot: -1.5707963267948966 rad @@ -3767,6 +3774,11 @@ entities: pos: -1.5,-9.5 parent: 1 type: Transform + - uid: 1464 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform - proto: ChairOfficeDark entities: - uid: 1142 diff --git a/Resources/Maps/Shuttles/chisel.yml b/Resources/Maps/Shuttles/chisel.yml index d4ca59bd8a3..cf7860dc5dc 100644 --- a/Resources/Maps/Shuttles/chisel.yml +++ b/Resources/Maps/Shuttles/chisel.yml @@ -3,15 +3,15 @@ meta: postmapinit: false tilemap: 0: Space - 70: FloorRGlass - 71: FloorReinforced - 83: FloorSteel - 88: FloorSteelDirty - 91: FloorSteelMono - 92: FloorSteelOffset - 95: FloorTechMaint - 111: Lattice - 112: Plating + 71: FloorRGlass + 72: FloorReinforced + 84: FloorSteel + 89: FloorSteelDirty + 92: FloorSteelMono + 93: FloorSteelOffset + 96: FloorTechMaint + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -25,19 +25,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XwAAAAAAXwAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXwAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAYAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARgAAAAAARgAAAAAARgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXwAAAAAARwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAYAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAYAAAAAAASAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -386,6 +386,67 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 316 + - 317 + - 318 + - 319 + type: DeviceNetwork + - devices: + - 316 + - 317 + - 318 + - 319 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 315 + - 304 + - 319 + type: DeviceNetwork + - devices: + - 315 + - 304 + - 319 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 301 + - 305 + - 318 + type: DeviceNetwork + - devices: + - 301 + - 305 + - 318 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged - proto: AirCanister entities: - uid: 102 @@ -433,7 +494,7 @@ entities: pos: -6.5,-0.5 parent: 1 type: Transform - - secondsUntilStateChange: -5216.0103 + - secondsUntilStateChange: -6034.745 state: Opening type: Door - uid: 48 @@ -1276,6 +1337,26 @@ entities: - pos: 3.3084455,2.5795195 parent: 1 type: Transform +- proto: EmergencyLight + entities: + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 271 @@ -1308,6 +1389,24 @@ entities: - pos: 1.5,-5.5 parent: 1 type: Transform + - uid: 318 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 323 + - 321 + type: DeviceNetwork + - uid: 319 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 321 + - 322 + type: DeviceNetwork - proto: FoodBoxPizzaFilled entities: - uid: 152 @@ -1315,6 +1414,358 @@ entities: - pos: 3.5495157,3.143291 parent: 1 type: Transform +- proto: GasPassiveVent + entities: + - uid: 310 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 302 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 286 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 289 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 290 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 293 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 296 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 306 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 291 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 295 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 270 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 322 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 305 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 323 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 317 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 321 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 301 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 323 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 315 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 322 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 321 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 243 @@ -1435,15 +1886,13 @@ entities: occludes: True ent: null type: ContainerContainer -- proto: LockerSalvageSpecialistFilledHardsuit +- proto: LockerSalvageSpecialistFilled entities: - - uid: 166 + - uid: 146 components: - pos: 3.5,-1.5 parent: 1 type: Transform - - locked: False - type: Lock - proto: MaterialReclaimer entities: - uid: 91 @@ -1719,6 +2168,13 @@ entities: - pos: 6.5,-0.5 parent: 1 type: Transform +- proto: SuitStorageSalv + entities: + - uid: 166 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform - proto: Table entities: - uid: 159 diff --git a/Resources/Maps/Shuttles/condor.yml b/Resources/Maps/Shuttles/condor.yml index c2e1f5af3eb..4eb0d8e53a4 100644 --- a/Resources/Maps/Shuttles/condor.yml +++ b/Resources/Maps/Shuttles/condor.yml @@ -192,8 +192,8 @@ entities: -1,0: 0: 65519 0,0: - 0: 30207 - 1: 34816 + 0: 62975 + 1: 2048 0,-1: 0: 65535 -1,-3: @@ -201,8 +201,7 @@ entities: -1,-2: 0: 52428 -1,1: - 0: 64430 - 1: 1088 + 0: 65518 -1,2: 0: 61439 -1,3: @@ -216,8 +215,7 @@ entities: 0: 64991 3: 544 1,0: - 0: 63475 - 1: 12 + 0: 63487 1,1: 0: 65535 1,2: @@ -249,8 +247,7 @@ entities: 1,-2: 0: 65535 1,-1: - 0: 62463 - 1: 3072 + 0: 65535 2,-3: 0: 29440 2,-2: @@ -287,10 +284,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -305,7 +302,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 2500 - 0 - 0 - 0 @@ -319,7 +316,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 2500 - 0 - 0 - 0 @@ -337,7 +334,7 @@ entities: - 0 - 0 - 0 - - 6666.982 + - 2500 - 0 - 0 - 0 @@ -550,7 +547,7 @@ entities: - pos: 9.5,13.5 parent: 281 type: Transform -- proto: AtmosFixNitrogenMarker +- proto: AtmosFixShuttleNitrogenMarker entities: - uid: 730 components: @@ -562,7 +559,7 @@ entities: - pos: -0.5,13.5 parent: 281 type: Transform -- proto: AtmosFixOxygenMarker +- proto: AtmosFixShuttleOxygenMarker entities: - uid: 728 components: @@ -574,7 +571,7 @@ entities: - pos: 1.5,13.5 parent: 281 type: Transform -- proto: AtmosFixPlasmaMarker +- proto: AtmosFixShuttlePlasmaMarker entities: - uid: 732 components: @@ -3711,8 +3708,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -3761,8 +3758,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 diff --git a/Resources/Maps/Shuttles/dragonfly.yml b/Resources/Maps/Shuttles/dragonfly.yml new file mode 100644 index 00000000000..65f3118e3b8 --- /dev/null +++ b/Resources/Maps/Shuttles/dragonfly.yml @@ -0,0 +1,6250 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 28: FloorDarkDiagonal + 43: FloorGlass + 85: FloorSteelCheckerDark + 97: FloorTechMaint2 + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.453125 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: GwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAKwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAKwAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAKwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 0: -2,-9 + 1: 2,-9 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 20: -3,-9 + 21: -3,-10 + 22: 3,-10 + 23: 3,-9 + 66: 10,-8 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 64: 8,-8 + 65: 9,-7 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 61: -1,8 + 62: 0,8 + 63: 1,8 + - node: + color: '#7D7D7D7F' + id: Damaged + decals: + 68: -5,4 + 69: 5,4 + 70: 5,-8 + 71: -5,-8 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 24: -3,-8 + 25: 3,-8 + 58: -1,9 + 59: 0,9 + 60: 1,9 + 98: -3,4 + 99: 3,4 + - node: + color: '#7D7D7DFF' + id: FullTileOverlayGreyscale + decals: + 16: 0,-7 + 17: 0,-6 + 18: 0,-5 + 28: 0,-4 + 29: 0,-3 + 46: 0,4 + 47: 0,5 + - node: + color: '#7D7D7DFF' + id: HalfTileOverlayGreyscale + decals: + 19: 0,-8 + 30: 1,-3 + 31: -1,-3 + - node: + color: '#7D7D7DFF' + id: HalfTileOverlayGreyscale180 + decals: + 44: -1,4 + 45: 1,4 + 48: 0,6 + - node: + color: '#7D7D7DFF' + id: HalfTileOverlayGreyscale270 + decals: + 2: -1,-12 + 3: -1,-11 + 4: -1,-10 + 5: -1,-9 + 11: -1,-13 + 12: -1,-14 + 13: -1,-15 + 33: -1,-2 + 34: -1,-1 + 35: -1,0 + 36: -1,1 + 37: -1,2 + 38: -1,3 + 49: 1,6 + 50: 1,7 + 51: 1,8 + - node: + color: '#7D7D7DFF' + id: HalfTileOverlayGreyscale90 + decals: + 6: 1,-12 + 7: 1,-9 + 8: 1,-13 + 9: 1,-14 + 10: 1,-15 + 26: 1,-10 + 27: 1,-11 + 32: 1,-2 + 39: 1,-1 + 40: 1,0 + 41: 1,1 + 42: 1,2 + 43: 1,3 + 52: -1,6 + 53: -1,7 + 57: -1,8 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 54: -1,-13 + 55: 0,-13 + 56: 1,-13 + - node: + color: '#7D7D7DFF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 15: -1,-8 + - node: + color: '#7D7D7DFF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 14: 1,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 75: 1,4 + 80: -2,8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 74: 3,4 + 79: 2,8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 73: 2,4 + 76: -1,8 + 77: 0,8 + 78: 1,8 + 100: -9,-14 + 101: 9,-14 + 102: 8,2 + 103: -8,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 87: -7,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 82: -9,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 88: -7,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 85: -9,6 + 86: -8,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 81: -8,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 95: -8,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 94: -8,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 93: -8,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 89: -7,5 + 90: -7,6 + 91: -7,7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 83: -9,8 + 84: -9,7 + 92: -8,5 + - node: + color: '#FFFFFFFF' + id: body + decals: + 97: -3,10 + - node: + color: '#FFFFFFFF' + id: bottle + decals: + 67: -2,2 + - node: + color: '#FFFFFFFF' + id: carp + decals: + 96: -2,10 + - node: + color: '#FFFFFFFF' + id: food + decals: + 72: 2,2 + - node: + color: '#FFFFFFFF' + id: ghost + decals: + 104: 8,-4 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 64273 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 36863 + 0,3: + 0: 8 + 1,1: + 0: 57343 + 1,2: + 0: 19933 + 2,0: + 0: 12561 + 2,1: + 0: 30579 + 2,2: + 0: 18295 + -3,1: + 0: 52424 + -3,2: + 0: 36044 + -3,0: + 0: 32768 + -2,0: + 0: 64273 + -2,1: + 0: 32767 + -2,2: + 0: 13175 + -2,3: + 0: 17 + -1,1: + 0: 65535 + -1,2: + 0: 12287 + -1,3: + 0: 2 + -3,-4: + 0: 60480 + -3,-3: + 0: 61166 + -3,-2: + 0: 52462 + -3,-1: + 0: 68 + -2,-4: + 0: 12560 + -2,-3: + 0: 65395 + -2,-2: + 0: 15359 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 61167 + -1,-4: + 0: 61152 + 0,-4: + 0: 65520 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 65497 + 1,-2: + 0: 39935 + 1,-1: + 0: 1 + 1,-4: + 0: 32768 + 2,-4: + 0: 63312 + 2,-3: + 0: 65535 + 2,-2: + 0: 30719 + 2,-1: + 0: 69 + -2,-1: + 0: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Dragonfly + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 571 + - 577 + - 795 + - 647 + - 645 + type: DeviceNetwork + - devices: + - 571 + - 577 + - 795 + - 647 + - 645 + type: DeviceList + - uid: 388 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 641 + - 642 + type: DeviceNetwork + - devices: + - 472 + - 570 + - 794 + - 641 + - 642 + type: DeviceList + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 649 + - 644 + - 648 + - 646 + - 802 + - 798 + - 599 + type: DeviceNetwork + - devices: + - 599 + - 798 + - 802 + - 646 + - 648 + - 644 + - 649 + type: DeviceList + - uid: 637 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 655 + - 654 + - 653 + - 805 + - 804 + - 652 + - 649 + - 650 + - 799 + - 469 + - 610 + type: DeviceNetwork + - devices: + - 610 + - 469 + - 799 + - 650 + - 649 + - 655 + - 654 + - 653 + - 805 + - 804 + - 652 + type: DeviceList + - uid: 639 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 536 + type: DeviceNetwork + - devices: + - 656 + - 443 + - 3 + - 536 + type: DeviceList + - uid: 789 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 678 + - 559 + - 796 + - 644 + type: DeviceNetwork + - devices: + - 678 + - 559 + - 796 + - 644 + type: DeviceList + - uid: 807 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 800 + - 572 + - 700 + - 657 + - 651 + type: DeviceNetwork + - devices: + - 800 + - 572 + - 700 + - 657 + - 651 + type: DeviceList +- proto: AirCanister + entities: + - uid: 797 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlass + entities: + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlass + entities: + - uid: 109 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlass + entities: + - uid: 105 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 132 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - links: + - 790 + - 640 + type: DeviceLinkSink + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - links: + - 790 + - 640 + type: DeviceLinkSink + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - links: + - 790 + - 640 + type: DeviceLinkSink + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 225 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 10 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 536 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 639 + type: DeviceNetwork + - uid: 794 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 795 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 387 + type: DeviceNetwork + - uid: 796 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 789 + type: DeviceNetwork + - uid: 798 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 613 + type: DeviceNetwork + - uid: 799 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 800 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 807 + type: DeviceNetwork +- proto: AmeController + entities: + - uid: 430 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 431 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 431 + components: + - flags: InContainer + type: MetaData + - parent: 430 + type: Transform + - canCollide: False + type: Physics +- proto: AmeShielding + entities: + - uid: 88 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 426 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 308 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 782 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 518 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 140 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 155 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform +- proto: BenchSofaCorpCorner + entities: + - uid: 394 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - fixtures: {} + type: Fixtures +- proto: BenchSofaCorpLeft + entities: + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpMiddle + entities: + - uid: 396 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpRight + entities: + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BlastDoor + entities: + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: BoxFolderClipboard + entities: + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: 1.5963025,-6.022147 + parent: 1 + type: Transform + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 513 + - 515 + - 514 + pen_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - storageUsed: 3 + type: Storage +- proto: BoxLighttube + entities: + - uid: 370 + components: + - pos: -8.522253,-5.4259543 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 216 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 757 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 777 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 435 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 13 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform +- proto: CargoPallet + entities: + - uid: 525 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 482 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 486 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 143 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 477 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - placedEntities: + - 531 + type: ItemPlacer + - isPlaceable: False + type: PlaceableSurface +- proto: ClosetJanitorFilled + entities: + - uid: 665 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform +- proto: ClothingHeadHatQMsoft + entities: + - uid: 685 + components: + - pos: 3.4379997,-4.3896217 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 826 + components: + - pos: -2.3237886,-6.356871 + parent: 1 + type: Transform +- proto: ClothingShoesSlippers + entities: + - uid: 526 + components: + - pos: -7.8105774,6.50769 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 304 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 302 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 785 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - links: + - 787 + type: DeviceLinkSink + - uid: 786 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - links: + - 787 + type: DeviceLinkSink +- proto: CrateChemistryD + entities: + - uid: 480 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform +- proto: CrateChemistryP + entities: + - uid: 481 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform +- proto: CrateChemistryS + entities: + - uid: 448 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 669 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 660 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 858 + components: + - pos: -1.839391,-6.407483 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 416 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 715 + components: + - pos: 2.1275525,-6.444022 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 829 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 531 + components: + - pos: -9.239723,-9.091128 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 658 + components: + - pos: -0.5527172,2.0393145 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -0.7245922,1.8205645 + parent: 1 + type: Transform +- proto: DrinkShaker + entities: + - uid: 615 + components: + - pos: -2.3183422,3.1955645 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -9.4255905,-9.78296 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 483 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 864 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 865 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 866 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 868 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 869 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 870 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 872 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 831 + components: + - flags: InContainer + type: MetaData + - parent: 303 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 830 + components: + - flags: InContainer + type: MetaData + - parent: 303 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 832 + components: + - flags: InContainer + type: MetaData + - parent: 303 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyTraffic + entities: + - uid: 833 + components: + - flags: InContainer + type: MetaData + - parent: 303 + type: Transform + - canCollide: False + type: Physics +- proto: ExtinguisherCabinetFilled + entities: + - uid: 414 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 420 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 836 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 217 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 641 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 388 + type: DeviceNetwork + - uid: 642 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 388 + type: DeviceNetwork + - uid: 643 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 789 + - 613 + type: DeviceNetwork + - uid: 645 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 387 + type: DeviceNetwork + - uid: 646 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 613 + type: DeviceNetwork + - uid: 647 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 387 + type: DeviceNetwork + - uid: 648 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 613 + type: DeviceNetwork + - uid: 649 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 613 + - 637 + type: DeviceNetwork + - uid: 650 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 651 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 807 + type: DeviceNetwork + - uid: 652 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 653 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 654 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 655 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 656 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 807 + type: DeviceNetwork + - uid: 804 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 805 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork +- proto: FoodBoxPizzaFilled + entities: + - uid: 857 + components: + - pos: -0.43316364,-0.30815744 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 841 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 440 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 300 + type: GasMixer +- proto: GasPassiveVent + entities: + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 441 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 589 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 556 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 591 + components: + - rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 592 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 593 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 596 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 806 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 438 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 574 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 442 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - targetPressure: 300 + type: GasPressurePump +- proto: GasVentPump + entities: + - uid: 443 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 559 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 789 + type: DeviceNetwork + - uid: 570 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 387 + type: DeviceNetwork + - uid: 572 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 807 + type: DeviceNetwork + - uid: 802 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 613 + type: DeviceNetwork +- proto: GasVentScrubber + entities: + - uid: 3 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 387 + type: DeviceNetwork + - uid: 599 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 613 + type: DeviceNetwork + - uid: 610 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 637 + type: DeviceNetwork + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 789 + type: DeviceNetwork + - uid: 700 + components: + - pos: -8.5,-11.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 807 + type: DeviceNetwork +- proto: GravityGeneratorMini + entities: + - uid: 697 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 673 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 684 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 479 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 457 + components: + - pos: -9.6443405,-10.111085 + parent: 1 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 382 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 234 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform +- proto: IntercomCommon + entities: + - uid: 852 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform +- proto: Jug + entities: + - uid: 512 + components: + - pos: -9.321788,-10.507504 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: -9.759288,-10.507504 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 828 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 484 + components: + - pos: -9.5,-11.5 + parent: 1 + type: Transform +- proto: KnifePlastic + entities: + - uid: 860 + components: + - rot: -1.5707963267948966 rad + pos: -0.441406,-0.98780227 + parent: 1 + type: Transform +- proto: Lamp + entities: + - uid: 853 + components: + - rot: 3.141592653589793 rad + pos: 7.521994,8.151886 + parent: 1 + type: Transform +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 182 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 372 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 659 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform +- proto: LockerFreezerBase + entities: + - uid: 838 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 490 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform +- proto: LockerWallMedical + entities: + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 680 + type: ContainerContainer +- proto: MaterialReclaimer + entities: + - uid: 533 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 680 + components: + - flags: InContainer + type: MetaData + - parent: 679 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MopBucketFull + entities: + - uid: 373 + components: + - pos: -8.446638,-5.329709 + parent: 1 + type: Transform + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + shark_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 374 + type: ContainerContainer +- proto: MopItem + entities: + - uid: 369 + components: + - pos: -8.475378,-5.2853293 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 847 + components: + - pos: -1.211923,-6.3958006 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 462 + components: + - anchored: True + pos: 9.5,-5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: OreBox + entities: + - uid: 616 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 335 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 461 + components: + - anchored: True + pos: 8.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: PaintingAmogusTriptych + entities: + - uid: 851 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 859 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 488 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 489 + components: + - rot: 1.5707963267948966 rad + pos: 7.615744,7.386261 + parent: 1 + type: Transform +- proto: PaperCargoInvoice + entities: + - uid: 513 + components: + - flags: InContainer + type: MetaData + - parent: 619 + type: Transform + - canCollide: False + type: Physics + - uid: 514 + components: + - flags: InContainer + type: MetaData + - parent: 619 + type: Transform + - canCollide: False + type: Physics + - uid: 515 + components: + - flags: InContainer + type: MetaData + - parent: 619 + type: Transform + - canCollide: False + type: Physics +- proto: Pen + entities: + - uid: 386 + components: + - pos: 1.5338025,-6.412772 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 839 + components: + - rot: -1.5707963267948966 rad + pos: 7.740744,7.526886 + parent: 1 + type: Transform +- proto: PersonalAI + entities: + - uid: 835 + components: + - rot: -1.5707963267948966 rad + pos: -0.43958187,-1.4645479 + parent: 1 + type: Transform +- proto: PinpointerUniversal + entities: + - uid: 704 + components: + - pos: 3.4708483,8.093536 + parent: 1 + type: Transform +- proto: PlasmaWindowDirectional + entities: + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 220 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 381 + components: + - pos: 9.496485,6.345752 + parent: 1 + type: Transform +- proto: PlushieSharkPink + entities: + - uid: 374 + components: + - flags: InContainer + type: MetaData + - parent: 373 + type: Transform + - canCollide: False + type: Physics +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 725 + components: + - rot: -1.5707963267948966 rad + pos: 3.0339723,-6.412772 + parent: 1 + type: Transform +- proto: PortableScrubber + entities: + - uid: 585 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 674 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 849 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + type: Transform +- proto: PosterContrabandKudzu + entities: + - uid: 850 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 883 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 681 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: PosterLegitBarDrinks + entities: + - uid: 792 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: PosterLegitBlessThisSpess + entities: + - uid: 672 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: PosterLegitGetYourLEGS + entities: + - uid: 791 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 848 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 675 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 677 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 688 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform +- proto: PosterLegitSMMeth + entities: + - uid: 819 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 1 + type: Transform +- proto: PosterLegitSMPoisoning + entities: + - uid: 683 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 682 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 74 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 686 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 708 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 712 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 713 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 717 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 728 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 729 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 706 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 705 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: RagItem + entities: + - uid: 614 + components: + - pos: -0.48323798,1.7778904 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 666 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 716 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 718 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 719 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 723 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 724 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 862 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 863 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 877 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 878 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 879 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 880 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 881 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 882 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 790 + components: + - pos: 2.537456,-6.350272 + parent: 1 + type: Transform + - linkedPorts: + 166: + - Pressed: DoorBolt + 165: + - Pressed: DoorBolt + 164: + - Pressed: DoorBolt + type: DeviceLinkSource +- proto: Saw + entities: + - uid: 856 + components: + - rot: -1.5707963267948966 rad + pos: -0.792516,-6.485608 + parent: 1 + type: Transform +- proto: Screwdriver + entities: + - uid: 846 + components: + - rot: 1.5707963267948966 rad + pos: -1.464391,-6.454358 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 689 + components: + - pos: -2.4717631,-4.35702 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 519 + components: + - pos: -2.2686381,-4.341395 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 365 + components: + - pos: -2.7998881,-4.341395 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 336 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - links: + - 584 + type: DeviceLinkSink + - uid: 337 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - links: + - 584 + type: DeviceLinkSink + - uid: 338 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - links: + - 584 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 199 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 206 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - links: + - 793 + type: DeviceLinkSink + - uid: 383 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 401 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 402 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 404 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 407 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 408 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 409 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 410 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - links: + - 638 + type: DeviceLinkSink + - uid: 412 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - links: + - 179 + type: DeviceLinkSink + - uid: 413 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - links: + - 179 + type: DeviceLinkSink + - uid: 603 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - links: + - 4 + type: DeviceLinkSink + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - links: + - 4 + type: DeviceLinkSink + - uid: 628 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - links: + - 4 + type: DeviceLinkSink + - uid: 629 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - links: + - 4 + type: DeviceLinkSink + - uid: 633 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 634 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 635 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - links: + - 630 + type: DeviceLinkSink + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - links: + - 793 + type: DeviceLinkSink + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - links: + - 793 + type: DeviceLinkSink + - uid: 818 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 1 + type: Transform + - links: + - 793 + type: DeviceLinkSink +- proto: ShuttleWindow + entities: + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 620 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 815 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 629: + - Pressed: Toggle + 628: + - Pressed: Toggle + 627: + - Pressed: Toggle + 626: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - linkedPorts: + 412: + - Pressed: Toggle + 413: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 584 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - linkedPorts: + 338: + - Pressed: Toggle + 337: + - Pressed: Toggle + 336: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - linkedPorts: + 383: + - Pressed: Toggle + 401: + - Pressed: Toggle + 402: + - Pressed: Toggle + 633: + - Pressed: Toggle + 634: + - Pressed: Toggle + 635: + - Pressed: Toggle + 173: + - Pressed: DoorBolt + 132: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 408: + - Pressed: Toggle + 409: + - Pressed: Toggle + 410: + - Pressed: Toggle + 407: + - Pressed: Toggle + 406: + - Pressed: Toggle + 405: + - Pressed: Toggle + 199: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 640 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 166: + - Pressed: DoorBolt + 165: + - Pressed: DoorBolt + 164: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 793 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - linkedPorts: + 818: + - Pressed: Toggle + 817: + - Pressed: Toggle + 816: + - Pressed: Toggle + 206: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignConspiracyBoard + entities: + - uid: 367 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform +- proto: SignLastIdiot + entities: + - uid: 237 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 432 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: SpawnMobCatSpace + entities: + - uid: 598 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 476 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 662 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 352 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 663 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 703 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 702 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 664 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 470 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 434 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 617 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 468 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 485 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 299 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 398 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 475 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 393 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 303 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - open: True + type: WiresPanel + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 830 + - 831 + - 832 + - 833 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: Thruster + entities: + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 473 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 493 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 496 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 501 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 775 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 844 + components: + - rot: 1.5707963267948966 rad + pos: -2.664374,-6.505785 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 452 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 198 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - linkedPorts: + 200: + - Left: Forward + - Right: Reverse + - Middle: Off + 197: + - Left: Forward + - Right: Reverse + - Middle: Off + 196: + - Left: Forward + - Right: Reverse + - Middle: Off + 195: + - Left: Forward + - Right: Reverse + - Middle: Off + 202: + - Left: Forward + - Right: Reverse + - Middle: Off + 194: + - Left: Forward + - Right: Reverse + - Middle: Off + 203: + - Left: Forward + - Right: Reverse + - Middle: Off + 193: + - Left: Forward + - Right: Reverse + - Middle: Off + 204: + - Left: Forward + - Right: Reverse + - Middle: Off + 192: + - Left: Forward + - Right: Reverse + - Middle: Off + 205: + - Left: Forward + - Right: Reverse + - Middle: Off + 201: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 787 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 785: + - Left: Forward + - Right: Reverse + - Middle: Off + 786: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VendingMachineBooze + entities: + - uid: 415 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 576 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 464 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 236 + components: + - pos: -9.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineCuddlyCritterVend + entities: + - uid: 524 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 463 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 233 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 228 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 5 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 698 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 456 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 100 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 618 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: WeaponGrapplingGun + entities: + - uid: 695 + components: + - pos: 3.4775758,6.3288884 + parent: 1 + type: Transform + - uid: 696 + components: + - rot: 3.141592653589793 rad + pos: 3.5869508,6.2351384 + parent: 1 + type: Transform +- proto: WeaponLaserGun + entities: + - uid: 668 + components: + - pos: 7.58707,6.9366574 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 3.52457,6.9679074 + parent: 1 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 827 + components: + - pos: -0.308141,-6.438733 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 460 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 231 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 517 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 845 + components: + - pos: -1.839391,-6.438733 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/empress.yml b/Resources/Maps/Shuttles/empress.yml index 9f6b7f7b1e3..99cd1722da0 100644 --- a/Resources/Maps/Shuttles/empress.yml +++ b/Resources/Maps/Shuttles/empress.yml @@ -3,70 +3,70 @@ meta: postmapinit: false tilemap: 0: Space - 26: FloorDark - 30: FloorDarkMini - 33: FloorDarkPavement - 34: FloorDarkPavementVertical - 41: FloorFreezer - 42: FloorGlass - 61: FloorMetalDiamond - 70: FloorRGlass - 84: FloorSteelCheckerDark - 95: FloorTechMaint - 99: FloorWhite - 109: FloorWood - 111: Lattice - 112: Plating + 27: FloorDark + 31: FloorDarkMini + 34: FloorDarkPavement + 35: FloorDarkPavementVertical + 42: FloorFreezer + 43: FloorGlass + 62: FloorMetalDiamond + 71: FloorRGlass + 85: FloorSteelCheckerDark + 96: FloorTechMaint + 100: FloorWhite + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: - uid: 1 components: - - type: StationEmpImmune - type: MetaData - pos: -14.611727,10.611694 parent: invalid type: Transform + - type: StationEmpImmune - chunks: 0,0: ind: 0,0 - tiles: GgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAARgAAAAAARgAAAAAARgAAAAAAIQAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAARgAAAAAARgAAAAAARgAAAAAAIQAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAARgAAAAAARgAAAAAARgAAAAAAIQAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARwAAAAAARwAAAAAARwAAAAAAIgAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARwAAAAAARwAAAAAARwAAAAAAIgAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARwAAAAAARwAAAAAARwAAAAAAIgAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAA version: 6 1,0: ind: 1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAYwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAHgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAHgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAKQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAbgAAAAAAbgAAAAAAZAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAHwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAHwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: cAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA + tiles: cQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAA version: 6 2,0: ind: 2,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAKQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAKQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAKQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -973,7 +973,8 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 65471 + 1: 64 1,0: 0: 65535 -1,0: @@ -983,15 +984,18 @@ entities: 0,1: 0: 65535 0,2: - 0: 65535 + 0: 65531 + 2: 4 1,1: - 0: 65535 + 0: 57343 + 1: 8192 1,2: 0: 65535 2,0: 0: 65535 2,1: - 0: 65535 + 0: 57343 + 1: 8192 2,2: 0: 65535 3,0: @@ -999,17 +1003,19 @@ entities: 3,1: 0: 65535 3,2: - 0: 65535 + 0: 65519 + 1: 16 -4,0: 0: 65535 -4,1: 0: 35951 - 1: 128 + 3: 128 -3,0: - 0: 65535 + 0: 65023 + 4: 512 -3,1: 0: 57343 - 2: 8192 + 5: 8192 -3,2: 0: 2287 -2,0: @@ -1019,7 +1025,9 @@ entities: -2,2: 0: 61439 -1,1: - 0: 65535 + 0: 28669 + 6: 36864 + 4: 2 -1,2: 0: 65535 -4,-1: @@ -1029,7 +1037,9 @@ entities: -3,-2: 0: 65535 -3,-1: - 0: 65535 + 1: 32833 + 0: 30494 + 4: 2208 -3,-3: 0: 60416 -2,-3: @@ -1055,7 +1065,9 @@ entities: 3,-3: 0: 65535 3,-2: - 0: 65535 + 0: 12287 + 4: 4096 + 6: 49152 3,-1: 0: 65535 4,0: @@ -1063,7 +1075,8 @@ entities: 4,1: 0: 65535 4,2: - 0: 65535 + 0: 65023 + 4: 512 5,0: 0: 65535 5,1: @@ -1071,13 +1084,16 @@ entities: 5,2: 0: 65535 6,0: - 0: 65535 + 0: 64511 + 6: 1024 6,1: 0: 65535 6,2: - 0: 65535 + 0: 65527 + 1: 8 7,0: - 0: 65535 + 0: 32767 + 4: 32768 7,1: 0: 65535 7,2: @@ -1087,7 +1103,8 @@ entities: 4,-3: 0: 13107 4,-2: - 0: 13107 + 0: 9011 + 4: 4096 4,-1: 0: 62259 7,-3: @@ -1101,21 +1118,26 @@ entities: 8,1: 0: 65535 8,2: - 0: 65535 + 0: 65405 + 6: 130 9,0: 0: 65535 9,1: - 0: 65535 + 0: 65503 + 2: 32 9,2: 0: 1023 10,0: - 0: 65535 + 0: 65279 + 6: 256 10,1: - 0: 14335 + 2: 1 + 0: 14334 10,2: 0: 1 11,0: - 0: 13107 + 0: 12851 + 2: 256 11,1: 0: 1 8,-3: @@ -1170,6 +1192,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.823984 + - 82.09976 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -1185,6 +1237,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -1200,106 +1267,25 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance -- proto: ActionToggleBlock - entities: - - uid: 1028 - components: - - flags: InContainer - type: MetaData - - parent: 1027 - type: Transform -- proto: ActionToggleInternals - entities: - - uid: 910 - components: - - flags: InContainer - type: MetaData - - parent: 894 - type: Transform - - uid: 917 - components: - - flags: InContainer - type: MetaData - - parent: 915 - type: Transform - - uid: 921 - components: - - flags: InContainer - type: MetaData - - parent: 919 - type: Transform - - uid: 928 - components: - - flags: InContainer - type: MetaData - - parent: 926 - type: Transform - - uid: 936 - components: - - flags: InContainer - type: MetaData - - parent: 934 - type: Transform - - uid: 944 - components: - - flags: InContainer - type: MetaData - - parent: 942 - type: Transform - - uid: 2419 - components: - - flags: InContainer - type: MetaData - - parent: 922 - type: Transform - - uid: 2420 - components: - - flags: InContainer - type: MetaData - - parent: 924 - type: Transform -- proto: ActionToggleJetpack - entities: - - uid: 909 - components: - - flags: InContainer - type: MetaData - - parent: 894 - type: Transform - - uid: 916 - components: - - flags: InContainer - type: MetaData - - parent: 915 - type: Transform - - uid: 920 - components: - - flags: InContainer - type: MetaData - - parent: 919 - type: Transform - - uid: 927 - components: - - flags: InContainer - type: MetaData - - parent: 926 - type: Transform - - uid: 935 - components: - - flags: InContainer - type: MetaData - - parent: 934 - type: Transform - - uid: 943 - components: - - flags: InContainer - type: MetaData - - parent: 942 - type: Transform - proto: ActionToggleLight entities: - uid: 1435 @@ -1487,7 +1473,8 @@ entities: - pos: -14.5,3.5 parent: 1 type: Transform - - injecting: True + - injectionAmount: 4 + injecting: True type: AmeController - containers: AmeFuel: !type:ContainerSlot @@ -1505,60 +1492,21 @@ entities: type: Transform - canCollide: False type: Physics - - uid: 1065 - components: - - flags: InContainer - type: MetaData - - parent: 1064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1066 - components: - - flags: InContainer - type: MetaData - - parent: 1064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1067 - components: - - flags: InContainer - type: MetaData - - parent: 1064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1068 + - uid: 725 components: - - flags: InContainer - type: MetaData - - parent: 1064 + - pos: -11.712221,2.562519 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1069 + - uid: 762 components: - - flags: InContainer - type: MetaData - - parent: 1064 + - pos: -11.503887,2.5999584 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1070 + - uid: 763 components: - - flags: InContainer - type: MetaData - - parent: 1064 + - pos: -11.305971,2.5582914 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: AmeShielding entities: - uid: 684 @@ -1567,7 +1515,7 @@ entities: pos: -14.5,1.5 parent: 1 type: Transform - - radius: 1 + - radius: 2 enabled: True type: PointLight - uid: 685 @@ -1600,7 +1548,7 @@ entities: pos: -14.5,0.5 parent: 1 type: Transform - - radius: 1 + - radius: 2 enabled: True type: PointLight - uid: 690 @@ -1639,7 +1587,7 @@ entities: pos: -13.5,0.5 parent: 1 type: Transform -- proto: APCBasicEmpImmune +- proto: APCBasic entities: - uid: 2045 components: @@ -2420,28 +2368,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: BoxLightbulb - entities: - - uid: 764 - components: - - flags: InContainer - type: MetaData - - parent: 762 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxLighttube - entities: - - uid: 763 - components: - - flags: InContainer - type: MetaData - - parent: 762 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: BoxMagazinePistolHighCapacity entities: - uid: 1113 @@ -2605,8 +2531,6 @@ entities: - pos: -6.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2059 components: - pos: -7.5,-3.5 @@ -2617,8 +2541,6 @@ entities: - pos: 11.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2069 components: - pos: 10.5,5.5 @@ -2679,8 +2601,6 @@ entities: - pos: -0.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2081 components: - pos: -1.5,5.5 @@ -2736,8 +2656,6 @@ entities: - pos: 4.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2092 components: - pos: 4.5,7.5 @@ -2768,8 +2686,6 @@ entities: - pos: 8.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2098 components: - pos: 8.5,7.5 @@ -2800,8 +2716,6 @@ entities: - pos: -5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2104 components: - pos: -5.5,1.5 @@ -2817,22 +2731,16 @@ entities: - pos: -4.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2107 components: - pos: -3.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2108 components: - pos: -3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2109 components: - pos: -3.5,0.5 @@ -2863,99 +2771,71 @@ entities: - pos: -6.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2115 components: - pos: -7.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2116 components: - pos: -8.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2117 components: - pos: -8.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2118 components: - pos: -8.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2119 components: - pos: -8.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2120 components: - pos: -8.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2121 components: - pos: -8.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2122 components: - pos: -8.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2123 components: - pos: -9.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2124 components: - pos: -10.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2125 components: - pos: -11.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2126 components: - pos: -12.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2127 components: - pos: -6.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2128 components: - pos: -7.5,-3.5 @@ -3011,141 +2891,101 @@ entities: - pos: -8.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2139 components: - pos: -8.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2140 components: - pos: -9.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2141 components: - pos: -9.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2142 components: - pos: -9.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2143 components: - pos: -8.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2144 components: - pos: -8.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2145 components: - pos: -7.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2146 components: - pos: -6.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2147 components: - pos: -5.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2148 components: - pos: -4.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2149 components: - pos: -4.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2150 components: - pos: -3.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2151 components: - pos: -3.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2152 components: - pos: -3.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2153 components: - pos: -4.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2154 components: - pos: -6.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2155 components: - pos: -6.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2156 components: - pos: -6.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2157 components: - pos: -6.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2158 components: - pos: 35.5,-2.5 @@ -3166,155 +3006,111 @@ entities: - pos: 36.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2163 components: - pos: 35.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2164 components: - pos: 37.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2165 components: - pos: 37.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2166 components: - pos: 38.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2167 components: - pos: 38.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2168 components: - pos: 38.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2169 components: - pos: 37.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2170 components: - pos: 37.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2171 components: - pos: 36.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2172 components: - pos: 35.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2173 components: - pos: 34.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2174 components: - pos: 33.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2175 components: - pos: 33.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2176 components: - pos: 32.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2177 components: - pos: 32.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2178 components: - pos: 32.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2179 components: - pos: 33.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2180 components: - pos: 35.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2181 components: - pos: 35.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2182 components: - pos: 35.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2183 components: - pos: 35.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2184 components: - pos: 35.5,-3.5 @@ -3380,8 +3176,6 @@ entities: - pos: 39.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2197 components: - pos: 38.5,2.5 @@ -3547,8 +3341,6 @@ entities: - pos: 36.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2233 components: - pos: 35.5,5.5 @@ -3594,8 +3386,6 @@ entities: - pos: 23.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2243 components: - pos: 23.5,2.5 @@ -3721,8 +3511,6 @@ entities: - pos: 31.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2268 components: - pos: 30.5,6.5 @@ -3998,8 +3786,6 @@ entities: - pos: 12.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2323 components: - pos: 12.5,-4.5 @@ -4345,17 +4131,6 @@ entities: - pos: 8.5,10.5 parent: 1 type: Transform -- proto: CableApcStack - entities: - - uid: 730 - components: - - flags: InContainer - type: MetaData - - parent: 728 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: CableHV entities: - uid: 669 @@ -4363,124 +4138,81 @@ entities: - pos: -12.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 691 components: - pos: -14.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 699 components: - pos: -14.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 701 components: - pos: -10.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 703 components: - pos: -11.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 705 components: - pos: -12.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 717 components: - pos: -13.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 733 components: - pos: -12.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 737 components: - pos: -12.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 740 components: - pos: -10.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 741 components: - pos: -11.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 797 components: - pos: -9.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 895 components: - pos: -14.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 896 components: - pos: -13.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 897 components: - pos: -12.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 898 components: - pos: -12.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound -- proto: CableHVStack - entities: - - uid: 729 - components: - - flags: InContainer - type: MetaData - - parent: 728 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: CableMV entities: - uid: 743 @@ -4488,29 +4220,21 @@ entities: - pos: -10.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 766 components: - pos: -10.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 767 components: - pos: -9.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 768 components: - pos: -8.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 811 components: - pos: -1.5,1.5 @@ -4521,36 +4245,26 @@ entities: - pos: -8.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 816 components: - pos: -8.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 819 components: - pos: -8.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 820 components: - pos: -7.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 824 components: - pos: -6.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 826 components: - pos: -5.5,1.5 @@ -4561,15 +4275,11 @@ entities: - pos: -8.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 970 components: - pos: -8.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1072 components: - pos: 10.5,8.5 @@ -4580,8 +4290,6 @@ entities: - pos: 1.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1220 components: - pos: -3.5,-0.5 @@ -4612,8 +4320,6 @@ entities: - pos: 2.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1237 components: - pos: 8.5,8.5 @@ -4634,8 +4340,6 @@ entities: - pos: 3.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1258 components: - pos: 4.5,8.5 @@ -4646,8 +4350,6 @@ entities: - pos: 7.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1260 components: - pos: 6.5,8.5 @@ -4658,15 +4360,11 @@ entities: - pos: 7.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1262 components: - pos: 3.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1263 components: - pos: 6.5,7.5 @@ -4697,8 +4395,6 @@ entities: - pos: 0.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1270 components: - pos: 0.5,7.5 @@ -4714,29 +4410,21 @@ entities: - pos: -4.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1287 components: - pos: -8.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1288 components: - pos: -3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1289 components: - pos: -2.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1290 components: - pos: -0.5,1.5 @@ -4777,15 +4465,11 @@ entities: - pos: 0.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1326 components: - pos: 6.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1595 components: - pos: 13.5,-5.5 @@ -4801,8 +4485,6 @@ entities: - pos: 10.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1761 components: - pos: 10.5,7.5 @@ -4823,8 +4505,6 @@ entities: - pos: 1.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1765 components: - pos: -0.5,8.5 @@ -4865,8 +4545,6 @@ entities: - pos: -2.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1773 components: - pos: -3.5,10.5 @@ -4882,8 +4560,6 @@ entities: - pos: -4.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1776 components: - pos: -0.5,9.5 @@ -4899,8 +4575,6 @@ entities: - pos: -0.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1779 components: - pos: 5.5,9.5 @@ -4916,8 +4590,6 @@ entities: - pos: 5.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1782 components: - pos: 9.5,9.5 @@ -4933,8 +4605,6 @@ entities: - pos: 9.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1785 components: - pos: 1.5,4.5 @@ -5025,8 +4695,6 @@ entities: - pos: 11.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1803 components: - pos: 15.5,0.5 @@ -5247,8 +4915,6 @@ entities: - pos: 19.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1847 components: - pos: 18.5,4.5 @@ -5264,8 +4930,6 @@ entities: - pos: 19.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1850 components: - pos: 19.5,4.5 @@ -5311,43 +4975,31 @@ entities: - pos: 23.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1859 components: - pos: 23.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1860 components: - pos: 23.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1861 components: - pos: 16.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1862 components: - pos: 17.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1863 components: - pos: 19.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1864 components: - pos: 14.5,10.5 @@ -5358,29 +5010,21 @@ entities: - pos: 14.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1866 components: - pos: 13.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1867 components: - pos: -2.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1868 components: - pos: -2.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1869 components: - pos: -3.5,-3.5 @@ -5421,22 +5065,16 @@ entities: - pos: -8.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1877 components: - pos: -7.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1878 components: - pos: -7.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1879 components: - pos: 30.5,6.5 @@ -5477,22 +5115,16 @@ entities: - pos: 27.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1887 components: - pos: 26.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1888 components: - pos: 25.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1889 components: - pos: 30.5,9.5 @@ -5518,22 +5150,16 @@ entities: - pos: 32.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1894 components: - pos: 33.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1895 components: - pos: 34.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1896 components: - pos: 22.5,2.5 @@ -5544,22 +5170,16 @@ entities: - pos: 23.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1898 components: - pos: 22.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1899 components: - pos: 24.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1900 components: - pos: 29.5,2.5 @@ -5570,15 +5190,11 @@ entities: - pos: 28.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1902 components: - pos: 29.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1903 components: - pos: 9.5,1.5 @@ -5589,15 +5205,11 @@ entities: - pos: 9.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1905 components: - pos: 8.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1906 components: - pos: 1.5,1.5 @@ -5613,22 +5225,16 @@ entities: - pos: 2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1909 components: - pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1910 components: - pos: 4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1911 components: - pos: 16.5,-3.5 @@ -5639,22 +5245,16 @@ entities: - pos: 17.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1913 components: - pos: 17.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1914 components: - pos: 17.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1915 components: - pos: 14.5,-3.5 @@ -5675,57 +5275,41 @@ entities: - pos: 11.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1919 components: - pos: 11.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1920 components: - pos: 11.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1921 components: - pos: 11.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1922 components: - pos: 11.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1923 components: - pos: 11.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1924 components: - pos: 11.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1925 components: - pos: 11.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1926 components: - pos: 15.5,-9.5 @@ -5741,36 +5325,26 @@ entities: - pos: 17.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1929 components: - pos: 17.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1930 components: - pos: 17.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1931 components: - pos: 17.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1932 components: - pos: 17.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1933 components: - pos: 13.5,-10.5 @@ -5796,15 +5370,11 @@ entities: - pos: 11.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1938 components: - pos: 13.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1939 components: - pos: 12.5,-13.5 @@ -5835,15 +5405,11 @@ entities: - pos: 17.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1945 components: - pos: 15.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1946 components: - pos: 15.5,-14.5 @@ -5924,15 +5490,11 @@ entities: - pos: 45.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1963 components: - pos: 45.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1964 components: - pos: 39.5,1.5 @@ -5978,8 +5540,6 @@ entities: - pos: 38.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1973 components: - pos: 39.5,7.5 @@ -5990,22 +5550,16 @@ entities: - pos: 40.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1975 components: - pos: 41.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1976 components: - pos: 41.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1977 components: - pos: 38.5,0.5 @@ -6051,8 +5605,6 @@ entities: - pos: 45.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1986 components: - pos: 43.5,-1.5 @@ -6063,22 +5615,16 @@ entities: - pos: 43.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1988 components: - pos: 43.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1989 components: - pos: 42.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1990 components: - pos: 38.5,-1.5 @@ -6119,8 +5665,6 @@ entities: - pos: 31.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1998 components: - pos: 35.5,-2.5 @@ -6131,8 +5675,6 @@ entities: - pos: 36.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2000 components: - pos: 36.5,-4.5 @@ -6168,8 +5710,6 @@ entities: - pos: 31.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2007 components: - pos: 37.5,-4.5 @@ -6195,8 +5735,6 @@ entities: - pos: 40.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2012 components: - pos: -7.5,-4.5 @@ -6212,8 +5750,6 @@ entities: - pos: 12.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2053 components: - pos: 10.5,5.5 @@ -6224,22 +5760,16 @@ entities: - pos: -5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2055 components: - pos: 11.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2060 components: - pos: -6.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2062 components: - pos: 15.5,9.5 @@ -6265,8 +5795,6 @@ entities: - pos: 31.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2068 components: - pos: 21.5,4.5 @@ -6277,8 +5805,6 @@ entities: - pos: 39.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2228 components: - pos: 37.5,3.5 @@ -6294,15 +5820,11 @@ entities: - pos: 36.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2241 components: - pos: 23.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2359 components: - pos: 5.5,3.5 @@ -6318,26 +5840,11 @@ entities: - pos: 5.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2639 components: - pos: 9.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 731 - components: - - flags: InContainer - type: MetaData - - parent: 728 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: CableTerminal entities: - uid: 718 @@ -7031,13 +6538,9 @@ entities: entities: - uid: 739 components: - - flags: InContainer - type: MetaData - - parent: 738 + - pos: 14.531638,8.281025 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ChemistryHotplate entities: - uid: 784 @@ -7110,20 +6613,9 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingBeltSheathFilled - entities: - - uid: 1026 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltUtilityFilled +- proto: ClothingBeltUtilityEngineering entities: - - uid: 724 + - uid: 607 components: - flags: InContainer type: MetaData @@ -7132,7 +6624,7 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 725 + - uid: 670 components: - flags: InContainer type: MetaData @@ -7141,7 +6633,7 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 726 + - uid: 671 components: - flags: InContainer type: MetaData @@ -7154,20 +6646,9 @@ entities: entities: - uid: 794 components: - - pos: 14.533433,8.158372 + - pos: 14.479554,7.916441 parent: 1 type: Transform -- proto: ClothingHandsGlovesCaptain - entities: - - uid: 127 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingHandsGlovesLeather entities: - uid: 1414 @@ -7212,42 +6693,18 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingHeadHatCapcap +- proto: ClothingHeadHatPirateTricord entities: - - uid: 1029 + - uid: 1425 components: - flags: InContainer type: MetaData - - parent: 1023 + - parent: 1413 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingHeadHatPirateTricord - entities: - - uid: 1425 - components: - - flags: InContainer - type: MetaData - - parent: 1413 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatSyndieMAA - entities: - - uid: 908 - components: - - flags: InContainer - desc: Looks intimidating, you feel in control while wearing it. - name: commander hat - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatTacticalMaidHeadband +- proto: ClothingHeadHatTacticalMaidHeadband entities: - uid: 746 components: @@ -7270,122 +6727,6 @@ entities: - pos: 32.538986,5.5931597 parent: 1 type: Transform -- proto: ClothingHeadPrisonGuard - entities: - - uid: 1281 - components: - - flags: InContainer - type: MetaData - - parent: 1004 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1283 - components: - - flags: InContainer - type: MetaData - - parent: 1004 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskGasSecurity - entities: - - uid: 773 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 918 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 925 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 929 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 933 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1307 - components: - - flags: InContainer - type: MetaData - - parent: 160 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1312 - components: - - flags: InContainer - type: MetaData - - parent: 165 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1315 - components: - - flags: InContainer - type: MetaData - - parent: 670 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskGasSwat - entities: - - uid: 940 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckCloakCapFormal - entities: - - uid: 1024 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingNeckCloakPirateCap entities: - uid: 1423 @@ -7397,17 +6738,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingNeckMantleHOS - entities: - - uid: 941 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingOuterApronBotanist entities: - uid: 1427 @@ -7419,46 +6749,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 1025 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]35%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingOuterArmorRiot entities: - uid: 1118 @@ -7482,156 +6772,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingOuterHardsuitBrigmedic - entities: - - uid: 932 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 774 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 912 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 923 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecuritypatrol - entities: - - uid: 166 - components: - - flags: InContainer - type: MetaData - - parent: 160 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 169 - components: - - flags: InContainer - type: MetaData - - parent: 165 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 999 - components: - - flags: InContainer - type: MetaData - - parent: 670 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurityRed - entities: - - uid: 945 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - This decreases your running speed by [color=yellow]25%[/color]. - - This decreases your walking speed by [color=yellow]15%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]40%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitWarden - entities: - - uid: 937 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]30%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingShoesClothwarp entities: - uid: 1426 @@ -7663,17 +6803,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingShoesLeather - entities: - - uid: 203 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingShoesTourist entities: - uid: 1424 @@ -7716,17 +6845,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCaptain - entities: - - uid: 1031 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 1418 @@ -7747,26 +6865,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPrisonGuard - entities: - - uid: 1280 - components: - - flags: InContainer - type: MetaData - - parent: 1004 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1282 - components: - - flags: InContainer - type: MetaData - - parent: 1004 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ComputerAlert entities: - uid: 960 @@ -7842,7 +6940,7 @@ entities: - pos: 15.5,-6.5 parent: 1 type: Transform -- proto: ComputerShipyardSecurity +- proto: EmpressMothershipComputer entities: - uid: 118 components: @@ -7918,10 +7016,10 @@ entities: - air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.1497 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -7933,28 +7031,31 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 739 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: CrateEngineeringAMEJar entities: - - uid: 1064 + - uid: 203 components: - pos: -10.5,2.5 parent: 1 type: Transform +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 480 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform +- proto: CrateEngineeringToolbox + entities: + - uid: 723 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform - air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.1497 moles: - 1.7459903 - 6.568249 @@ -7974,89 +7075,9 @@ entities: showEnts: False occludes: True ents: - - 1070 - - 1069 - - 1068 - - 1067 - - 1066 - - 1065 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringElectricalSupplies - entities: - - uid: 728 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 126 - - 731 - - 730 - - 729 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringToolbox - entities: - - uid: 723 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 724 - - 725 - - 726 + - 671 + - 670 + - 607 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8074,8 +7095,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -8092,14 +7113,14 @@ entities: showEnts: False occludes: True ents: - - 548 - - 711 - - 712 - - 710 - - 423 - - 713 - - 547 - 549 + - 547 + - 713 + - 423 + - 710 + - 712 + - 711 + - 548 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8115,8 +7136,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -8133,14 +7154,14 @@ entities: showEnts: False occludes: True ents: - - 563 - - 557 - - 554 - - 1300 - - 1299 - - 1298 - - 1297 - 707 + - 1297 + - 1298 + - 1299 + - 1300 + - 554 + - 557 + - 563 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8153,20 +7174,13 @@ entities: - pos: 27.5,8.5 parent: 1 type: Transform -- proto: CrateFreezer - entities: - - uid: 573 - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - air: volume: 200 immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -8178,25 +7192,11 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1255 - - 502 - - 1256 - - 505 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateFunArtSupplies +- proto: CrateFreezer entities: - - uid: 226 + - uid: 573 components: - - pos: -0.5,7.5 + - pos: 35.5,9.5 parent: 1 type: Transform - air: @@ -8204,8 +7204,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -8222,15 +7222,22 @@ entities: showEnts: False occludes: True ents: - - 1443 - - 770 - - 480 - - 607 + - 505 + - 1256 + - 502 + - 1255 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer +- proto: CrateFunArtSupplies + entities: + - uid: 724 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform - proto: CrateFunBoardGames entities: - uid: 2638 @@ -8243,8 +7250,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -8268,8 +7275,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -8286,16 +7293,16 @@ entities: showEnts: False occludes: True ents: - - 2581 - - 2582 - - 2583 - - 2584 - - 2585 - - 2586 - - 2587 - - 2588 - - 2589 - 2590 + - 2589 + - 2588 + - 2587 + - 2586 + - 2585 + - 2584 + - 2583 + - 2582 + - 2581 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8313,8 +7320,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -8331,9 +7338,9 @@ entities: showEnts: False occludes: True ents: - - 2647 - - 2648 - 2649 + - 2648 + - 2647 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8351,8 +7358,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -8396,8 +7403,8 @@ entities: immutable: False temperature: 293.14972 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -8414,9 +7421,9 @@ entities: showEnts: False occludes: True ents: - - 747 - - 746 - 745 + - 746 + - 747 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8424,18 +7431,25 @@ entities: type: ContainerContainer - proto: CrateServiceReplacementLights entities: - - uid: 762 + - uid: 226 components: - pos: -8.5,-0.5 parent: 1 type: Transform +- proto: CrateTrackingImplants + entities: + - uid: 2575 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform - air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.1496 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -8447,25 +7461,6 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 763 - - 764 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateTrackingImplants - entities: - - uid: 2575 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - proto: CrateTrashCart entities: - uid: 727 @@ -8478,8 +7473,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -8496,12 +7491,12 @@ entities: showEnts: False occludes: True ents: - - 757 - - 758 - - 756 - - 759 - - 760 - 761 + - 760 + - 759 + - 756 + - 758 + - 757 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8519,8 +7514,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -8537,19 +7532,19 @@ entities: showEnts: False occludes: True ents: - - 1143 - - 1140 - - 1139 - - 1137 - - 1138 - - 1135 - - 1136 - - 1141 - - 1134 - - 1146 - - 1144 - - 1145 - 1142 + - 1145 + - 1144 + - 1146 + - 1134 + - 1141 + - 1136 + - 1135 + - 1138 + - 1137 + - 1139 + - 1140 + - 1143 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -8602,42 +7597,6 @@ entities: type: ContainerContainer - proto: CrayonBox entities: - - uid: 480 - components: - - flags: InContainer - type: MetaData - - parent: 226 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 607 - components: - - flags: InContainer - type: MetaData - - parent: 226 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 770 - components: - - flags: InContainer - type: MetaData - - parent: 226 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1443 - components: - - flags: InContainer - type: MetaData - - parent: 226 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 2572 components: - pos: 33.65975,-2.2685633 @@ -9243,36 +8202,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: EncryptionKeyCommand - entities: - - uid: 1053 - components: - - pos: 15.510565,-6.386074 - parent: 1 - type: Transform - - uid: 1061 - components: - - pos: 14.504667,-10.37912 - parent: 1 - type: Transform -- proto: EnergyShield - entities: - - uid: 1027 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - blockingToggleActionEntity: 1028 - type: Blocking - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 1028 - type: ContainerContainer - - type: InsideEntityStorage - proto: ExGrenade entities: - uid: 1128 @@ -9583,24 +8512,18 @@ entities: pos: -11.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 471 components: - rot: 1.5707963267948966 rad pos: -9.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 807 components: - rot: 3.141592653589793 rad pos: -11.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1243 components: - pos: -8.5,5.5 @@ -9608,8 +8531,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1529 components: - rot: -1.5707963267948966 rad @@ -9690,8 +8611,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 389 components: - rot: 3.141592653589793 rad @@ -9700,63 +8619,47 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 443 components: - pos: -9.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 445 components: - rot: 1.5707963267948966 rad pos: -10.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 546 components: - rot: 1.5707963267948966 rad pos: -8.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 582 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 777 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 806 components: - rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 808 components: - rot: 1.5707963267948966 rad pos: -10.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 813 components: - pos: -7.5,4.5 @@ -9764,8 +8667,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 814 components: - pos: -7.5,5.5 @@ -9773,8 +8674,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 815 components: - pos: -8.5,3.5 @@ -9782,8 +8681,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 817 components: - rot: -1.5707963267948966 rad @@ -9792,8 +8689,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 818 components: - rot: -1.5707963267948966 rad @@ -9802,8 +8697,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 821 components: - rot: -1.5707963267948966 rad @@ -9812,8 +8705,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 822 components: - rot: -1.5707963267948966 rad @@ -9822,8 +8713,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 823 components: - rot: -1.5707963267948966 rad @@ -9832,8 +8721,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 825 components: - rot: -1.5707963267948966 rad @@ -9842,8 +8729,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 827 components: - rot: -1.5707963267948966 rad @@ -9852,8 +8737,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1202 components: - pos: 13.5,-9.5 @@ -9876,8 +8759,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1212 components: - rot: 1.5707963267948966 rad @@ -9915,8 +8796,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1449 components: - pos: -7.5,1.5 @@ -9924,8 +8803,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1450 components: - pos: -7.5,0.5 @@ -9982,8 +8859,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1458 components: - pos: -3.5,1.5 @@ -9991,8 +8866,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1459 components: - pos: -3.5,0.5 @@ -10043,8 +8916,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1466 components: - rot: -1.5707963267948966 rad @@ -10117,8 +8988,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1479 components: - rot: -1.5707963267948966 rad @@ -10303,8 +9172,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1508 components: - rot: -1.5707963267948966 rad @@ -10345,8 +9212,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1514 components: - rot: -1.5707963267948966 rad @@ -10467,8 +9332,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1537 components: - rot: 3.141592653589793 rad @@ -10477,8 +9340,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1538 components: - rot: 3.141592653589793 rad @@ -10503,8 +9364,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1541 components: - rot: 3.141592653589793 rad @@ -10537,8 +9396,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1545 components: - rot: 3.141592653589793 rad @@ -10606,8 +9463,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1555 components: - pos: 0.5,6.5 @@ -10615,8 +9470,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1556 components: - pos: 0.5,7.5 @@ -10759,8 +9612,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1577 components: - rot: 3.141592653589793 rad @@ -10833,8 +9684,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1587 components: - rot: 3.141592653589793 rad @@ -10875,8 +9724,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1593 components: - rot: 3.141592653589793 rad @@ -10901,8 +9748,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1597 components: - rot: 3.141592653589793 rad @@ -10959,8 +9804,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1605 components: - rot: 3.141592653589793 rad @@ -11009,8 +9852,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1612 components: - rot: 1.5707963267948966 rad @@ -11122,8 +9963,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1631 components: - pos: 37.5,5.5 @@ -11233,8 +10072,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1652 components: - rot: -1.5707963267948966 rad @@ -11456,8 +10293,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1684 components: - rot: -1.5707963267948966 rad @@ -11506,8 +10341,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1691 components: - rot: 3.141592653589793 rad @@ -11516,8 +10349,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1692 components: - rot: 3.141592653589793 rad @@ -11563,16 +10394,12 @@ entities: pos: -9.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 804 components: - rot: -1.5707963267948966 rad pos: -11.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1271 components: - rot: 1.5707963267948966 rad @@ -11581,8 +10408,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1272 components: - rot: 1.5707963267948966 rad @@ -11591,8 +10416,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1273 components: - rot: -1.5707963267948966 rad @@ -11601,8 +10424,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1274 components: - rot: -1.5707963267948966 rad @@ -11611,8 +10432,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1275 components: - rot: -1.5707963267948966 rad @@ -11621,8 +10440,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1277 components: - pos: -3.5,2.5 @@ -11630,8 +10447,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1279 components: - pos: -4.5,1.5 @@ -11639,8 +10454,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1468 components: - rot: 3.141592653589793 rad @@ -11908,8 +10721,6 @@ entities: - pos: 22.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1706 @@ -11917,8 +10728,6 @@ entities: - pos: 26.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1707 @@ -11926,8 +10735,6 @@ entities: - pos: 34.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1708 @@ -11935,8 +10742,6 @@ entities: - pos: 38.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1709 @@ -11945,8 +10750,6 @@ entities: pos: 41.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1710 @@ -11955,8 +10758,6 @@ entities: pos: 41.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1711 @@ -11965,8 +10766,6 @@ entities: pos: 39.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1712 @@ -11975,8 +10774,6 @@ entities: pos: 33.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1713 @@ -11985,8 +10782,6 @@ entities: pos: 33.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1714 @@ -11995,8 +10790,6 @@ entities: pos: 36.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1715 @@ -12005,8 +10798,6 @@ entities: pos: 34.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1716 @@ -12015,8 +10806,6 @@ entities: pos: 12.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1717 @@ -12025,8 +10814,6 @@ entities: pos: 14.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1718 @@ -12035,8 +10822,6 @@ entities: pos: 16.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1719 @@ -12044,8 +10829,6 @@ entities: - pos: 14.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1720 @@ -12053,8 +10836,6 @@ entities: - pos: 10.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1721 @@ -12062,8 +10843,6 @@ entities: - pos: 4.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1722 @@ -12071,8 +10850,6 @@ entities: - pos: 6.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1723 @@ -12080,8 +10857,6 @@ entities: - pos: 8.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1724 @@ -12089,8 +10864,6 @@ entities: - pos: 0.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1725 @@ -12099,24 +10872,18 @@ entities: pos: -9.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1726 components: - rot: 3.141592653589793 rad pos: -8.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1727 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1728 @@ -12125,8 +10892,6 @@ entities: pos: 21.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -12137,16 +10902,12 @@ entities: pos: -7.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1730 components: - rot: 3.141592653589793 rad pos: -3.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1731 @@ -12155,15 +10916,11 @@ entities: pos: -8.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1732 components: - pos: 1.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1733 @@ -12171,8 +10928,6 @@ entities: - pos: 5.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1734 @@ -12180,8 +10935,6 @@ entities: - pos: 9.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1735 @@ -12189,8 +10942,6 @@ entities: - pos: 13.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1736 @@ -12199,8 +10950,6 @@ entities: pos: 16.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1737 @@ -12209,8 +10958,6 @@ entities: pos: 21.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1738 @@ -12218,8 +10965,6 @@ entities: - pos: 20.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1739 @@ -12227,8 +10972,6 @@ entities: - pos: 27.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1740 @@ -12236,8 +10979,6 @@ entities: - pos: 35.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1741 @@ -12245,8 +10986,6 @@ entities: - pos: 33.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1742 @@ -12254,8 +10993,6 @@ entities: - pos: 37.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1743 @@ -12264,8 +11001,6 @@ entities: pos: 40.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1744 @@ -12274,8 +11009,6 @@ entities: pos: 41.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1745 @@ -12284,8 +11017,6 @@ entities: pos: 39.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1746 @@ -12294,8 +11025,6 @@ entities: pos: 33.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1747 @@ -12304,8 +11033,6 @@ entities: pos: 33.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1748 @@ -12314,8 +11041,6 @@ entities: pos: 38.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1749 @@ -12324,8 +11049,6 @@ entities: pos: 12.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1750 @@ -12334,8 +11057,6 @@ entities: pos: 13.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1751 @@ -12344,8 +11065,6 @@ entities: pos: 8.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1752 @@ -12354,8 +11073,6 @@ entities: pos: 38.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVolumePump @@ -13050,60 +11767,6 @@ entities: type: Transform - proto: HandheldGPSBasic entities: - - uid: 1003 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1005 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1016 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1018 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1022 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1032 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 1042 components: - pos: 14.492559,-0.4183817 @@ -13342,17 +12005,6 @@ entities: pos: 7.5,10.5 parent: 1 type: Transform -- proto: JetpackCaptainFilled - entities: - - uid: 141 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: JetpackMiniFilled entities: - uid: 1046 @@ -13365,149 +12017,6 @@ entities: - pos: 14.492559,-0.4183817 parent: 1 type: Transform -- proto: JetpackSecurityFilled - entities: - - uid: 894 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - toggleActionEntity: 910 - type: GasTank - - toggleActionEntity: 909 - type: Jetpack - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 909 - - 910 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 915 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - toggleActionEntity: 917 - type: GasTank - - toggleActionEntity: 916 - type: Jetpack - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 916 - - 917 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 919 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - toggleActionEntity: 921 - type: GasTank - - toggleActionEntity: 920 - type: Jetpack - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 920 - - 921 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 926 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - toggleActionEntity: 928 - type: GasTank - - toggleActionEntity: 927 - type: Jetpack - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 927 - - 928 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 934 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - toggleActionEntity: 936 - type: GasTank - - toggleActionEntity: 935 - type: Jetpack - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 935 - - 936 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 942 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - toggleActionEntity: 944 - type: GasTank - - toggleActionEntity: 943 - type: Jetpack - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 943 - - 944 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 1309 - components: - - flags: InContainer - type: MetaData - - parent: 160 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1313 - components: - - flags: InContainer - type: MetaData - - parent: 165 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1318 - components: - - flags: InContainer - type: MetaData - - parent: 670 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: KitchenKnife entities: - uid: 1255 @@ -13640,18 +12149,25 @@ entities: type: Transform - proto: LockerBrigmedicFilled entities: - - uid: 1001 + - uid: 165 components: - pos: 42.5,-2.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 +- proto: LockerEvidence + entities: + - uid: 966 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -13663,13 +12179,6 @@ entities: - 0 - 0 type: EntityStorage -- proto: LockerEvidence - entities: - - uid: 966 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - uid: 971 components: - pos: 3.5,1.5 @@ -13692,160 +12201,35 @@ entities: type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 1023 + - uid: 126 components: - pos: 40.5,4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1024 - - 203 - - 1025 - - 1026 - - 1027 - - 1029 - - 1030 - - 908 - - 1031 - - 127 - - 141 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerSecurityFilled entities: - - uid: 1014 + - uid: 728 components: - pos: 33.5,-4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 1017 + - uid: 729 components: - pos: 33.5,-0.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 2417 + - uid: 730 components: - pos: 39.5,-4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 1004 + - uid: 672 components: - pos: 44.5,2.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1283 - - 1282 - - 1280 - - 1281 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: MagazineBoxAntiMateriel entities: - uid: 1099 @@ -14076,17 +12460,6 @@ entities: pos: -5.5,-0.5 parent: 1 type: Transform -- proto: Multitool - entities: - - uid: 126 - components: - - flags: InContainer - type: MetaData - - parent: 728 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: NitrogenCanister entities: - uid: 837 @@ -14099,198 +12472,18 @@ entities: - pos: -7.5,5.5 parent: 1 type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 911 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 913 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 924 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - toggleActionEntity: 2420 - type: GasTank - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 2420 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 931 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 938 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 946 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1308 - components: - - flags: InContainer - type: MetaData - - parent: 160 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1314 - components: - - flags: InContainer - type: MetaData - - parent: 165 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1316 - components: - - flags: InContainer - type: MetaData - - parent: 670 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: OxygenCanister entities: - uid: 404 components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 972 - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- proto: OxygenTankFilled - entities: - - uid: 893 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 914 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 922 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - toggleActionEntity: 2419 - type: GasTank - - canCollide: False - type: Physics - - containers: - ProvidedActionContainer: !type:Container - ents: - - 2419 - type: ContainerContainer - - type: InsideEntityStorage - - uid: 930 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 939 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 947 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1310 - components: - - flags: InContainer - type: MetaData - - parent: 160 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1311 - components: - - flags: InContainer - type: MetaData - - parent: 165 + - pos: -10.5,7.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1317 + - uid: 972 components: - - flags: InContainer - type: MetaData - - parent: 670 + - pos: -7.5,3.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: PackPaperRollingFilters entities: - uid: 2019 @@ -14457,60 +12650,6 @@ entities: type: Transform - proto: PinpointerUniversal entities: - - uid: 1002 - components: - - flags: InContainer - type: MetaData - - parent: 674 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1006 - components: - - flags: InContainer - type: MetaData - - parent: 675 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1015 - components: - - flags: InContainer - type: MetaData - - parent: 672 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1019 - components: - - flags: InContainer - type: MetaData - - parent: 671 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1021 - components: - - flags: InContainer - type: MetaData - - parent: 2418 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1033 - components: - - flags: InContainer - type: MetaData - - parent: 676 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 1043 components: - pos: 14.476934,-0.4496317 @@ -14662,226 +12801,168 @@ entities: - pos: 19.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2421 components: - pos: -4.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2422 components: - rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2423 components: - rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2425 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2426 components: - rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2427 components: - rot: -1.5707963267948966 rad pos: -7.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2428 components: - rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2429 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2430 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2431 components: - rot: 1.5707963267948966 rad pos: 12.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2432 components: - rot: 1.5707963267948966 rad pos: 12.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2433 components: - rot: 3.141592653589793 rad pos: 14.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2434 components: - rot: -1.5707963267948966 rad pos: 16.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2435 components: - pos: 14.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2436 components: - pos: 12.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2437 components: - rot: 1.5707963267948966 rad pos: 12.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2438 components: - rot: -1.5707963267948966 rad pos: 16.5,-14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2439 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2440 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2441 components: - rot: 3.141592653589793 rad pos: 34.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2442 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2461 components: - pos: 33.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2462 components: - rot: 3.141592653589793 rad pos: 37.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2463 components: - pos: 37.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2469 components: - rot: 3.141592653589793 rad pos: 21.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2470 components: - pos: 21.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2471 components: - rot: 3.141592653589793 rad pos: 25.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2659 components: - rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightColoredFrostyBlue entities: - uid: 2574 @@ -14890,128 +12971,96 @@ entities: pos: -1.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2592 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2593 components: - rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2594 components: - rot: 1.5707963267948966 rad pos: 22.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2595 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2596 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2597 components: - rot: -1.5707963267948966 rad pos: 18.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2598 components: - rot: -1.5707963267948966 rad pos: 24.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2599 components: - rot: -1.5707963267948966 rad pos: 30.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2600 components: - rot: 1.5707963267948966 rad pos: 28.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2601 components: - rot: 1.5707963267948966 rad pos: 40.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2602 components: - rot: -1.5707963267948966 rad pos: -11.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2603 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2604 components: - rot: 1.5707963267948966 rad pos: 24.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2612 components: - rot: 3.141592653589793 rad pos: -8.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2613 components: - rot: 3.141592653589793 rad pos: 37.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightColoredRed entities: - uid: 2467 @@ -15020,16 +13069,12 @@ entities: pos: -9.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 2468 components: - rot: -1.5707963267948966 rad pos: 38.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 2445 @@ -15213,6 +13258,11 @@ entities: - pos: 35.5,6.5 parent: 1 type: Transform + - uid: 731 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform - uid: 772 components: - pos: 14.5,-0.5 @@ -15938,20 +13988,6 @@ entities: - pos: 15.928546,-14.512246 parent: 1 type: Transform -- proto: RubberStampHos - entities: - - uid: 2404 - components: - - pos: 16.209797,-14.215371 - parent: 1 - type: Transform -- proto: RubberStampWarden - entities: - - uid: 2403 - components: - - pos: 16.225422,-14.512246 - parent: 1 - type: Transform - proto: ScreenTimer entities: - uid: 149 @@ -16599,327 +14635,59 @@ entities: - pos: -10.5,0.5 parent: 1 type: Transform -- proto: SuitStorageBase +- proto: SuitStorageBrigmedic entities: - - uid: 160 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1307 - - 1308 - - 1309 - - 1310 - - 166 - type: ContainerContainer - - uid: 165 + - uid: 726 components: - - pos: 16.5,-4.5 + - pos: 40.5,-1.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1311 - - 169 - - 1312 - - 1313 - - 1314 - type: ContainerContainer - - uid: 670 +- proto: SuitStorageHOS + entities: + - uid: 169 components: - - pos: 14.5,-4.5 + - pos: 37.5,5.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 999 - - 1318 - - 1317 - - 1316 - - 1315 - type: ContainerContainer - - uid: 671 +- proto: SuitStorageSec + entities: + - uid: 127 components: - pos: 34.5,-0.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1019 - - 1018 - - 774 - - 894 - - 893 - - 773 - - 911 - type: ContainerContainer - - uid: 672 + - uid: 141 components: - pos: 34.5,-4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1015 - - 1016 - - 918 - - 912 - - 913 - - 914 - - 915 - type: ContainerContainer + - uid: 160 + components: + - pos: 38.5,-4.5 + parent: 1 + type: Transform - uid: 674 components: - - pos: 40.5,-1.5 + - pos: 12.5,-4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1003 - - 1002 - - 932 - - 926 - - 929 - - 930 - - 931 - type: ContainerContainer - uid: 675 components: - - pos: 40.5,2.5 + - pos: 16.5,-4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1006 - - 1005 - - 939 - - 933 - - 934 - - 937 - - 938 - type: ContainerContainer - uid: 676 components: - - pos: 37.5,5.5 + - pos: 14.5,-4.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14972 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1033 - - 1032 - - 946 - - 945 - - 942 - - 941 - - 940 - - 947 - type: ContainerContainer - - uid: 2418 +- proto: SuitStorageWarden + entities: + - uid: 166 components: - - pos: 38.5,-4.5 + - pos: 40.5,2.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 925 - - 919 - - 924 - - 1021 - - 1022 - - 923 - - 922 - type: ContainerContainer - proto: SurveillanceCameraRouterSecurity entities: - uid: 955 @@ -18251,6 +16019,11 @@ entities: pos: -4.5,0.5 parent: 1 type: Transform + - uid: 170 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform - uid: 172 components: - pos: -5.5,11.5 @@ -18610,6 +16383,36 @@ entities: - pos: 11.5,6.5 parent: 1 type: Transform + - uid: 294 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform - uid: 302 components: - rot: 1.5707963267948966 rad @@ -19496,43 +17299,6 @@ entities: pos: 42.5,5.5 parent: 1 type: Transform -- proto: WallPlastitaniumIndestructible - entities: - - uid: 170 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: 3.5,10.5 - parent: 1 - type: Transform - - uid: 296 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - proto: WallWeaponCapacitorRecharger entities: - uid: 665 @@ -19557,8 +17323,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -19575,21 +17341,21 @@ entities: showEnts: False occludes: True ents: - - 1425 - - 1424 - - 1423 - - 1414 - - 1415 - - 1416 - - 1417 - - 1418 - - 1419 - - 1420 - - 1421 - - 1422 - - 1426 - - 1427 - 1428 + - 1427 + - 1426 + - 1422 + - 1421 + - 1420 + - 1419 + - 1418 + - 1417 + - 1416 + - 1415 + - 1414 + - 1423 + - 1424 + - 1425 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -19602,11 +17368,47 @@ entities: - pos: 9.5,7.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 384 components: - pos: 5.5,7.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: WarningN2 entities: - uid: 1323 @@ -19798,17 +17600,6 @@ entities: - pos: 32.822174,6.283203 parent: 1 type: Transform -- proto: WeaponPulsePistol - entities: - - uid: 1030 - components: - - flags: InContainer - type: MetaData - - parent: 1023 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: WeaponRevolverMateba entities: - uid: 1081 diff --git a/Resources/Maps/Shuttles/garden.yml b/Resources/Maps/Shuttles/garden.yml new file mode 100644 index 00000000000..aea8475f72f --- /dev/null +++ b/Resources/Maps/Shuttles/garden.yml @@ -0,0 +1,1929 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 43: FloorGlass + 56: FloorHydro + 71: FloorRGlass + 84: FloorSteel + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.46875,-0.44527435 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: cQAAAAAAKwAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYQAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAYQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOAAAAAAARwAAAAAAOAAAAAAAcQAAAAAAcAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 14: -4,3 + 28: 5,3 + 29: 3,-1 + 30: 5,-3 + 47: -1,2 + 48: 1,2 + 52: 3,5 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 19: -5,-1 + 20: -4,-3 + 22: -3,-2 + 23: -3,-1 + 26: -5,-1 + 27: 4,3 + 37: 3,0 + 42: 5,-1 + 46: 2,3 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 15: -5,3 + 16: -3,1 + 18: -3,-1 + 21: -5,-3 + 24: -5,2 + 31: 5,1 + 32: 5,2 + 33: 3,-2 + 34: 5,3 + 41: 5,-1 + 45: -2,3 + 50: 1,8 + 51: 3,6 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 17: -5,1 + 25: -5,2 + 35: 5,0 + 36: 5,-2 + 38: -3,1 + 39: 3,1 + 40: 5,-1 + 43: -2,2 + 44: 2,2 + 49: 0,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 0: -2,4 + 9: -2,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 6: -1,3 + 7: 0,3 + 8: 1,3 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 3: 1,6 + 4: 0,6 + 5: -1,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 1: 2,5 + 2: 2,4 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNe + decals: + 12: -2,3 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNw + decals: + 13: 2,3 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSe + decals: + 11: -2,6 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSw + decals: + 10: 2,6 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 119 + 1,0: + 0: 30583 + 1,1: + 0: 4407 + 0,-2: + 0: 4352 + 0,-1: + 0: 64989 + 1,-1: + 0: 30583 + -2,0: + 0: 52428 + -2,1: + 0: 140 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 204 + -2,-1: + 0: 52428 + -1,-1: + 0: 63351 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Garden + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + - 105 + type: DeviceNetwork + - devices: + - 107 + - 105 + type: DeviceList + - uid: 141 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 108 + - 106 + type: DeviceNetwork + - devices: + - 108 + - 106 + type: DeviceList + - uid: 142 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 109 + - 104 + type: DeviceNetwork + - devices: + - 109 + - 104 + type: DeviceList +- proto: AirCanister + entities: + - uid: 139 + components: + - anchored: True + pos: 3.5,6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockExternalGlass + entities: + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 191 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 213 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 185 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 196 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 188 + components: + - pos: -0.4136287,4.5109863 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 146 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 147 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 259 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: FoodSaladFruit + entities: + - uid: 258 + components: + - pos: 0.4972031,4.692948 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 123 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 113 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 124 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 125 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 127 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 129 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 132 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 137 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 130 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - targetPressure: 101.3 + type: GasPressurePump + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 142 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 105 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 140 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 106 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 141 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 140 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 108 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 141 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 109 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 142 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 156 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 144 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 145 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: LargeBeaker + entities: + - uid: 145 + components: + - flags: InContainer + type: MetaData + - parent: 144 + type: Transform + - canCollide: False + type: Physics +- proto: LockerBotanistFilled + entities: + - uid: 172 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 143 + components: + - anchored: True + pos: 3.5,5.5 + parent: 1 + type: Transform + - storage: + Plasma: 3000 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage + - type: ItemCooldown +- proto: PosterLegitBotanyFood + entities: + - uid: 257 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitFruitBowl + entities: + - uid: 256 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 181 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 180 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 261 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 262 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 190 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 153 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 154 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 165 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 3 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 5 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 263 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 149 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/honker.yml b/Resources/Maps/Shuttles/honker.yml index a983f54df3b..1622be5e0bf 100644 --- a/Resources/Maps/Shuttles/honker.yml +++ b/Resources/Maps/Shuttles/honker.yml @@ -3,11 +3,11 @@ meta: postmapinit: false tilemap: 0: Space - 26: FloorDark - 76: FloorShuttleOrange - 78: FloorShuttleRed - 111: Lattice - 112: Plating + 27: FloorDark + 77: FloorShuttleOrange + 79: FloorShuttleRed + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -20,19 +20,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: cAAAAAAATgAAAAAAGgAAAAAATgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATgAAAAAAGgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAATwAAAAAAGwAAAAAATwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAATwAAAAAAGwAAAAAATwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAATQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAATQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAATgAAAAAAGgAAAAAATgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATwAAAAAAGwAAAAAATwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -59,34 +59,34 @@ entities: data: tiles: 0,0: - 0: 61183 - 1: 4352 + 0: 65535 0,1: 0: 65279 0,2: 0: 65535 1,0: - 0: 8755 - 1: 4352 + 0: 13107 1,1: - 0: 12339 + 0: 12307 + 1: 32 1,2: 0: 30579 0,-1: 0: 61440 1,-1: - 0: 12288 + 0: 4096 + 1: 8192 -1,-1: - 0: 32768 + 1: 32768 -1,2: 0: 52424 -1,0: 0: 34952 -1,1: - 0: 32904 + 0: 32776 + 1: 128 0,3: - 0: 253 - 1: 2 + 0: 255 1,3: 0: 119 -1,3: @@ -108,10 +108,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -126,6 +126,13 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 290 + components: + - pos: 4.5,10.5 + parent: 2 + type: Transform - proto: AirlockExternal entities: - uid: 146 @@ -162,7 +169,8 @@ entities: entities: - uid: 152 components: - - pos: 3.5,6.5 + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 parent: 2 type: Transform - proto: AtmosDeviceFanTiny @@ -179,6 +187,32 @@ entities: pos: 1.5,-0.5 parent: 2 type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 294 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + type: Transform - proto: BananaSeeds entities: - uid: 77 @@ -322,24 +356,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 130 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 132 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 135 components: - flags: InContainer @@ -446,8 +462,6 @@ entities: - pos: 3.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 166 components: - pos: 2.5,6.5 @@ -543,8 +557,6 @@ entities: - pos: 0.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 185 components: - pos: 3.5,-0.5 @@ -555,36 +567,26 @@ entities: - pos: 4.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 187 components: - pos: 4.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 188 components: - pos: 3.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 189 components: - pos: 1.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 190 components: - pos: 0.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - uid: 154 @@ -597,8 +599,6 @@ entities: - pos: 6.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 156 @@ -606,8 +606,6 @@ entities: - pos: 6.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 157 components: - pos: 5.5,11.5 @@ -643,15 +641,11 @@ entities: - pos: 3.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 164 components: - pos: 3.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: ClothingBackpackDuffelClown entities: - uid: 112 @@ -672,15 +666,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 128 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 142 components: - flags: InContainer @@ -746,24 +731,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 127 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 133 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 138 components: - flags: InContainer @@ -882,24 +849,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 129 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 131 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 141 components: - flags: InContainer @@ -1003,24 +952,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 125 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 126 - components: - - flags: InContainer - type: MetaData - - parent: 124 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 136 components: - flags: InContainer @@ -1039,17 +970,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClownPDA - entities: - - uid: 99 - components: - - flags: InContainer - type: MetaData - - parent: 92 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClownRecorder entities: - uid: 206 @@ -1327,6 +1247,13 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage +- proto: EmergencyLight + entities: + - uid: 295 + components: + - pos: 2.5,12.5 + parent: 2 + type: Transform - proto: FaxMachineShip entities: - uid: 260 @@ -1342,6 +1269,232 @@ entities: pos: 2.5,7.5 parent: 2 type: Transform +- proto: GasPassiveVent + entities: + - uid: 280 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 271 + components: + - pos: 2.5,11.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 279 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 283 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 269 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 273 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 275 + components: + - pos: 3.5,10.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 263 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 2 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 73 @@ -1445,8 +1598,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -1463,18 +1616,17 @@ entities: showEnts: False occludes: True ents: - - 93 - - 94 - - 95 - - 96 - - 97 - - 98 - - 99 - - 100 - - 101 - - 102 - - 206 - 261 + - 206 + - 102 + - 101 + - 100 + - 98 + - 97 + - 96 + - 95 + - 94 + - 93 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -1504,8 +1656,7 @@ entities: - storage: Plasma: 1500 type: MaterialStorage - - endTime: 0 - type: InsertingMaterialStorage + - type: InsertingMaterialStorage - proto: PosterContrabandClown entities: - uid: 197 @@ -1521,68 +1672,50 @@ entities: pos: 0.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 200 components: - rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 201 components: - pos: 3.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 202 components: - pos: 1.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 203 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 204 components: - pos: -0.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 205 components: - pos: 5.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 207 components: - rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 208 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: RevolverCapGun entities: - uid: 149 @@ -1889,6 +2022,13 @@ entities: - pos: 4.5,10.5 parent: 2 type: Transform +- proto: VendingMachineTheater + entities: + - uid: 99 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform - proto: WallShuttle entities: - uid: 3 @@ -2218,48 +2358,6 @@ entities: occludes: True ent: null type: ContainerContainer - - uid: 124 - components: - - pos: 0.5,9.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 125 - - 126 - - 127 - - 128 - - 129 - - 130 - - 131 - - 132 - - 133 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - uid: 134 components: - pos: 3.5,8.5 diff --git a/Resources/Maps/Shuttles/hospitaller.yml b/Resources/Maps/Shuttles/hospitaller.yml index 0935e4caab3..044befbd391 100644 --- a/Resources/Maps/Shuttles/hospitaller.yml +++ b/Resources/Maps/Shuttles/hospitaller.yml @@ -3,12 +3,12 @@ meta: postmapinit: false tilemap: 0: Space - 26: FloorDark - 53: FloorHull - 61: FloorMetalDiamond - 95: FloorTechMaint - 99: FloorWhite - 111: Lattice + 27: FloorDark + 54: FloorHull + 62: FloorMetalDiamond + 96: FloorTechMaint + 100: FloorWhite + 112: Lattice entities: - proto: "" entities: @@ -22,19 +22,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: PQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAGgAAAAACNQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAANQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAACNgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAANgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAGgAAAAAAGgAAAAABNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAAAGwAAAAABNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADYwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -66,12 +66,12 @@ entities: 18: 1,-4 19: 0,-4 20: -1,-4 - 22: -1,-3 - 23: 0,-3 - 25: 1,-3 - 26: 1,-4 - 27: 0,-4 - 28: -1,-4 + 21: -1,-3 + 22: 0,-3 + 23: 1,-3 + 24: 1,-4 + 25: 0,-4 + 26: -1,-4 - node: color: '#C1463E67' id: CheckerNESW @@ -944,31 +944,7 @@ entities: - pos: -0.5,-1.5 parent: 1 type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 121 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 122 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 123 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 124 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumIndestructible +- proto: WallPlastitanium entities: - uid: 125 components: @@ -1077,6 +1053,30 @@ entities: pos: 2.5,-1.5 parent: 1 type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 121 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform - proto: WallWeaponCapacitorRecharger entities: - uid: 144 diff --git a/Resources/Maps/Shuttles/inquisitor.yml b/Resources/Maps/Shuttles/inquisitor.yml index 32c1de3d50e..a6035c0468a 100644 --- a/Resources/Maps/Shuttles/inquisitor.yml +++ b/Resources/Maps/Shuttles/inquisitor.yml @@ -144,27 +144,35 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 65527 + 1: 8 0,-1: - 0: 65535 + 0: 61439 + 2: 4096 -1,-1: - 0: 65535 + 0: 65407 + 3: 128 -1,0: - 0: 4095 + 0: 3967 + 4: 128 0,1: - 0: 4095 + 0: 4063 + 5: 32 1,0: 0: 65535 1,1: - 0: 3310 + 0: 3182 + 3: 128 2,0: 0: 61951 2,1: 0: 4095 0,-2: - 0: 65535 + 0: 65503 + 5: 32 1,-2: - 0: 65260 + 0: 65132 + 6: 128 1,-1: 0: 65535 2,-2: @@ -191,6 +199,96 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.81398 + - 82.06227 + - 3.3618784E-05 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1316 + moles: + - 21.809319 + - 82.04652 + - 0.00051328994 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.685034 + - 81.57705 + - 3.522008E-06 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.8143 + - 82.06333 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -217,58 +315,6 @@ entities: type: Transform - container: 2 type: InstantAction - - uid: 9 - components: - - flags: InContainer - type: MetaData - - parent: 8 - type: Transform - - container: 8 - type: InstantAction - - uid: 10 - components: - - flags: InContainer - type: MetaData - - parent: 8 - type: Transform - - container: 8 - type: InstantAction - - uid: 25 - components: - - flags: InContainer - type: MetaData - - parent: 24 - type: Transform - - container: 24 - type: InstantAction - - uid: 26 - components: - - flags: InContainer - type: MetaData - - parent: 24 - type: Transform - - container: 24 - type: InstantAction -- proto: ActionToggleSuitPiece - entities: - - uid: 18 - components: - - flags: InContainer - type: MetaData - - parent: 17 - type: Transform - - container: 17 - entIcon: 19 - type: InstantAction - - uid: 34 - components: - - flags: InContainer - type: MetaData - - parent: 33 - type: Transform - - container: 33 - entIcon: 35 - type: InstantAction - proto: ActionVendingThrow entities: - uid: 51 @@ -2359,8 +2405,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -2379,11 +2425,11 @@ entities: ents: - 94 - 95 - - 96 - 102 - 103 - 104 - 105 + - 9 - 106 paper_label: !type:ContainerSlot showEnts: False @@ -2400,8 +2446,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -2418,14 +2464,14 @@ entities: showEnts: False occludes: True ents: - - 120 - - 119 - - 118 - - 117 - - 111 - - 110 - - 109 - 108 + - 109 + - 110 + - 117 + - 118 + - 119 + - 10 + - 120 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -2439,74 +2485,18 @@ entities: pos: -0.5,-3.5 parent: 1 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17 - - 20 - - 7 - - 22 - - 21 - type: ContainerContainer - - uid: 32 + - uid: 8 components: - pos: -0.5,2.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7458104 - - 6.567589 - - 3.8282697E-06 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 33 - - 36 - - 37 - - 49 - type: ContainerContainer - - dnas: [] - fibers: - - black insulative fibers - fingerprints: [] - type: Forensics - proto: ClosetWallFireFilledRandom entities: - - uid: 23 + - uid: 7 components: - - rot: 1.5707963267948966 rad - pos: 6.5,5.5 + - pos: 6.5,5.5 parent: 1 type: Transform - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 29 - - 24 - - 28 - - 31 - - 30 - type: ContainerContainer - proto: ClosetWallOrange entities: - uid: 242 @@ -2578,115 +2568,6 @@ entities: - pos: 6.4939165,4.6486845 parent: 1 type: Transform -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 19 - components: - - flags: InContainer - type: MetaData - - parent: 17 - type: Transform - - canCollide: False - type: Physics - - AttachedUid: 17 - type: AttachedClothing - - uid: 35 - components: - - flags: InContainer - type: MetaData - - parent: 33 - type: Transform - - canCollide: False - type: Physics - - AttachedUid: 33 - type: AttachedClothing -- proto: ClothingHeadHelmetFire - entities: - - uid: 24 - components: - - flags: InContainer - type: MetaData - - parent: 23 - type: Transform - - selfToggleActionEntity: 26 - toggleActionEntity: 25 - type: HandheldLight - - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 27 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 25 - - 26 - type: ContainerContainer - - canCollide: False - type: Physics - - type: ActionsContainer - - actions: - - 26 - type: Actions - - type: InsideEntityStorage -- proto: ClothingMaskBreath - entities: - - uid: 12 - components: - - flags: InContainer - type: MetaData - - parent: 7 - type: Transform - - canCollide: False - type: Physics - - uid: 13 - components: - - flags: InContainer - type: MetaData - - parent: 7 - type: Transform - - canCollide: False - type: Physics - - uid: 20 - components: - - flags: InContainer - type: MetaData - - parent: 6 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 36 - components: - - flags: InContainer - type: MetaData - - parent: 32 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskBreathMedical - entities: - - uid: 38 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics -- proto: ClothingMaskGas - entities: - - uid: 28 - components: - - flags: InContainer - type: MetaData - - parent: 23 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingOuterHardsuitEVAPrisoner entities: - uid: 248 @@ -2707,67 +2588,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: ClothingOuterSuitEmergency - entities: - - uid: 17 - components: - - flags: InContainer - type: MetaData - - parent: 6 - type: Transform - - clothingUid: 19 - actionEntity: 18 - type: ToggleableClothing - - containers: - toggleable-clothing: !type:ContainerSlot - showEnts: False - occludes: True - ent: 19 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 18 - type: ContainerContainer - - canCollide: False - type: Physics - - type: ActionsContainer - - type: InsideEntityStorage - - uid: 33 - components: - - flags: InContainer - type: MetaData - - parent: 32 - type: Transform - - clothingUid: 35 - actionEntity: 34 - type: ToggleableClothing - - containers: - toggleable-clothing: !type:ContainerSlot - showEnts: False - occludes: True - ent: 35 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 34 - type: ContainerContainer - - canCollide: False - type: Physics - - type: ActionsContainer - - type: InsideEntityStorage -- proto: ClothingOuterSuitFire - entities: - - uid: 29 - components: - - flags: InContainer - type: MetaData - - parent: 23 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 249 @@ -2896,17 +2716,7 @@ entities: components: - flags: InContainer type: MetaData - - parent: 256 - type: Transform - - canCollide: False - type: Physics -- proto: CrowbarRed - entities: - - uid: 14 - components: - - flags: InContainer - type: MetaData - - parent: 7 + - parent: 256 type: Transform - canCollide: False type: Physics @@ -3093,44 +2903,6 @@ entities: - startingCharge: 6078.6914 type: Battery - type: ActiveEmergencyLight -- proto: EmergencyMedipen - entities: - - uid: 39 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics -- proto: EmergencyOxygenTankFilled - entities: - - uid: 21 - components: - - flags: InContainer - type: MetaData - - parent: 6 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 40 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 49 - components: - - flags: InContainer - type: MetaData - - parent: 32 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: EuphoniumInstrument entities: - uid: 117 @@ -3162,17 +2934,6 @@ entities: - pos: 10.5,-6.5 parent: 1 type: Transform -- proto: FireExtinguisher - entities: - - uid: 30 - components: - - flags: InContainer - type: MetaData - - parent: 23 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: FirelockElectronics entities: - uid: 282 @@ -3306,53 +3067,6 @@ entities: - 54 - 60 type: DeviceNetwork -- proto: FlashlightLantern - entities: - - uid: 8 - components: - - flags: InContainer - type: MetaData - - parent: 7 - type: Transform - - selfToggleActionEntity: 10 - toggleActionEntity: 9 - type: HandheldLight - - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 11 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 9 - - 10 - type: ContainerContainer - - canCollide: False - type: Physics - - type: ActionsContainer - - actions: - - 10 - type: Actions -- proto: FoodSnackChocolate - entities: - - uid: 15 - components: - - flags: InContainer - type: MetaData - - parent: 7 - type: Transform - - canCollide: False - type: Physics - - uid: 16 - components: - - flags: InContainer - type: MetaData - - parent: 7 - type: Transform - - canCollide: False - type: Physics - proto: FoodSnackSus entities: - uid: 94 @@ -5042,8 +4756,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8863183 - - 7.09615 + - 1.8968958 + - 7.1359415 - 0 - 0 - 0 @@ -5067,9 +4781,9 @@ entities: immutable: False temperature: 293.13718 moles: - - 1.8859696 - - 7.0949974 - - 3.6542155E-05 + - 1.8968678 + - 7.1358495 + - 2.9233722E-06 - 0 - 0 - 0 @@ -5085,9 +4799,9 @@ entities: showEnts: False occludes: True ents: - - 248 - - 249 - 250 + - 249 + - 248 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -5145,159 +4859,21 @@ entities: type: Transform - proto: Matchbox entities: - - uid: 96 + - uid: 9 components: - flags: InContainer type: MetaData - parent: 93 type: Transform - - storageUsed: 5 - type: Storage - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 97 - - 98 - - 99 - - 100 - - 101 - type: ContainerContainer - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 111 + - uid: 10 components: - flags: InContainer type: MetaData - parent: 107 type: Transform - - storageUsed: 5 - type: Storage - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 112 - - 113 - - 114 - - 115 - - 116 - type: ContainerContainer - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Matchstick - entities: - - uid: 97 - components: - - flags: InContainer - type: MetaData - - parent: 96 - type: Transform - - canCollide: False - type: Physics - - uid: 98 - components: - - flags: InContainer - type: MetaData - - parent: 96 - type: Transform - - canCollide: False - type: Physics - - uid: 99 - components: - - flags: InContainer - type: MetaData - - parent: 96 - type: Transform - - canCollide: False - type: Physics - - uid: 100 - components: - - flags: InContainer - type: MetaData - - parent: 96 - type: Transform - - canCollide: False - type: Physics - - uid: 101 - components: - - flags: InContainer - type: MetaData - - parent: 96 - type: Transform - - canCollide: False - type: Physics - - uid: 112 - components: - - flags: InContainer - type: MetaData - - parent: 111 - type: Transform - - canCollide: False - type: Physics - - uid: 113 - components: - - flags: InContainer - type: MetaData - - parent: 111 - type: Transform - - canCollide: False - type: Physics - - uid: 114 - components: - - flags: InContainer - type: MetaData - - parent: 111 - type: Transform - - canCollide: False - type: Physics - - uid: 115 - components: - - flags: InContainer - type: MetaData - - parent: 111 - type: Transform - - canCollide: False - type: Physics - - uid: 116 - components: - - flags: InContainer - type: MetaData - - parent: 111 - type: Transform - - canCollide: False - type: Physics -- proto: MedkitOxygenFilled - entities: - - uid: 37 - components: - - flags: InContainer - type: MetaData - - parent: 32 - type: Transform - - storageUsed: 28 - type: Storage - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 38 - - 40 - - 39 - - 48 - - 41 - - 42 - - 43 - - 44 - - 45 - - 46 - - 47 - type: ContainerContainer - canCollide: False type: Physics - type: InsideEntityStorage @@ -5319,64 +4895,6 @@ entities: type: Transform - canCollide: False type: Physics -- proto: PillDexalin - entities: - - uid: 41 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 42 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 43 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 44 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 45 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 46 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - - uid: 47 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - proto: PortableGeneratorPacman entities: - uid: 189 @@ -5541,24 +5059,6 @@ entities: - pos: 1.5,2.5 parent: 1 type: Transform -- proto: PowerCellMedium - entities: - - uid: 11 - components: - - flags: InContainer - type: MetaData - - parent: 8 - type: Transform - - canCollide: False - type: Physics - - uid: 27 - components: - - flags: InContainer - type: MetaData - - parent: 24 - type: Transform - - canCollide: False - type: Physics - proto: PowerCellRecharger entities: - uid: 178 @@ -6153,11 +5653,11 @@ entities: - air: volume: 200 immutable: False - temperature: 292.91797 + temperature: 293.1316 moles: - - 1.8809017 - - 7.077882 - - 0.00055792386 + - 1.8964623 + - 7.13448 + - 4.4633907E-05 - 0 - 0 - 0 @@ -6168,16 +5668,6 @@ entities: - 0 - 0 type: EntityStorage -- proto: SyringeInaprovaline - entities: - - uid: 48 - components: - - flags: InContainer - type: MetaData - - parent: 37 - type: Transform - - canCollide: False - type: Physics - proto: TableWood entities: - uid: 460 @@ -6238,31 +5728,6 @@ entities: - pos: 4.5,2.5 parent: 1 type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 7 - components: - - flags: InContainer - type: MetaData - - parent: 6 - type: Transform - - storageUsed: 31 - type: Storage - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 14 - - 12 - - 13 - - 15 - - 8 - - 16 - type: ContainerContainer - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: VendingMachineBooze entities: - uid: 50 @@ -6912,19 +6377,6 @@ entities: type: Transform - canCollide: False type: Physics -- proto: WeaponFlareGun - entities: - - uid: 22 - components: - - flags: InContainer - type: MetaData - - parent: 6 - type: Transform - - unspawnedCount: 1 - type: BallisticAmmoProvider - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: WindoorSecure entities: - uid: 566 @@ -6965,15 +6417,4 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage -- proto: YellowOxygenTankFilled - entities: - - uid: 31 - components: - - flags: InContainer - type: MetaData - - parent: 23 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage ... diff --git a/Resources/Maps/Shuttles/investigator.yml b/Resources/Maps/Shuttles/investigator.yml new file mode 100644 index 00000000000..7d3f40467eb --- /dev/null +++ b/Resources/Maps/Shuttles/investigator.yml @@ -0,0 +1,4726 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 27: FloorDark + 32: FloorDarkMono + 84: FloorSteel + 92: FloorSteelMono + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - name: grid + type: MetaData + - pos: -2.6107569,3.2554395 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: cQAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADXAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACXAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAIAAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADDAAAAAABDAAAAAABbgAAAAACbgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAADAAAAAAADAAAAAADDAAAAAABbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAADAAAAAADDAAAAAAADAAAAAAAbgAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAABbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 57: 10.79785,0.81085324 + 58: 11.17285,0.81085324 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 11: 2,-2 + 12: 4,-2 + 13: 3,-2 + 87: 4,5 + 88: 2,5 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 2,-1 + 1: 3,-1 + 2: 4,-1 + 3: 1,0 + 4: 5,0 + 66: -5,-5 + 67: -2,-6 + 68: 11,-1 + 69: 11,0 + 70: 3,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 7: 2,0 + 8: 4,0 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 133: -4,-7 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 132: -5,-7 + 134: -3,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 63: -3,-7 + 64: -3,-6 + 65: -3,-5 + - node: + color: '#D4D4D40C' + id: BrickTileWhiteLineE + decals: + 73: 2,2 + 74: 2,5 + 75: 2,2 + 76: 2,5 + - node: + cleanable: True + color: '#D4D4D40C' + id: BrickTileWhiteLineE + decals: + 89: 2,4 + 90: 2,4 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineE + decals: + 49: 7,-2 + 50: 7,-1 + 51: 7,0 + 52: 7,-2 + 53: 7,-1 + 54: 7,0 + - node: + color: '#D4D4D40C' + id: BrickTileWhiteLineW + decals: + 71: 4,2 + 72: 4,5 + 77: 4,2 + 78: 4,5 + 79: 4,4 + 80: 4,4 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineW + decals: + 55: 11,-2 + 56: 11,-2 + - node: + color: '#D4D4D428' + id: CheckerNESW + decals: + 14: 1,-3 + 15: 2,-3 + 16: 3,-3 + 17: 5,-3 + 18: 4,-3 + - node: + color: '#D4D4D40C' + id: CheckerNWSE + decals: + 81: 3,4 + 82: 3,4 + 83: 3,2 + 84: 3,2 + 85: 3,5 + 86: 3,5 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 29: 8,0 + 30: 9,0 + 31: 10,0 + 32: 10,-1 + 33: 10,-2 + 34: 9,-2 + 35: 8,-2 + 36: 8,-1 + 37: 9,-1 + 38: 8,-2 + 39: 9,-2 + 40: 10,-2 + 41: 10,-1 + 42: 10,0 + 43: 9,0 + 44: 8,0 + 45: 8,-1 + 46: 9,-1 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 59: 9,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 9: 1,-1 + 10: 5,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 97: 5,-2 + 98: 4,-3 + 99: 1,-2 + 100: 2,-3 + 101: 10,1 + 102: 9,0 + 103: 8,1 + 104: 8,-2 + 105: 10,-1 + 106: 11,-2 + 107: 7,2 + 108: -4,-5 + 109: -2,-5 + 110: -1,-5 + 111: -1,-7 + 112: -3,-7 + 113: -3,-6 + 118: 4,5 + 119: 3,4 + 120: 2,4 + 121: 4,2 + 122: 2,2 + 123: -4,0 + 124: -5,1 + 125: -4,2 + 126: -4,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 114: 5,0 + 115: 2,-1 + 116: 2,0 + 117: 4,-1 + 130: 11,0 + 131: 11,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 127: 10,-7 + 128: 10,-8 + 129: 9,-9 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5: 5,0 + 6: 1,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineE + decals: + 94: 4,2 + 95: 4,4 + 96: 4,5 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 25: 7,-3 + 26: 11,-3 + 47: 8,-3 + 48: 10,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineS + decals: + 91: 2,2 + 92: 2,4 + 93: 2,5 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 27: 8,-7 + 28: 10,-7 + 60: 9,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 23: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 19: -3,0 + 20: -3,1 + 21: -3,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 24: -5,-1 + 61: -4,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 22: -4,-1 + 62: -4,-4 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 65535 + 0,1: + 0: 4095 + 1,1: + 0: 1919 + 2,0: + 0: 65535 + 2,1: + 0: 15 + 3,0: + 0: 4607 + 3,1: + 0: 1 + 0,-3: + 0: 4096 + 0,-2: + 0: 61713 + 0,-1: + 0: 65535 + 1,-2: + 0: 64716 + 1,-1: + 0: 65535 + 1,-3: + 0: 51200 + 2,-3: + 0: 65280 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4352 + 3,-2: + 0: 4369 + 3,-1: + 0: 16369 + -2,-3: + 0: 52224 + -2,-2: + 0: 52428 + -2,-1: + 0: 61436 + -1,-3: + 0: 65280 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -2,0: + 0: 52479 + -2,1: + 0: 12 + -1,0: + 0: 65535 + -1,1: + 0: 15 + -3,-1: + 0: 12272 + -3,0: + 0: 255 + 4,-1: + 0: 10096 + 4,0: + 0: 119 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 228 + - 254 + - 275 + - 309 + type: DeviceNetwork + - devices: + - 228 + - 254 + - 275 + - 309 + type: DeviceList + - uid: 252 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 229 + - 253 + - 272 + - 308 + - 307 + type: DeviceNetwork + - devices: + - 229 + - 253 + - 272 + - 308 + - 307 + type: DeviceList + - uid: 306 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 237 + - 284 + - 289 + - 307 + type: DeviceNetwork + - devices: + - 237 + - 284 + - 289 + - 307 + type: DeviceList +- proto: AirCanister + entities: + - uid: 472 + components: + - anchored: True + pos: -4.5,-4.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockCargo + entities: + - uid: 110 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform +- proto: AirlockCommand + entities: + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 692 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 693 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 444 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + type: Transform +- proto: AirlockScience + entities: + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + type: Transform +- proto: AirlockScienceGlass + entities: + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform +- proto: AirSensor + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 252 + type: DeviceNetwork + - uid: 254 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 251 + type: DeviceNetwork + - uid: 284 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 306 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 335 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 457 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 458 + components: + - name: Bolt docks button + type: MetaData + - pos: 2.5,6.5 + parent: 2 + type: Transform +- proto: Autolathe + entities: + - uid: 221 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform +- proto: BlastDoor + entities: + - uid: 687 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - links: + - 479 + type: DeviceLinkSink + - uid: 688 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - links: + - 479 + type: DeviceLinkSink + - uid: 689 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - links: + - 479 + type: DeviceLinkSink + - uid: 690 + components: + - pos: 5.5,3.5 + parent: 2 + type: Transform + - links: + - 479 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 88 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - links: + - 469 + type: DeviceLinkSink + - uid: 91 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - links: + - 469 + type: DeviceLinkSink + - uid: 172 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - links: + - 198 + type: DeviceLinkSink + - uid: 467 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - links: + - 469 + type: DeviceLinkSink +- proto: BoozeDispenser + entities: + - uid: 42 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 7 + components: + - pos: 3.5,0.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 365 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 366 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 367 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 368 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 369 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 370 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform + - uid: 371 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 372 + components: + - pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 373 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 374 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 375 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 376 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 377 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 378 + components: + - pos: -4.5,-2.5 + parent: 2 + type: Transform + - uid: 379 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 380 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 381 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 382 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 383 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform + - uid: 384 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 385 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 386 + components: + - pos: 6.5,-1.5 + parent: 2 + type: Transform + - uid: 387 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 388 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 389 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 390 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - uid: 391 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - uid: 392 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 393 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 394 + components: + - pos: 11.5,1.5 + parent: 2 + type: Transform + - uid: 395 + components: + - pos: 7.5,-2.5 + parent: 2 + type: Transform + - uid: 396 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 397 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 398 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform + - uid: 399 + components: + - pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 400 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 401 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 402 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 403 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 404 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 405 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 406 + components: + - pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 407 + components: + - pos: -3.5,-5.5 + parent: 2 + type: Transform + - uid: 408 + components: + - pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 409 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 410 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 411 + components: + - pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 412 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform + - uid: 413 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform + - uid: 414 + components: + - pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 415 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 416 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 417 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 418 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 419 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 420 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 421 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 422 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 423 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 424 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 425 + components: + - pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 426 + components: + - pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 427 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 428 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 429 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 430 + components: + - pos: 12.5,-8.5 + parent: 2 + type: Transform + - uid: 431 + components: + - pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 432 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 433 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 434 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 435 + components: + - pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 436 + components: + - pos: 11.5,4.5 + parent: 2 + type: Transform + - uid: 437 + components: + - pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 438 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 439 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 440 + components: + - pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 441 + components: + - pos: -5.5,4.5 + parent: 2 + type: Transform + - uid: 442 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 463 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 465 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 466 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 488 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 490 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform + - uid: 677 + components: + - pos: -0.5,-4.5 + parent: 2 + type: Transform + - uid: 678 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 679 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform + - uid: 680 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 681 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 682 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 683 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 695 + components: + - pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 696 + components: + - pos: -4.5,-1.5 + parent: 2 + type: Transform + - uid: 697 + components: + - pos: 11.5,-0.5 + parent: 2 + type: Transform + - uid: 698 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 170 + components: + - pos: -4.5,-6.5 + parent: 2 + type: Transform + - uid: 226 + components: + - pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 311 + components: + - pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 312 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform + - uid: 313 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 314 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 315 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 316 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 317 + components: + - pos: -1.5,-9.5 + parent: 2 + type: Transform + - uid: 318 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 319 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 320 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 321 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 322 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 324 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform + - uid: 507 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 508 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - uid: 509 + components: + - pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 510 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 511 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - uid: 512 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 513 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 514 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 515 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 516 + components: + - pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 517 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 518 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 519 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform + - uid: 520 + components: + - pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 521 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 522 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 523 + components: + - pos: -3.5,-1.5 + parent: 2 + type: Transform + - uid: 524 + components: + - pos: -2.5,-1.5 + parent: 2 + type: Transform + - uid: 525 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 526 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 527 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 528 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 529 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 530 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 531 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - uid: 532 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 533 + components: + - pos: 6.5,-1.5 + parent: 2 + type: Transform + - uid: 534 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 535 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - uid: 536 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 537 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 538 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 539 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 540 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 541 + components: + - pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 542 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 543 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 544 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - uid: 545 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 546 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 547 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 548 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 549 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 550 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 551 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 620 + components: + - pos: -11.5,-1.5 + parent: 2 + type: Transform + - uid: 621 + components: + - pos: -11.5,-2.5 + parent: 2 + type: Transform + - uid: 622 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 623 + components: + - pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 624 + components: + - pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 625 + components: + - pos: -9.5,-2.5 + parent: 2 + type: Transform + - uid: 626 + components: + - pos: -8.5,-1.5 + parent: 2 + type: Transform + - uid: 627 + components: + - pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 628 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 629 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 630 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 631 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 632 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 633 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - uid: 634 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 635 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 636 + components: + - pos: -8.5,1.5 + parent: 2 + type: Transform + - uid: 637 + components: + - pos: -8.5,0.5 + parent: 2 + type: Transform + - uid: 638 + components: + - pos: -9.5,1.5 + parent: 2 + type: Transform + - uid: 639 + components: + - pos: -9.5,0.5 + parent: 2 + type: Transform + - uid: 640 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 641 + components: + - pos: -10.5,0.5 + parent: 2 + type: Transform + - uid: 642 + components: + - pos: -11.5,1.5 + parent: 2 + type: Transform + - uid: 643 + components: + - pos: -11.5,0.5 + parent: 2 + type: Transform + - uid: 644 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 645 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 646 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 647 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 648 + components: + - pos: 15.5,1.5 + parent: 2 + type: Transform + - uid: 649 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 650 + components: + - pos: 16.5,1.5 + parent: 2 + type: Transform + - uid: 651 + components: + - pos: 16.5,0.5 + parent: 2 + type: Transform + - uid: 652 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 653 + components: + - pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 654 + components: + - pos: 18.5,1.5 + parent: 2 + type: Transform + - uid: 655 + components: + - pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 656 + components: + - pos: 18.5,-1.5 + parent: 2 + type: Transform + - uid: 657 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - uid: 658 + components: + - pos: 17.5,-1.5 + parent: 2 + type: Transform + - uid: 659 + components: + - pos: 17.5,-2.5 + parent: 2 + type: Transform + - uid: 660 + components: + - pos: 16.5,-1.5 + parent: 2 + type: Transform + - uid: 661 + components: + - pos: 16.5,-2.5 + parent: 2 + type: Transform + - uid: 662 + components: + - pos: 15.5,-1.5 + parent: 2 + type: Transform + - uid: 663 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 664 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform + - uid: 665 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - uid: 666 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 667 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 668 + components: + - pos: 13.5,-0.5 + parent: 2 + type: Transform + - uid: 669 + components: + - pos: 17.5,-0.5 + parent: 2 + type: Transform + - uid: 670 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 671 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 672 + components: + - pos: -6.5,-0.5 + parent: 2 + type: Transform + - uid: 673 + components: + - pos: -10.5,-0.5 + parent: 2 + type: Transform + - uid: 674 + components: + - pos: -5.5,-1.5 + parent: 2 + type: Transform + - uid: 675 + components: + - pos: -4.5,-1.5 + parent: 2 + type: Transform + - uid: 676 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 336 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform + - uid: 337 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 338 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - uid: 339 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - uid: 340 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform + - uid: 341 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 342 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - uid: 343 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 344 + components: + - pos: 6.5,-1.5 + parent: 2 + type: Transform + - uid: 345 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 346 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - uid: 347 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 348 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 349 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 350 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 351 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 352 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 353 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 354 + components: + - pos: -3.5,-1.5 + parent: 2 + type: Transform + - uid: 355 + components: + - pos: -2.5,-1.5 + parent: 2 + type: Transform + - uid: 356 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 357 + components: + - pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 358 + components: + - pos: -3.5,-5.5 + parent: 2 + type: Transform + - uid: 359 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 360 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 361 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 362 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 363 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 364 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + type: Transform +- proto: CarpetBlack + entities: + - uid: 483 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 484 + components: + - pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 485 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 15 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform + - uid: 32 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 34 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + type: Transform + - uid: 168 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 169 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 259 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + type: Transform + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 261 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 + type: Transform + - uid: 262 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 263 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + type: Transform + - uid: 264 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 265 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 552 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 553 + components: + - pos: -10.5,0.5 + parent: 2 + type: Transform + - uid: 554 + components: + - pos: -10.5,-0.5 + parent: 2 + type: Transform + - uid: 555 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 556 + components: + - pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 557 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 558 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform + - uid: 559 + components: + - pos: -6.5,-0.5 + parent: 2 + type: Transform + - uid: 560 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 561 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 562 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 563 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 564 + components: + - pos: 13.5,-0.5 + parent: 2 + type: Transform + - uid: 565 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 566 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 567 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 568 + components: + - pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 569 + components: + - pos: 17.5,-0.5 + parent: 2 + type: Transform + - uid: 570 + components: + - pos: 17.5,-1.5 + parent: 2 + type: Transform + - uid: 571 + components: + - pos: 17.5,-2.5 + parent: 2 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 216 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 217 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform +- proto: ClothingNeckScarfStripedPurple + entities: + - uid: 473 + components: + - pos: 10.471153,-1.6616642 + parent: 2 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 2 + type: Transform +- proto: ComputerRadar + entities: + - uid: 271 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 487 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: ConveyorBelt + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 5 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 6 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 451 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 2 + type: Transform + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - links: + - 18 + type: DeviceLinkSink +- proto: CrateArtifactContainer + entities: + - uid: 98 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform +- proto: CrateMaterialPlasma + entities: + - uid: 325 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform +- proto: Crowbar + entities: + - uid: 209 + components: + - pos: 8.249144,-2.3469086 + parent: 2 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 495 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 330 + components: + - pos: 7.5,-2.5 + parent: 2 + type: Transform +- proto: DrinkGlass + entities: + - uid: 107 + components: + - pos: -2.845461,2.488087 + parent: 2 + type: Transform + - uid: 108 + components: + - pos: -2.720461,2.331837 + parent: 2 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 496 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 703 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: Firelock + entities: + - uid: 307 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 306 + - 252 + type: DeviceNetwork + - uid: 308 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 252 + type: DeviceNetwork + - uid: 309 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 251 + type: DeviceNetwork +- proto: GasMixerFlipped + entities: + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 2 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + type: Transform +- proto: GasPipeBend + entities: + - uid: 230 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 235 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 250 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 305 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 238 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 242 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 279 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 280 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 282 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 283 + components: + - pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 290 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 291 + components: + - pos: -1.5,-3.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 292 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 293 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 294 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 297 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 299 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 300 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 303 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 304 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 443 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 464 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 234 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 246 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 295 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 302 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 277 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 489 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 494 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 278 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform +- proto: GasVentPump + entities: + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 252 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 275 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 251 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 306 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 228 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 251 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 229 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 252 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 306 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 471 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 112 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 150 + components: + - pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 151 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 152 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 153 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 155 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 156 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 162 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 164 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 165 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 176 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 459 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 460 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 461 + components: + - pos: 6.5,4.5 + parent: 2 + type: Transform + - uid: 691 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform +- proto: Gyroscope + entities: + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 2 + type: Transform +- proto: IntercomCommon + entities: + - uid: 476 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 222 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform +- proto: Lamp + entities: + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: -3.3664355,-0.08267355 + parent: 2 + type: Transform +- proto: LockerResearchDirectorFilled + entities: + - uid: 705 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 193 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MachineArtifactAnalyzer + entities: + - uid: 125 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + type: Transform +- proto: Multitool + entities: + - uid: 207 + components: + - pos: 8.58146,-2.402046 + parent: 2 + type: Transform +- proto: OreProcessor + entities: + - uid: 470 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform +- proto: PaperOffice + entities: + - uid: 704 + components: + - pos: -2.514917,-4.8300157 + parent: 2 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 455 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - uid: 456 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 684 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 685 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 286 + components: + - anchored: True + pos: -3.5,-6.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 323 + components: + - anchored: True + pos: -2.5,-6.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics +- proto: PowerCellRecharger + entities: + - uid: 104 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 14 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform + - uid: 53 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 22 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + type: Transform + - uid: 700 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + type: Transform +- proto: Protolathe + entities: + - uid: 220 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform +- proto: Railing + entities: + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 468 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 474 + components: + - pos: -5.5,0.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: -5.5,1.5 + parent: 2 + type: Transform + - uid: 477 + components: + - pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 478 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 10 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 11 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 12 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 64 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 65 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 66 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 68 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 74 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 75 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + type: Transform + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 127 + components: + - pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 128 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 131 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform + - uid: 132 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 133 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 136 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 137 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 177 + components: + - pos: 6.5,4.5 + parent: 2 + type: Transform + - uid: 686 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 211 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 200 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink + - uid: 201 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink + - uid: 202 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink + - uid: 203 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink + - uid: 204 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink + - uid: 206 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + type: Transform + - links: + - 199 + type: DeviceLinkSink +- proto: SignalButtonDirectional + entities: + - uid: 198 + components: + - name: Blast doors button + type: MetaData + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 172: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 199 + components: + - name: shutters button + type: MetaData + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 206: + - Pressed: Toggle + 205: + - Pressed: Toggle + 204: + - Pressed: Toggle + 203: + - Pressed: Toggle + 202: + - Pressed: Toggle + 201: + - Pressed: Toggle + 200: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 469 + components: + - name: Blast doors button + type: MetaData + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 91: + - Pressed: Toggle + 467: + - Pressed: Toggle + 88: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 479 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - linkedPorts: + 689: + - Pressed: Toggle + 688: + - Pressed: Toggle + 687: + - Pressed: Toggle + 690: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignBar + entities: + - uid: 257 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform +- proto: SignMinerDock + entities: + - uid: 480 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform +- proto: SignRND + entities: + - uid: 256 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + type: Transform +- proto: SignShipDock + entities: + - uid: 481 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 482 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform +- proto: Sink + entities: + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 287 + components: + - pos: -4.5,-6.5 + parent: 2 + type: Transform +- proto: soda_dispenser + entities: + - uid: 43 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform +- proto: SolarPanel + entities: + - uid: 139 + components: + - pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 140 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform + - uid: 141 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 142 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 143 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 144 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 145 + components: + - pos: -1.5,-9.5 + parent: 2 + type: Transform + - uid: 146 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 147 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 497 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 498 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 499 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 500 + components: + - pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 501 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 502 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - uid: 503 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 505 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - uid: 506 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 572 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 573 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 574 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 575 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 576 + components: + - pos: 15.5,1.5 + parent: 2 + type: Transform + - uid: 577 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 578 + components: + - pos: 16.5,1.5 + parent: 2 + type: Transform + - uid: 579 + components: + - pos: 16.5,0.5 + parent: 2 + type: Transform + - uid: 580 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 581 + components: + - pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 582 + components: + - pos: 18.5,1.5 + parent: 2 + type: Transform + - uid: 583 + components: + - pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 584 + components: + - pos: 18.5,-1.5 + parent: 2 + type: Transform + - uid: 585 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - uid: 586 + components: + - pos: 17.5,-1.5 + parent: 2 + type: Transform + - uid: 587 + components: + - pos: 17.5,-2.5 + parent: 2 + type: Transform + - uid: 588 + components: + - pos: 16.5,-1.5 + parent: 2 + type: Transform + - uid: 589 + components: + - pos: 16.5,-2.5 + parent: 2 + type: Transform + - uid: 590 + components: + - pos: 15.5,-1.5 + parent: 2 + type: Transform + - uid: 591 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 592 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform + - uid: 593 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - uid: 594 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 595 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 596 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 597 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 598 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 599 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: -8.5,-1.5 + parent: 2 + type: Transform + - uid: 601 + components: + - pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 602 + components: + - pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 603 + components: + - pos: -9.5,-2.5 + parent: 2 + type: Transform + - uid: 604 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 605 + components: + - pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 606 + components: + - pos: -11.5,-1.5 + parent: 2 + type: Transform + - uid: 607 + components: + - pos: -11.5,-2.5 + parent: 2 + type: Transform + - uid: 608 + components: + - pos: -11.5,1.5 + parent: 2 + type: Transform + - uid: 609 + components: + - pos: -11.5,0.5 + parent: 2 + type: Transform + - uid: 610 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 611 + components: + - pos: -9.5,1.5 + parent: 2 + type: Transform + - uid: 612 + components: + - pos: -10.5,0.5 + parent: 2 + type: Transform + - uid: 613 + components: + - pos: -9.5,0.5 + parent: 2 + type: Transform + - uid: 614 + components: + - pos: -8.5,1.5 + parent: 2 + type: Transform + - uid: 615 + components: + - pos: -8.5,0.5 + parent: 2 + type: Transform + - uid: 616 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 617 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 618 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 619 + components: + - pos: -6.5,0.5 + parent: 2 + type: Transform +- proto: SolarTracker + entities: + - uid: 149 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 109 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 694 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 194 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 195 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 332 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform +- proto: StoolBar + entities: + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + type: Transform +- proto: StorageCanister + entities: + - uid: 218 + components: + - pos: 11.5,0.5 + parent: 2 + type: Transform + - uid: 219 + components: + - pos: 11.5,-0.5 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 270 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 1 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 192 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: Table + entities: + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + type: Transform + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 331 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 55 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 56 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + type: Transform +- proto: Thruster + entities: + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 181 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 185 + components: + - pos: 11.5,4.5 + parent: 2 + type: Transform + - uid: 186 + components: + - pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 187 + components: + - pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 189 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 + type: Transform + - uid: 190 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform +- proto: TwoWayLever + entities: + - uid: 18 + components: + - name: Conveyor lever + type: MetaData + - pos: 3.5,0.5 + parent: 2 + type: Transform + - linkedPorts: + 3: + - Left: Forward + - Right: Reverse + - Middle: Off + 6: + - Left: Forward + - Right: Reverse + - Middle: Off + 4: + - Left: Forward + - Right: Reverse + - Middle: Off + 5: + - Left: Forward + - Right: Reverse + - Middle: Off + 447: + - Left: Forward + - Right: Reverse + - Middle: Off + 448: + - Left: Forward + - Right: Reverse + - Middle: Off + 449: + - Left: Forward + - Right: Reverse + - Middle: Off + 454: + - Left: Forward + - Right: Reverse + - Middle: Off + 453: + - Left: Forward + - Right: Reverse + - Middle: Off + 452: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VendingMachineCargoDrobe + entities: + - uid: 702 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 701 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 191 + components: + - pos: -4.5,-2.5 + parent: 2 + type: Transform +- proto: WallReinforced + entities: + - uid: 13 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 20 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: 6.5,1.5 + parent: 2 + type: Transform + - uid: 24 + components: + - pos: 6.5,0.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform + - uid: 28 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 29 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 30 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 31 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 35 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 36 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform + - uid: 37 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 46 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + type: Transform + - uid: 49 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + type: Transform + - uid: 51 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + type: Transform + - uid: 57 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 58 + components: + - pos: -3.5,3.5 + parent: 2 + type: Transform + - uid: 59 + components: + - pos: -4.5,3.5 + parent: 2 + type: Transform + - uid: 60 + components: + - pos: -5.5,3.5 + parent: 2 + type: Transform + - uid: 61 + components: + - pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: -5.5,1.5 + parent: 2 + type: Transform + - uid: 69 + components: + - pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 71 + components: + - pos: 11.5,3.5 + parent: 2 + type: Transform + - uid: 77 + components: + - pos: 12.5,-3.5 + parent: 2 + type: Transform + - uid: 78 + components: + - pos: 12.5,-2.5 + parent: 2 + type: Transform + - uid: 79 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 80 + components: + - pos: 12.5,-0.5 + parent: 2 + type: Transform + - uid: 81 + components: + - pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 82 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 83 + components: + - pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 84 + components: + - pos: 12.5,3.5 + parent: 2 + type: Transform + - uid: 95 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + type: Transform + - uid: 116 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 117 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - uid: 118 + components: + - pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 120 + components: + - pos: 11.5,-8.5 + parent: 2 + type: Transform + - uid: 121 + components: + - pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 123 + components: + - pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 126 + components: + - pos: -5.5,-4.5 + parent: 2 + type: Transform + - uid: 129 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 130 + components: + - pos: -4.5,-7.5 + parent: 2 + type: Transform + - uid: 134 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 135 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 138 + components: + - pos: 0.5,-4.5 + parent: 2 + type: Transform + - uid: 157 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + type: Transform + - uid: 160 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform + - uid: 231 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 446 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + type: Transform +- proto: WarpPointShip + entities: + - uid: 328 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform +- proto: WindoorSecure + entities: + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 2 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + type: Transform +- proto: Wrench + entities: + - uid: 329 + components: + - pos: 8.202269,-2.3312836 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/Shuttles/lantern.yml b/Resources/Maps/Shuttles/lantern.yml new file mode 100644 index 00000000000..037ffa53eda --- /dev/null +++ b/Resources/Maps/Shuttles/lantern.yml @@ -0,0 +1,6233 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 29: FloorDarkDiagonalMini + 32: FloorDarkMono + 60: FloorLino + 96: FloorTechMaint + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.484375,-0.515625 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAcQAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: bwAAAAAAbwAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAYAAAAAAAcQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 0: 0,-18 + 1: 1,-18 + - node: + color: '#00FFFFFF' + id: BotGreyscale + decals: + 29: -2,-17 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 41: 3,-14 + 62: 4,-14 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 2: 1,-18 + 3: 0,-18 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 36: 5,-16 + 37: 5,-17 + 61: 5,-15 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 24: -2,-15 + 25: -2,-16 + 26: -2,-17 + 27: -2,-14 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 30: 3,-14 + 31: 3,-15 + 32: 3,-16 + 33: 3,-17 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 34: -4,-17 + 35: -4,-16 + 60: -4,-15 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 28: -2,-14 + 38: 3,-16 + 39: 3,-17 + 40: 5,-17 + 63: -3,-14 + 64: -2,-16 + 65: -4,-15 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 43: -4,-17 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 22: 4,-17 + 23: 4,-16 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 42: 5,-16 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNe + decals: + 53: 2,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNw + decals: + 51: -2,5 + 52: -1,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSe + decals: + 46: 0,3 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSw + decals: + 44: -1,3 + 45: -2,4 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndE + decals: + 47: 3,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNe + decals: + 59: 2,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 56: -1,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSe + decals: + 57: 0,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 58: -1,4 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 50: 0,4 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 54: 0,6 + 55: 1,6 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 48: 2,5 + 49: 1,5 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 8: 0,-19 + 9: 1,-19 + 18: -3,-18 + 19: 4,-18 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 20: 6,-16 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 21: -5,-16 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 12: -5,-16 + 13: 6,-16 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 6: 0,-19 + 7: 1,-19 + 16: -3,-18 + 17: 4,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 10: -5,-16 + 11: 6,-16 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 4: 0,-19 + 5: 1,-19 + 14: -3,-18 + 15: 4,-18 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 1: 4096 + 0: 60622 + -1,-1: + 0: 61183 + 0,1: + 0: 65535 + 1,0: + 0: 4097 + 1: 27776 + 1,1: + 0: 273 + 1: 6 + 2,0: + 1: 17 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 14199 + 1: 136 + 1,-3: + 0: 30513 + 1,-2: + 0: 30583 + 1: 128 + 1,-1: + 0: 4403 + 2,-4: + 1: 4368 + 2,-3: + 1: 4369 + 2,-2: + 1: 4369 + 2,-1: + 1: 4369 + -2,0: + 1: 35938 + -2,1: + 1: 8 + -1,1: + 1: 1 + 0: 52974 + -2,-4: + 1: 8804 + 0: 2184 + -2,-3: + 1: 8738 + 0: 34816 + -2,-2: + 1: 8802 + 0: 34952 + -2,-1: + 1: 8738 + -1,-4: + 0: 65535 + -1,-3: + 0: 65534 + -1,-2: + 0: 65535 + -2,-5: + 0: 34816 + -1,-5: + 1: 112 + 0: 65408 + 0,-5: + 0: 65392 + 1: 128 + 1,-5: + 1: 48 + 0: 30464 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: lantern + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 738 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 539 + - 538 + - 540 + type: DeviceNetwork + - devices: + - 539 + - 538 + - 540 + type: DeviceList + - uid: 739 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 516 + - 517 + - 528 + - 527 + - 743 + - 742 + - 540 + - 541 + type: DeviceNetwork + - devices: + - 516 + - 517 + - 528 + - 527 + - 743 + - 742 + - 540 + - 541 + type: DeviceList + - uid: 741 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 533 + - 518 + - 542 + type: DeviceNetwork + - devices: + - 518 + - 533 + - 542 + type: DeviceList + - uid: 801 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 530 + - 543 + type: DeviceNetwork + - devices: + - 530 + - 543 + type: DeviceList +- proto: AirCanister + entities: + - uid: 345 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 198 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - links: + - 901 + type: DeviceLinkSink + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - links: + - 901 + type: DeviceLinkSink + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 402 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 327 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 493 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 61 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 805 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 806 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 807 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 808 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 809 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 810 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 811 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 815 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 817 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 818 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 819 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 821 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 822 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 823 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 824 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 825 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 826 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 827 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 828 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 829 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 830 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 831 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 832 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 833 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 834 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 835 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 836 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 837 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 838 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 839 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 840 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 841 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 842 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 843 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 844 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 845 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 846 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 847 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 848 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 849 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 850 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 851 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 852 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 853 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 854 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 855 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 856 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 857 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 858 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 860 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 861 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 862 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 863 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 864 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform +- proto: BenchPewLeft + entities: + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 490 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 495 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 504 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewMiddle + entities: + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewRight + entities: + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: Bible + entities: + - uid: 511 + components: + - rot: 3.141592653589793 rad + pos: 1.015625,-0.40625 + parent: 1 + type: Transform + - storageUsed: 10 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 512 + type: ContainerContainer +- proto: BlastDoor + entities: + - uid: 762 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - links: + - 905 + type: DeviceLinkSink +- proto: BoxBodyBag + entities: + - uid: 907 + components: + - pos: 4.303397,-13.613676 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 763 + components: + - rot: 1.5707963267948966 rad + pos: -1.6598933,-10.886158 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -1.4411433,-11.042408 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 614 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 666 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 2 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 789 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 790 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 341 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform +- proto: Carpet + entities: + - uid: 544 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: CarpetChapel + entities: + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 389 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 420 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 424 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 430 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 436 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 437 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 439 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 440 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 441 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 449 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 456 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 475 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 577 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 781 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: CarpetPurple + entities: + - uid: 442 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 105 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 109 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 155 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 407 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 704 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 717 + components: + - anchored: True + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: ClosetL3Filled + entities: + - uid: 322 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 748 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 120 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 292 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 409 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 246 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: ConveyorBelt + entities: + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - links: + - 494 + type: DeviceLinkSink + - uid: 757 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - links: + - 494 + type: DeviceLinkSink + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - links: + - 494 + type: DeviceLinkSink + - uid: 759 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - links: + - 494 + type: DeviceLinkSink +- proto: CrateCoffin + entities: + - uid: 492 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + type: Fixtures + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + type: EntityStorage + - isPlaceable: True + type: PlaceableSurface +- proto: Crematorium + entities: + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 749 + components: + - pos: -2.7397153,-16.020428 + parent: 1 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 773 + components: + - pos: -0.945055,-11.282531 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: -1.17943,-11.454406 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: -0.89818,-11.563781 + parent: 1 + type: Transform + - uid: 776 + components: + - pos: -1.49193,-11.595031 + parent: 1 + type: Transform + - uid: 777 + components: + - pos: -1.788805,-11.391906 + parent: 1 + type: Transform +- proto: DrinkWineBottleFull + entities: + - uid: 721 + components: + - pos: 3.6576126,-10.21217 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: 3.3763626,-10.321545 + parent: 1 + type: Transform +- proto: DrinkWineGlass + entities: + - uid: 723 + components: + - pos: 3.6732373,-10.86842 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 3.3138623,-10.86842 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 3.4544873,-11.196545 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 3.6732373,-11.36842 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 744 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 802 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 803 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + type: Transform +- proto: EncryptionKeyMedical + entities: + - uid: 791 + components: + - pos: 1.2815478,6.4196587 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 245 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 540 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + - 738 + type: DeviceNetwork + - uid: 541 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork + - uid: 542 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 741 + type: DeviceNetwork + - uid: 543 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 801 + type: DeviceNetwork + - uid: 742 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork +- proto: FoodBreadPlain + entities: + - uid: 728 + components: + - pos: 2.720112,-11.290295 + parent: 1 + type: Transform +- proto: FoodBreadPlainSlice + entities: + - uid: 729 + components: + - pos: 2.2826123,-11.33717 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 2.345112,-11.43092 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 2.376362,-11.46217 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 2.485737,-11.477795 + parent: 1 + type: Transform +- proto: FoodPlate + entities: + - uid: 727 + components: + - pos: 2.641987,-11.227795 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 367 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 23 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 480 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 481 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 523 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 363 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 370 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 371 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 374 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 375 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 515 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 520 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 521 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 522 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 529 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 537 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 716 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 380 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 509 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 514 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 532 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 527 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 528 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 530 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 801 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 533 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 741 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 538 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 17 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 516 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 517 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 739 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 518 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 741 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 539 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 718 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 5 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: GroundCannabis + entities: + - uid: 318 + components: + - flags: InContainer + type: MetaData + - parent: 317 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Gyroscope + entities: + - uid: 734 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform +- proto: KnifePlastic + entities: + - uid: 45 + components: + - pos: 3.00555,-11.372589 + parent: 1 + type: Transform +- proto: Lantern + entities: + - uid: 702 + components: + - pos: 1.5706598,-0.2999968 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: 0.44565976,-0.2999966 + parent: 1 + type: Transform +- proto: Matchbox + entities: + - uid: 737 + components: + - pos: 2.5131764,5.5507874 + parent: 1 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 483 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 318 + type: ContainerContainer + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 906 + components: + - name: preflight checklist + type: MetaData + - pos: -3.4827006,-15.700516 + parent: 1 + type: Transform + - stampState: paper_stamp-ce + stampedBy: + - stampedBorderless: False + stampedColor: '#C69B17FF' + stampedName: stamp-component-stamped-name-ce + - stampedBorderless: False + stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + - stampedBorderless: False + stampedColor: '#D70601FF' + stampedName: stamp-component-stamped-name-chaplain + content: >- + [head=1]========================[/head] + + [head=1]Lantern-class service ship[/head] + + [head=1] [/head] + + [head=1] PREFLIGHT CHECKLIST[/head] + + [head=1]========================[/head] + + + [head=2]1. Power supply.[/head] + + [head=3]1.1. Battery units.[/head] + + [bullet/][ ] Check if the SMES unit is anchored to the floor. + + [bullet/][ ] Check if the substation unit is anchored to the floor. + + [bullet/][ ] Check if the APC unit's Main Breaker is toggled on. + + [bullet/][ ] Check the APC unit's current Load[bold]*[/bold] (W). + + [head=3]1.2. P.A.C.M.A.N. generator unit.[/head] + + [bullet/][ ] Check if the P.A.C.M.A.N. generator unit is anchored to the floor. + + [bullet/][ ] Check if the P.A.C.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + + [bullet/][ ] Check if the P.A.C.M.A.N. generator unit is set to HV output. + + [bullet/][ ] Set Target Power for 10-15[bold]**[/bold] [bold]k[/bold]W. + + [bullet/][ ] Start the P.A.C.M.A.N. generator unit. + + [head=3]1.3. Solar panels.[/head] + + [bullet/][ ] Inspect solar control computer (located at ship's cocpit). + + [bullet/][ ] Adjust panel angular velocity. + + [bullet/][ ] Adjust panel angle. + + + [head=2]2. Atmospherics.[/head] + + [head=3]2.1. Distribution Loop.[/head] + + [bullet/][ ] Check if the air canister is anchored to connector port. + + + [head=2]3. Other checks.[/head] + + [bullet/][ ] Check if the gyroscope is anchored, powered, and enabled. + + [bullet/][ ] Check if the mini gravity generator is anchored, powered, and enabled. + + + __________________________________________________________________ + + [bold]*[/bold] - Lantern-class service ships are equipped with a three APC units that can be used to appraise the ship's total power consumption. Unmodifued Lantern-class ship requires 22.5 kW of power to remain operational. + + [bold]**[/bold] - Lantern-class service ships have higher power demand than standard P.A.C.M.A.N. generator unit can provide at optimal settings, however the ship comes equipped with 38 solar panels that can provide up to 28.5 kW of power under the ideal circumstances: assuming that on average properly maintained solar array will provide one third of maximum output power, recommended target power output for P.A.C.M.A.N. generator unit is 14 kW. + + [bold]Note:[/bold] Additional generator units can be purchased at the Frontier Station. + type: Paper +- proto: PaperBin10 + entities: + - uid: 765 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 580 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 323 + components: + - anchored: True + pos: -3.5,-16.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage +- proto: PottedPlantRandom + entities: + - uid: 719 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 709 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 715 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 712 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 872 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 873 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 874 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 875 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 877 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 878 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 879 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 880 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 881 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 882 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 883 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 884 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 886 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 887 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 889 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 890 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 891 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 892 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 893 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 894 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 895 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 896 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 897 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 705 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 706 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 865 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 866 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 868 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 869 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 708 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 899 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 900 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 770 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 771 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 736 + components: + - pos: -2.6113381,-16.511557 + parent: 1 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item +- proto: ShuttersNormalOpen + entities: + - uid: 55 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 122 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 133 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 176 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 177 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 191 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 192 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 365 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - links: + - 903 + type: DeviceLinkSink + - uid: 382 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 780 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink + - uid: 902 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - links: + - 904 + type: DeviceLinkSink +- proto: SignalButtonDirectional + entities: + - uid: 901 + components: + - name: airlock bolts switch + type: MetaData + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - linkedPorts: + 396: + - Pressed: DoorBolt + 397: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 903 + components: + - name: shutters switch + type: MetaData + - pos: 1.5,2.5 + parent: 1 + type: Transform + - linkedPorts: + 93: + - Pressed: Toggle + 191: + - Pressed: Toggle + 180: + - Pressed: Toggle + 96: + - Pressed: Toggle + 77: + - Pressed: Toggle + 192: + - Pressed: Toggle + 181: + - Pressed: Toggle + 188: + - Pressed: Toggle + 166: + - Pressed: Toggle + 90: + - Pressed: Toggle + 168: + - Pressed: Toggle + 75: + - Pressed: Toggle + 101: + - Pressed: Toggle + 189: + - Pressed: Toggle + 62: + - Pressed: Toggle + 133: + - Pressed: Toggle + 365: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 904 + components: + - name: cockpit shutters switch + type: MetaData + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 100: + - Pressed: Toggle + 780: + - Pressed: Toggle + 177: + - Pressed: Toggle + 122: + - Pressed: Toggle + 176: + - Pressed: Toggle + 55: + - Pressed: Toggle + 382: + - Pressed: Toggle + 902: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 905 + components: + - name: blastdoor switch + type: MetaData + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 762: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignChapel + entities: + - uid: 767 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 768 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + type: Transform +- proto: SignDirectionalChapel + entities: + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 800 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 15 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform +- proto: SmokingPipeFilledCannabis + entities: + - uid: 733 + components: + - pos: 2.4819264,5.5507874 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 201 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 510 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 416 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: Stool + entities: + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 745 + components: + - anchored: True + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: SubstationBasic + entities: + - uid: 328 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 698 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 239 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 700 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 701 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 494 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - linkedPorts: + 186: + - Middle: Off + - Left: Forward + - Right: Forward + 757: + - Middle: Off + - Left: Forward + - Right: Forward + 758: + - Middle: Off + - Right: Forward + - Left: Forward + 759: + - Middle: Off + - Left: Forward + - Right: Forward + type: DeviceLinkSource +- proto: VendingMachineChapel + entities: + - uid: 325 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 2.5,-17.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 740 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 10 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform +- proto: WardrobeChapelFilled + entities: + - uid: 326 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 418 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 772 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: WeaponRevolverArgenti + entities: + - uid: 512 + components: + - flags: InContainer + type: MetaData + - parent: 511 + type: Transform + - canCollide: False + type: Physics +- proto: WoodDoor + entities: + - uid: 14 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 735 + components: + - rot: -12.566370614359172 rad + pos: -2.765086,-15.923857 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/loader.yml b/Resources/Maps/Shuttles/loader.yml deleted file mode 100644 index 33224b29899..00000000000 --- a/Resources/Maps/Shuttles/loader.yml +++ /dev/null @@ -1,4225 +0,0 @@ -meta: - format: 6 - postmapinit: true -tilemap: - 0: Space - 84: FloorSteel - 96: FloorTechMaint - 112: Lattice - 113: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - name: NT14 Loader PR-712 - type: MetaData - - rot: -1.6880784034729004 rad - pos: -308.71768,98.216576 - parent: invalid - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: VAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA - version: 6 - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - updateAccumulator: 0.7088385 - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - enabled: True - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Dirt - decals: - 19: 1,-2 - 20: -3,-9 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Dirt - decals: - 21: -1,-5 - 22: -2,-3 - - node: - cleanable: True - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Dirt - decals: - 23: 1,-4 - 24: 1,0 - 25: -2,-5 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 13: -3,-3 - 18: -3,-5 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 14: -3,-4 - - node: - color: '#A4610696' - id: WarnCornerGreyscaleNW - decals: - 5: -3,-2 - - node: - color: '#A4610696' - id: WarnCornerGreyscaleSE - decals: - 11: -1,-6 - - node: - color: '#A4610696' - id: WarnCornerGreyscaleSW - decals: - 15: -3,-6 - - node: - color: '#A4610696' - id: WarnCornerSmallGreyscaleSE - decals: - 16: -1,-5 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 0: 1,-5 - 1: 1,-4 - 2: 1,-3 - 3: 1,-2 - - node: - color: '#A4610696' - id: WarnLineGreyscaleN - decals: - 6: -2,-2 - 7: -1,-2 - 8: 0,-2 - 9: 1,-2 - - node: - color: '#A4610696' - id: WarnLineGreyscaleS - decals: - 4: -2,-6 - 10: 1,-5 - 17: 0,-5 - - node: - color: '#A4610696' - id: WarnLineGreyscaleW - decals: - 12: -3,-4 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 1 - 1: 16 - 2: 2 - 3: 32 - 4: 1032 - -1,0: - 5: 8 - 6: 128 - 4: 1027 - -1,-1: - 4: 4096 - 7: 16 - 8: 512 - 9: 32 - 10: 2 - 11: 1024 - 12: 64 - 13: 4 - 14: 2048 - 15: 128 - 16: 8 - 0,-1: - 17: 8192 - 18: 256 - 19: 16 - 20: 1 - 21: 512 - 22: 32 - 23: 2 - 24: 1024 - 25: 64 - 26: 4 - 27: 2048 - 28: 128 - 29: 8 - 1,-1: - 4: 12834 - -2,-1: - 4: 34952 - -2,-2: - 4: 34952 - -2,-3: - 4: 34952 - -1,-2: - 30: 4096 - 31: 8192 - 32: 512 - 33: 32 - 34: 2 - 35: 16384 - 36: 1024 - 37: 4 - 38: 32768 - 39: 2048 - 40: 8 - -1,-3: - 41: 8192 - 42: 16384 - 43: 32768 - 4: 319 - 44: 1024 - 45: 2048 - 0,-2: - 46: 4096 - 47: 8192 - 48: 512 - 49: 32 - 50: 2 - 51: 16384 - 52: 64 - 53: 4 - 54: 32768 - 55: 128 - 56: 8 - 0,-3: - 57: 8192 - 58: 512 - 59: 16384 - 60: 32768 - 61: 1024 - 4: 143 - 1,-2: - 4: 8738 - 1,-3: - 4: 9011 - 1,0: - 4: 1 - uniqueMixes: - - volume: 2500 - temperature: 269.57394 - moles: - - 25.021006 - - 94.43931 - - 0.08848137 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 270.39658 - moles: - - 25.098469 - - 94.43984 - - 0.010480657 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 266.54736 - moles: - - 25.030493 - - 94.41844 - - 0.07594149 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 267.39496 - moles: - - 25.087238 - - 94.43772 - - 0.02383063 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 272.81903 - moles: - - 25.097153 - - 94.44096 - - 0.010678447 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 273.76242 - moles: - - 25.102077 - - 94.44176 - - 0.004932466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 198.37727 - moles: - - 16.393955 - - 61.746143 - - 0.018792054 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04495 - moles: - - 25.04396 - - 94.43045 - - 0.074379824 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.18768 - moles: - - 25.026722 - - 94.42599 - - 0.0960777 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 259.56342 - moles: - - 25.043549 - - 94.34725 - - 0.15800287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.05914 - moles: - - 25.077862 - - 94.43057 - - 0.040348668 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.40985 - moles: - - 25.074844 - - 94.43049 - - 0.04344559 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 258.5457 - moles: - - 25.049837 - - 94.389 - - 0.10996055 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.39838 - moles: - - 25.075464 - - 94.43116 - - 0.042168394 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.39523 - moles: - - 25.07569 - - 94.43118 - - 0.041926835 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.42435 - moles: - - 25.070354 - - 94.430984 - - 0.04744841 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 264.34177 - moles: - - 25.072424 - - 94.43622 - - 0.04014627 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.06244 - moles: - - 25.011665 - - 94.43336 - - 0.10376198 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.4175 - moles: - - 25.060724 - - 94.43118 - - 0.05687405 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.0789 - moles: - - 25.012682 - - 94.4118 - - 0.100399524 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 261.97345 - moles: - - 25.075764 - - 94.45359 - - 0.04335207 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.32135 - moles: - - 25.075739 - - 94.43473 - - 0.03832933 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.0767 - moles: - - 25.027588 - - 94.43067 - - 0.090527594 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 259.48233 - moles: - - 25.089544 - - 94.43392 - - 0.02531699 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.09097 - moles: - - 25.085152 - - 94.430626 - - 0.03301054 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.085041 - - 94.43058 - - 0.033191673 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.06088 - moles: - - 25.085236 - - 94.43059 - - 0.032957412 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.08521 - - 94.430565 - - 0.033012252 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.085209 - - 94.430565 - - 0.033012994 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1414 - moles: - - 21.82488 - - 82.12206 - - 0.005047394 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.877 - moles: - - 25.040531 - - 94.33968 - - 0.16397452 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 261.32794 - moles: - - 25.0235 - - 94.271454 - - 0.2538315 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 262.03406 - moles: - - 25.002243 - - 94.18798 - - 0.37279496 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 262.94922 - moles: - - 24.98611 - - 94.12289 - - 0.5070784 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.664 - moles: - - 25.049528 - - 94.38006 - - 0.10080146 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.87082 - moles: - - 25.041878 - - 94.34474 - - 0.16216867 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 262.95764 - moles: - - 24.98611 - - 94.12289 - - 0.5100199 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.53217 - moles: - - 25.053381 - - 94.3975 - - 0.068081886 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 260.57828 - moles: - - 25.05084 - - 94.383514 - - 0.11443096 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 264.20422 - moles: - - 24.975145 - - 94.05519 - - 0.54119706 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 262.53287 - moles: - - 24.983717 - - 94.11781 - - 0.4700078 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 263.71866 - moles: - - 24.974972 - - 94.063225 - - 0.53332686 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 264.53473 - moles: - - 24.99326 - - 94.114716 - - 0.46355677 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 264.53473 - moles: - - 24.993305 - - 94.1149 - - 0.46334273 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 264.53473 - moles: - - 24.993305 - - 94.11489 - - 0.46334267 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 258.51654 - moles: - - 25.016468 - - 94.44152 - - 0.09079758 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.0654 - moles: - - 25.072323 - - 94.43097 - - 0.045495376 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04425 - moles: - - 25.042206 - - 94.36926 - - 0.059702676 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04462 - moles: - - 25.062756 - - 94.38812 - - 0.04417165 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04388 - moles: - - 25.068924 - - 94.38814 - - 0.038007095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.085066 - - 94.430595 - - 0.03312621 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073523 - - 94.38812 - - 0.033416156 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.0435 - moles: - - 25.05927 - - 94.38814 - - 0.047663108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.08521 - - 94.43057 - - 0.033010256 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073935 - - 94.38813 - - 0.032997802 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073895 - - 94.38812 - - 0.03303893 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073936 - - 94.38812 - - 0.032999363 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073936 - - 94.38813 - - 0.03299755 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073935 - - 94.38814 - - 0.032997545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073935 - - 94.38813 - - 0.032997552 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 257.04358 - moles: - - 25.073936 - - 94.38812 - - 0.03299754 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Loader - type: BecomesStation - - type: NavMap - - color: '#F6CE9C9C' - type: IFF -- proto: ActionToggleSuitPiece - entities: - - uid: 149 - components: - - flags: InContainer - type: MetaData - - parent: 147 - type: Transform - - container: 147 - entIcon: 148 - type: InstantAction -- proto: AirAlarm - entities: - - uid: 2 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 98 - - 99 - address: AIR-5716-3003 - transmitFrequency: 1621 - receiveFrequency: 1621 - type: DeviceNetwork - - devices: - - 98 - - 99 - type: DeviceList - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 3 - type: ContainerContainer -- proto: AirAlarmElectronics - entities: - - uid: 3 - components: - - flags: InContainer - type: MetaData - - parent: 2 - type: Transform - - canCollide: False - type: Physics -- proto: AirCanister - entities: - - uid: 4 - components: - - pos: -0.49996567,-5.5002747 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: Airlock - entities: - - uid: 5 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: AirlockCommand - entities: - - uid: 6 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: AirlockEngineering - entities: - - uid: 7 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: AirlockGlassShuttle - entities: - - uid: 8 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics - - uid: 9 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics -- proto: APCBasic - entities: - - uid: 10 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-6.5 - parent: 1 - type: Transform - - hasAccess: True - lastUiUpdate: 361.7985528 - lastExternalState: Low - lastChargeState: Full - type: Apc - - loadingNetworkDemand: 12288 - currentReceiving: 12288.096 - currentSupply: 12288 - type: PowerNetworkBattery - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics -- proto: AtmosDeviceFanTiny - entities: - - uid: 11 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- proto: Beaker - entities: - - uid: 14 - components: - - flags: InContainer - type: MetaData - - parent: 13 - type: Transform - - canCollide: False - type: Physics -- proto: BlockGameArcade - entities: - - uid: 17 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight -- proto: CableApcExtension - entities: - - uid: 18 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 23 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 26 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 27 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 28 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 29 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 30 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 32 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 33 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 34 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 35 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 36 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 37 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 38 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 39 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 40 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 42 - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 44 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 45 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 46 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 47 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 48 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 49 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 50 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform -- proto: CarpetOrange - entities: - - uid: 51 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 52 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 53 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 54 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 55 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 56 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 57 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 58 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 59 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 60 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 61 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform -- proto: Catwalk - entities: - - uid: 62 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 63 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 65 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 67 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 68 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 69 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform -- proto: Chair - entities: - - uid: 70 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 71 - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: CigarGold - entities: - - uid: 226 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 227 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 228 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 229 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 230 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 231 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 232 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics - - uid: 233 - components: - - flags: InContainer - type: MetaData - - parent: 225 - type: Transform - - canCollide: False - type: Physics -- proto: CigarGoldCase - entities: - - uid: 225 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - storageUsed: 8 - type: Storage - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 226 - - 227 - - 228 - - 229 - - 230 - - 231 - - 232 - - 233 - type: ContainerContainer - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClosetWallEmergency - entities: - - uid: 145 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 257.3953 - moles: - - 2.0093813 - - 7.5669513 - - 0.0033588305 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 146 - - 147 - - 150 - type: ContainerContainer - - dnas: [] - fibers: [] - fingerprints: - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: ClothingHandsGlovesCaptain - entities: - - uid: 235 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatCapcap - entities: - - uid: 238 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatCaptain - entities: - - uid: 237 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 148 - components: - - flags: InContainer - type: MetaData - - parent: 147 - type: Transform - - canCollide: False - type: Physics - - AttachedUid: 147 - type: AttachedClothing -- proto: ClothingMaskBreath - entities: - - uid: 146 - components: - - flags: InContainer - type: MetaData - - parent: 145 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskGasSecurity - entities: - - uid: 72 - components: - - rot: 0.02606545388698578 rad - pos: 2.4628181,1.0513611 - parent: 1 - type: Transform - - sleepTime: 346.62604 - type: Physics -- proto: ClothingNeckCloakCap - entities: - - uid: 234 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckCloakCapFormal - entities: - - uid: 224 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckMantleCap - entities: - - uid: 221 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 236 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]20%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterSuitEmergency - entities: - - uid: 147 - components: - - flags: InContainer - type: MetaData - - parent: 145 - type: Transform - - clothingUid: 148 - actionEntity: 149 - type: ToggleableClothing - - containers: - toggleable-clothing: !type:ContainerSlot - showEnts: False - occludes: True - ent: 148 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 149 - type: ContainerContainer - - canCollide: False - type: Physics - - type: ActionsContainer - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtCapFormalDress - entities: - - uid: 222 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - station: invalid - nextUpdate: 363.8652192 - mode: SensorVitals - type: SuitSensor - - address: 197E-7E8B - transmitFrequency: 1262 - type: DeviceNetwork - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCapFormal - entities: - - uid: 223 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - station: invalid - nextUpdate: 363.8652192 - type: SuitSensor - - address: 22A2-08E3 - transmitFrequency: 1262 - type: DeviceNetwork - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ComputerShuttle - entities: - - uid: 73 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 74 - type: ContainerContainer - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: ComputerStationRecords - entities: - - uid: 75 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics -- proto: ConveyorBelt - entities: - - uid: 76 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - - links: - - 181 - type: DeviceLinkSink - - uid: 77 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - links: - - 181 - type: DeviceLinkSink - - uid: 78 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - links: - - 181 - type: DeviceLinkSink -- proto: DrinkFlask - entities: - - uid: 220 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: DrinkGlass - entities: - - uid: 79 - components: - - pos: 3.7306519,-7.5736084 - parent: 1 - type: Transform - - initialDescription: A metamorphic glass that automagically turns into a glass appropriate for the drink within. There's a sanded off patent number on the bottom. - initialName: metamorphic glass - type: TransformableContainer - - canCollide: False - type: Physics - - uid: 80 - components: - - pos: 3.3869934,-7.8861694 - parent: 1 - type: Transform - - initialDescription: A metamorphic glass that automagically turns into a glass appropriate for the drink within. There's a sanded off patent number on the bottom. - initialName: metamorphic glass - type: TransformableContainer - - canCollide: False - type: Physics - - uid: 81 - components: - - rot: -1.7484556025237907E-07 rad - pos: 3.4461365,-7.4596252 - parent: 1 - type: Transform - - initialDescription: A metamorphic glass that automagically turns into a glass appropriate for the drink within. There's a sanded off patent number on the bottom. - initialName: metamorphic glass - type: TransformableContainer - - canCollide: False - type: Physics - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics -- proto: EmergencyLight - entities: - - uid: 82 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 1 - type: ApcPowerReceiver - - startingCharge: 30000 - type: Battery - - uid: 83 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 1 - type: ApcPowerReceiver - - startingCharge: 30000 - type: Battery - - uid: 84 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 1 - type: ApcPowerReceiver - - startingCharge: 30000 - type: Battery -- proto: EmergencyOxygenTankFilled - entities: - - uid: 150 - components: - - flags: InContainer - type: MetaData - - parent: 145 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ExtinguisherCabinetFilled - entities: - - uid: 129 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - containers: - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: 130 - type: ContainerContainer -- proto: FaxMachineShip - entities: - - uid: 85 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - name: NT14 Loader PR-712 - type: FaxMachine -- proto: FireExtinguisher - entities: - - uid: 130 - components: - - flags: InContainer - type: MetaData - - parent: 129 - type: Transform - - canCollide: False - type: Physics -- proto: GasPassiveVent - entities: - - uid: 86 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 87 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 88 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 89 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - type: Transform -- proto: GasPipeStraight - entities: - - uid: 90 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 91 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 92 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 93 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 94 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 95 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 96 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform -- proto: GasPort - entities: - - uid: 97 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform -- proto: GasVentPump - entities: - - uid: 98 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 2 - address: VNT-232C-B91F - transmitFrequency: 1621 - receiveFrequency: 1621 - type: DeviceNetwork - - registeredDevices: - - AIR-5716-3003 - trippedThresholds: - - Temperature - gasThresholds: - Oxygen: - lowerWarnAround: - threshold: 1.5 - enabled: True - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0.1 - enabled: True - upperBound: - threshold: 0 - enabled: False - ignore: False - Nitrogen: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0 - enabled: False - ignore: True - CarbonDioxide: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0025 - enabled: True - ignore: False - Plasma: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0001 - enabled: True - ignore: False - Tritium: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0001 - enabled: True - ignore: False - WaterVapor: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 1.5 - enabled: True - ignore: False - Miasma: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.05 - enabled: True - ignore: False - NitrousOxide: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.01 - enabled: True - ignore: False - Frezon: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0001 - enabled: True - ignore: False - pressureThreshold: - lowerWarnAround: - threshold: 2.5 - enabled: True - upperWarnAround: - threshold: 0.7 - enabled: True - lowerBound: - threshold: 20 - enabled: True - upperBound: - threshold: 550 - enabled: True - ignore: False - temperatureThreshold: - lowerWarnAround: - threshold: 1.1 - enabled: True - upperWarnAround: - threshold: 0.8 - enabled: True - lowerBound: - threshold: 193.15 - enabled: True - upperBound: - threshold: 393.15 - enabled: True - ignore: False - type: AtmosMonitor -- proto: GasVentScrubber - entities: - - uid: 99 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 2 - address: SCR-4673-15A4 - transmitFrequency: 1621 - receiveFrequency: 1621 - type: DeviceNetwork - - registeredDevices: - - AIR-5716-3003 - gasThresholds: - Oxygen: - lowerWarnAround: - threshold: 1.5 - enabled: True - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0.1 - enabled: True - upperBound: - threshold: 0 - enabled: False - ignore: False - Nitrogen: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0 - enabled: False - ignore: True - CarbonDioxide: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0025 - enabled: True - ignore: False - Plasma: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0001 - enabled: True - ignore: False - Tritium: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0001 - enabled: True - ignore: False - WaterVapor: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 1.5 - enabled: True - ignore: False - Miasma: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.05 - enabled: True - ignore: False - NitrousOxide: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0.5 - enabled: True - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.01 - enabled: True - ignore: False - Frezon: - lowerWarnAround: - threshold: 0 - enabled: False - upperWarnAround: - threshold: 0 - enabled: False - lowerBound: - threshold: 0 - enabled: False - upperBound: - threshold: 0.0001 - enabled: True - ignore: False - pressureThreshold: - lowerWarnAround: - threshold: 2.5 - enabled: True - upperWarnAround: - threshold: 0.7 - enabled: True - lowerBound: - threshold: 20 - enabled: True - upperBound: - threshold: 550 - enabled: True - ignore: False - temperatureThreshold: - lowerWarnAround: - threshold: 1.1 - enabled: True - upperWarnAround: - threshold: 0.8 - enabled: True - lowerBound: - threshold: 193.15 - enabled: True - upperBound: - threshold: 393.15 - enabled: True - ignore: False - type: AtmosMonitor -- proto: GravityGeneratorMini - entities: - - uid: 100 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 101 - components: - - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 102 - components: - - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 103 - components: - - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 104 - components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 105 - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 106 - components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 107 - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 108 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 109 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 110 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 111 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 112 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 113 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 114 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 115 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform -- proto: Gyroscope - entities: - - uid: 116 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight -- proto: LightTube - entities: - - uid: 118 - components: - - flags: InContainer - type: MetaData - - parent: 117 - type: Transform - - canCollide: False - type: Physics - - uid: 120 - components: - - flags: InContainer - type: MetaData - - parent: 119 - type: Transform - - canCollide: False - type: Physics - - uid: 122 - components: - - flags: InContainer - type: MetaData - - parent: 121 - type: Transform - - canCollide: False - type: Physics - - uid: 124 - components: - - flags: InContainer - type: MetaData - - parent: 123 - type: Transform - - canCollide: False - type: Physics - - uid: 126 - components: - - flags: InContainer - type: MetaData - - parent: 125 - type: Transform - - canCollide: False - type: Physics - - uid: 128 - components: - - flags: InContainer - type: MetaData - - parent: 127 - type: Transform - - canCollide: False - type: Physics -- proto: LockerCaptainFilled - entities: - - uid: 219 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 267.3065 - moles: - - 2.0098178 - - 7.5645676 - - 0.0016108626 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 239 - - 238 - - 237 - - 236 - - 235 - - 234 - - 225 - - 224 - - 223 - - 222 - - 221 - - 220 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - dnas: [] - fibers: [] - fingerprints: - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: Paper - entities: - - uid: 132 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 133 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 134 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 135 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 136 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 137 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 138 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 139 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 140 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 141 - components: - - flags: InContainer - type: MetaData - - parent: 131 - type: Transform - - canCollide: False - type: Physics - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.25 - - 0.25,-0.25 - - 0.25,0.25 - - -0.25,0.25 - mask: - - Impassable - - HighImpassable - layer: [] - density: 20 - hard: True - restitution: 0.3 - friction: 0.2 - flammable: - shape: !type:PhysShapeCircle - radius: 0.35 - position: 0,0 - mask: - - MidImpassable - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures -- proto: PaperBin10 - entities: - - uid: 131 - components: - - pos: 3.4998932,-6.4998627 - parent: 1 - type: Transform - - items: - - 132 - - 133 - - 134 - - 135 - - 136 - - 137 - - 138 - - 139 - - 140 - - 141 - type: Bin - - containers: - bin-container: !type:Container - showEnts: False - occludes: True - ents: - - 132 - - 133 - - 134 - - 135 - - 136 - - 137 - - 138 - - 139 - - 140 - - 141 - type: ContainerContainer -- proto: Pen - entities: - - uid: 142 - components: - - pos: 3.3887634,-7.009796 - parent: 1 - type: Transform - - canCollide: False - type: Physics -- proto: PlasticFlapsAirtightClear - entities: - - uid: 143 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform -- proto: PortableGeneratorPacman - entities: - - uid: 144 - components: - - anchored: True - pos: -1.5,-7.5 - parent: 1 - type: Transform - - on: True - type: FuelGenerator - - fractionalMaterial: 0.68947536 - type: SolidFuelGeneratorAdapter - - storage: - Plasma: 2685 - type: MaterialStorage - - bodyType: Static - type: Physics - - enabled: True - supplyRampPosition: 15000 - supplyRate: 15000 - type: PowerSupplier - - type: ItemCooldown - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -- proto: Poweredlight - entities: - - uid: 117 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 118 - type: ContainerContainer - - powerLoad: 25 - type: ApcPowerReceiver - - address: 518D-8DAB - receiveFrequency: 1173 - type: DeviceNetwork - - uid: 119 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 120 - type: ContainerContainer - - powerLoad: 25 - type: ApcPowerReceiver - - address: 3228-A5FC - receiveFrequency: 1173 - type: DeviceNetwork - - uid: 121 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 122 - type: ContainerContainer - - powerLoad: 25 - type: ApcPowerReceiver - - address: 6E2E-612A - receiveFrequency: 1173 - type: DeviceNetwork - - uid: 123 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 124 - type: ContainerContainer - - powerLoad: 25 - type: ApcPowerReceiver - - address: 111B-6AF6 - receiveFrequency: 1173 - type: DeviceNetwork - - uid: 125 - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 126 - type: ContainerContainer - - powerLoad: 25 - type: ApcPowerReceiver - - address: 452A-DE7B - receiveFrequency: 1173 - type: DeviceNetwork - - uid: 127 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 128 - type: ContainerContainer - - powerLoad: 25 - type: ApcPowerReceiver - - address: 6552-00EC - receiveFrequency: 1173 - type: DeviceNetwork -- proto: RubberStampCaptain - entities: - - uid: 239 - components: - - flags: InContainer - type: MetaData - - parent: 219 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetSteel1 - entities: - - uid: 15 - components: - - flags: InContainer - type: MetaData - - parent: 13 - type: Transform - - size: 5 - type: Item - - count: 5 - type: Stack - - canCollide: False - type: Physics -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 74 - components: - - flags: InContainer - type: MetaData - - parent: 73 - type: Transform - - canCollide: False - type: Physics -- proto: ShuttleWindow - entities: - - uid: 151 - components: - - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 152 - components: - - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 153 - components: - - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 154 - components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 155 - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 156 - components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 157 - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 158 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 159 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 160 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 161 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 162 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 163 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 164 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 165 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 166 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - startingCharge: 5800471 - type: Battery - - loadingNetworkDemand: 12285.049 - currentReceiving: 15000 - currentSupply: 12285.049 - type: PowerNetworkBattery -- proto: soda_dispenser - entities: - - uid: 13 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: - - 16 - machine_parts: !type:Container - showEnts: False - occludes: True - ents: - - 15 - - 14 - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics -- proto: SodaDispenserMachineCircuitboard - entities: - - uid: 16 - components: - - flags: InContainer - type: MetaData - - parent: 13 - type: Transform - - canCollide: False - type: Physics -- proto: SpawnPointCargoTechnician - entities: - - uid: 167 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 168 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 169 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - - loadingNetworkDemand: 12288.096 - currentReceiving: 12285.049 - currentSupply: 12288.096 - supplyRampPosition: 3.0458984 - type: PowerNetworkBattery -- proto: Table - entities: - - uid: 170 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 171 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 172 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - uid: 173 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 174 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform -- proto: Thruster - entities: - - uid: 175 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.45,-0.45 - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - - BulletImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - thruster-burn: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,0.5 - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 176 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.45,-0.45 - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - - BulletImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - thruster-burn: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,0.5 - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 177 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.45,-0.45 - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - - BulletImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - thruster-burn: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,0.5 - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 178 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.45,-0.45 - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - - BulletImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - thruster-burn: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,0.5 - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 179 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.45,-0.45 - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - - BulletImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - thruster-burn: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,0.5 - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures - - uid: 180 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 - type: Transform - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.45,-0.45 - - 0.45,-0.45 - - 0.45,0.45 - - -0.45,0.45 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - MidImpassable - - LowImpassable - - BulletImpassable - density: 60 - hard: True - restitution: 0 - friction: 0.4 - thruster-burn: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,0.5 - - 0.4,0.5 - - 0.1,1.2 - - -0.1,1.2 - mask: [] - layer: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - type: Fixtures -- proto: TwoWayLever - entities: - - uid: 181 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - address: 183B-9C31 - type: DeviceNetwork - - linkedPorts: - 77: - - Left: Forward - - Right: Reverse - - Middle: Off - 78: - - Left: Forward - - Right: Reverse - - Middle: Off - 76: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - type: Forensics - - type: ItemCooldown -- proto: WallShuttle - entities: - - uid: 182 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 183 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 184 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 185 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 186 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 187 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 188 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 189 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 190 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 191 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 192 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 193 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 194 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 195 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 196 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 197 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 198 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 199 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 1 - type: Transform - - uid: 200 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 201 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 202 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 203 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 204 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 205 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 206 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 207 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 208 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 209 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 210 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 211 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 212 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 213 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 214 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 215 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 216 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform -- proto: WarpPointShip - entities: - - uid: 217 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - location: NT14 Loader PR-712 - type: WarpPoint -- proto: Wrench - entities: - - uid: 218 - components: - - pos: -1.5024719,-8.224426 - parent: 1 - type: Transform - - nextAttack: 74.6830372 - type: MeleeWeapon - - canCollide: False - type: Physics - - dnas: [] - fibers: [] - fingerprints: - - 98A9D30591CBB21CB242CBC3D30C1D80 - - C543A119643BFD4A2CA94F3400243026 - type: Forensics -... diff --git a/Resources/Maps/Shuttles/mail.yml b/Resources/Maps/Shuttles/mail.yml index a73e8dc4966..f324b6730bf 100644 --- a/Resources/Maps/Shuttles/mail.yml +++ b/Resources/Maps/Shuttles/mail.yml @@ -1,14 +1,14 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 31: FloorDarkMono - 75: FloorSteel - 83: FloorSteelMono - 87: FloorTechMaint - 103: Lattice - 104: Plating + 32: FloorDarkMono + 84: FloorSteel + 92: FloorSteelMono + 96: FloorTechMaint + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -21,16 +21,20 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: SwAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABoAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAADHwAAAWcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAWgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABnAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: VAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADIAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABXAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAVwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAA2gAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABTAAACSwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAXAAAAAACVAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABLAAACSwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAUwAAAUsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABLAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAABoAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAXAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -55,14 +59,14 @@ entities: color: '#95E5FFFF' id: ArrowsGreyscale decals: - 14: -2,1 - 15: -2,-1 + 12: -2,1 + 13: -2,-1 - node: color: '#95E5FFB2' id: BotGreyscale decals: - 12: -2,1 - 13: -2,-1 + 10: -2,1 + 11: -2,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -76,31 +80,39 @@ entities: color: '#66A2FFFF' id: BrickTileWhiteLineE decals: - 7: 0,3 - 8: 0,2 - 9: 0,1 - 10: 0,0 - 11: 0,-1 + 5: 0,3 + 6: 0,2 + 7: 0,1 + 8: 0,0 + 9: 0,-1 - node: color: '#FFFFFFFF' - id: WarnLineE + id: WarnCornerSE decals: - 5: 0,-2 - 6: 0,-3 + 14: 0,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 15: -1,-2 type: DecalGrid - version: 2 data: tiles: 0,0: - 0: 30583 + 0: 29555 + 1: 1028 0,-1: 0: 30583 -1,-1: - 0: 61160 + 1: 32 + 0: 61128 -1,0: - 0: 61166 + 0: 52974 + 1: 8192 0,1: - 0: 7 + 0: 3 + 1: 4 -1,1: 0: 12 uniqueMixes: @@ -119,6 +131,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -126,6 +153,29 @@ entities: - id: MailTruck type: BecomesStation - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 109 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 103 + type: Transform + - ShutdownSubscribers: + - 99 + - 51 + type: DeviceNetwork + - devices: + - 99 + - 51 + type: DeviceList +- proto: AirCanister + entities: + - uid: 50 + components: + - pos: -0.5,-1.5 + parent: 103 + type: Transform - proto: AirlockGlassShuttle entities: - uid: 13 @@ -140,17 +190,6 @@ entities: pos: -2.5,-0.5 parent: 103 type: Transform -- proto: AirTankFilled - entities: - - uid: 50 - components: - - flags: InContainer - type: MetaData - - parent: 49 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: APCBasic entities: - uid: 66 @@ -176,6 +215,33 @@ entities: - pos: -2.5,-0.5 parent: 103 type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 97 + components: + - pos: -2.5,-2.5 + parent: 103 + type: Transform + - uid: 98 + components: + - pos: 2.5,0.5 + parent: 103 + type: Transform + - uid: 110 + components: + - pos: -2.5,3.5 + parent: 103 + type: Transform + - uid: 111 + components: + - pos: 2.5,4.5 + parent: 103 + type: Transform + - uid: 112 + components: + - pos: 2.5,2.5 + parent: 103 + type: Transform - proto: CableApcExtension entities: - uid: 67 @@ -183,8 +249,6 @@ entities: - pos: 1.5,-0.5 parent: 103 type: Transform - - enabled: True - type: AmbientSound - uid: 68 components: - pos: 0.5,-0.5 @@ -235,8 +299,6 @@ entities: - pos: 1.5,3.5 parent: 103 type: Transform - - enabled: True - type: AmbientSound - uid: 78 components: - pos: -0.5,3.5 @@ -264,61 +326,16 @@ entities: type: Transform - proto: CableHV entities: - - uid: 58 - components: - - pos: -1.5,-1.5 - parent: 103 - type: Transform - - enabled: True - type: AmbientSound - - uid: 59 - components: - - pos: -0.5,-1.5 - parent: 103 - type: Transform - uid: 60 components: - pos: -0.5,-2.5 parent: 103 type: Transform - - enabled: True - type: AmbientSound - - uid: 96 - components: - - pos: -1.5,-0.5 - parent: 103 - type: Transform - - uid: 97 - components: - - pos: -1.5,0.5 - parent: 103 - type: Transform - - uid: 98 - components: - - pos: -1.5,1.5 - parent: 103 - type: Transform - - uid: 99 - components: - - pos: -1.5,2.5 - parent: 103 - type: Transform - - enabled: True - type: AmbientSound - - uid: 100 + - uid: 106 components: - - pos: -1.5,3.5 - parent: 103 - type: Transform - - enabled: True - type: AmbientSound - - uid: 101 - components: - - pos: -2.5,0.5 + - pos: 0.5,-2.5 parent: 103 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 61 @@ -326,8 +343,6 @@ entities: - pos: -0.5,-2.5 parent: 103 type: Transform - - enabled: True - type: AmbientSound - uid: 62 components: - pos: 0.5,-2.5 @@ -348,8 +363,6 @@ entities: - pos: 1.5,-0.5 parent: 103 type: Transform - - enabled: True - type: AmbientSound - proto: Chair entities: - uid: 85 @@ -358,44 +371,14 @@ entities: pos: 0.5,2.5 parent: 103 type: Transform -- proto: ClosetEmergencyFilledRandom +- proto: ClosetWallEmergencyFilledRandom entities: - - uid: 49 + - uid: 52 components: - - pos: 0.5,-0.5 + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 parent: 103 type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 50 - - 51 - - 52 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: ClothingHeadMailCarrier entities: - uid: 92 @@ -403,28 +386,6 @@ entities: - pos: 0.29172873,0.90015525 parent: 103 type: Transform -- proto: ClothingMaskBreath - entities: - - uid: 51 - components: - - flags: InContainer - type: MetaData - - parent: 49 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterSuitEmergency - entities: - - uid: 52 - components: - - flags: InContainer - type: MetaData - - parent: 49 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingOuterWinterCoatMail entities: - uid: 93 @@ -439,6 +400,14 @@ entities: - pos: 0.5,3.5 parent: 103 type: Transform +- proto: EmergencyLight + entities: + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 103 + type: Transform - proto: FaxMachineShip entities: - uid: 53 @@ -446,18 +415,79 @@ entities: - pos: -0.5,3.5 parent: 103 type: Transform -- proto: GeneratorWallmountAPU +- proto: GasPassiveVent + entities: + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 103 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend entities: - uid: 56 components: - - pos: -1.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 parent: 103 type: Transform - - uid: 95 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 101 components: - - pos: -1.5,3.5 + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 103 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 105 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 103 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 103 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 51 + components: + - pos: -0.5,-0.5 + parent: 103 + type: Transform + - ShutdownSubscribers: + - 109 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 parent: 103 type: Transform + - ShutdownSubscribers: + - 109 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 24 @@ -539,6 +569,20 @@ entities: - pos: 1.5,2.5 parent: 103 type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 49 + components: + - anchored: True + pos: 0.5,-2.5 + parent: 103 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage - proto: Poweredlight entities: - uid: 88 @@ -563,6 +607,17 @@ entities: - pos: -0.5,2.5 parent: 103 type: Transform +- proto: SheetPlasma + entities: + - uid: 108 + components: + - pos: 0.541206,0.48403737 + parent: 103 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item - proto: ShuttersWindow entities: - uid: 84 @@ -570,9 +625,12 @@ entities: - pos: 1.5,2.5 parent: 103 type: Transform - - SecondsUntilStateChange: -1448.6954 - state: Opening + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 90 type: DeviceLinkSink @@ -828,4 +886,11 @@ entities: type: Transform - location: Mail Truck type: WarpPoint +- proto: Wrench + entities: + - uid: 107 + components: + - pos: 0.4699145,0.6320103 + parent: 103 + type: Transform ... diff --git a/Resources/Maps/Shuttles/marauder.yml b/Resources/Maps/Shuttles/marauder.yml index bf05017d6d7..f2c858f2f83 100644 --- a/Resources/Maps/Shuttles/marauder.yml +++ b/Resources/Maps/Shuttles/marauder.yml @@ -1,60 +1,69 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 23: FloorDark - 27: FloorDarkMini - 41: FloorGrass - 48: FloorKitchen - 52: FloorMetalDiamond - 60: FloorRockVault - 61: FloorShowroom - 69: FloorSteel - 72: FloorSteelDirty - 79: FloorTechMaint - 82: FloorWhite - 93: FloorWoodTile - 94: Lattice - 95: Plating + 27: FloorDark + 31: FloorDarkMini + 45: FloorGrass + 58: FloorKitchen + 62: FloorMetalDiamond + 74: FloorRockVault + 75: FloorShowroom + 84: FloorSteel + 89: FloorSteelDirty + 96: FloorTechMaint + 100: FloorWhite + 111: FloorWoodTile + 112: Lattice + 113: Plating entities: - proto: "" entities: - uid: 1 components: - - type: StationEmpImmune - type: MetaData - pos: 10,10 parent: invalid type: Transform + - type: StationEmpImmune - chunks: 0,0: ind: 0,0 - tiles: FwAAARcAAAJIAAAASAAAAF8AAAA8AAAAAAAAAAAAAAAAAAAAAAAAADwAAABfAAAAXwAAAF8AAAA8AAAAAAAAABcAAAMXAAADXwAAAF8AAABfAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAPAAAAAAAAAAXAAADFwAAAkgAAABIAAAAXwAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAFwAAARcAAAJIAAAASAAAAEgAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIXAAABXwAAAF8AAABfAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAE8AAABPAAAATwAAAE8AAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV8AAABPAAAATwAAAE8AAAAXAAADXwAAAF8AAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABfAAAATwAAAE8AAABPAAAAFwAAAhcAAAMXAAABNAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAE8AAABPAAAATwAAABcAAAMXAAAAFwAAAF8AAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAk8AAABPAAAATwAAAE8AAAAXAAACFwAAARcAAAI0AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAADFwAAAhcAAAIXAAAAFwAAAxcAAABfAAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABXwAAAF0AAABdAAAAFwAAAT0AAAA9AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAFdAAAAXQAAABcAAAE9AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAACXQAAAF0AAAAXAAADPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAF0AAABdAAAAXQAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAxsAAANdAAAAXQAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GwAAAAADGwAAAAABWQAAAAAAWQAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAAAAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAGwAAAAABGwAAAAAAWQAAAAAAWQAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAAGwAAAAABGwAAAAADPgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAPgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADcQAAAAAAbwAAAAABbwAAAAAAGwAAAAABSwAAAAAASwAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAbwAAAAACbwAAAAACGwAAAAAASwAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACbwAAAAABbwAAAAADGwAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADbwAAAAADbwAAAAACbwAAAAABSgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADbwAAAAADbwAAAAADSgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAA0AAAANAAAADQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAANAAAADQAAAA0AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAXwAAADQAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAF8AAAA0AAAAFwAAAl8AAABfAAAAXwAAAF8AAAA0AAAAXwAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABfAAAAFwAAAhcAAAIXAAACXwAAAAAAAAA0AAAANAAAADQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABfAAAAXwAAABcAAAIXAAABFwAAAl8AAAAAAAAAXwAAADQAAABfAAAAPAAAADwAAAA8AAAAPAAAADwAAAAXAAADFwAAAxcAAAAXAAADFwAAABcAAANfAAAAAAAAABcAAAEXAAAAFwAAAhcAAAMXAAABFwAAAxcAAAEXAAAAFwAAAxcAAAIXAAACFwAAAhcAAAMXAAACXwAAAAAAAAAXAAAAFwAAAhcAAAMXAAACFwAAARcAAAAXAAABFwAAAhcAAAIXAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAFwAAAxcAAAEXAAABFwAAAhcAAAAXAAADFwAAABcAAAM8AAAAPAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAACkAAAAwAAAAMAAAADAAAAAwAAAAMAAAABcAAAM8AAAAPAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXwAAAAAAAABFAAAAMAAAADAAAAAwAAAAMAAAADAAAAA8AAAAPAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAARQAAAzAAAAAwAAAAMAAAADAAAAA8AAAAPAAAADwAAAAAAAAAAAAAAF8AAABfAAAAXgAAAF8AAABfAAAAAAAAAEUAAAIwAAAAMAAAADAAAABfAAAAPAAAADwAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAXAAABFwAAAl8AAABfAAAAXwAAADwAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAFwAAABcAAAJIAAAASAAAAEgAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABfAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAPgAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADSgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAALQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAGwAAAAAASgAAAAAASgAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAVAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAVAAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAVAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAGwAAAAAAGwAAAAACWQAAAAAAWQAAAAAAWQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAA8AAAAXwAAAF8AAABfAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAXwAAABcAAAIXAAAAFwAAAgAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAF8AAAAXAAABFwAAAhcAAAMAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAABfAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAXwAAABcAAAAXAAAAFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAABcAAAAXAAAAFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAAFIAAABSAAAAUgAAAlIAAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAXwAAABcAAAMXAAADUgAAAFIAAABSAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAFwAAAk8AAABPAAAAFwAAAlIAAABSAAAAUgAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAABcAAAJPAAAATwAAAE8AAABSAAAAUgAAAFIAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAXAAACTwAAAE8AAABPAAAAFwAAABcAAAMXAAADFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAARcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA0AAAANAAAADQAAAAXAAACFwAAAhcAAAMXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAFwAAAxcAAAIXAAABFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAABcAAAIXAAAAFwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAAXAAAAFwAAABcAAAAXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAFwAAABcAAAAXAAAAGwAAAw== + tiles: AAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAABGwAAAAADZAAAAAABZAAAAAACZAAAAAABZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAGwAAAAABZAAAAAACZAAAAAAAZAAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAZAAAAAACZAAAAAACZAAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAGwAAAAACYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAGwAAAAAAGwAAAAABGwAAAAACHwAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAADQAAAA0AAAANAAAADQAAAA0AAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAANAAAADQAAAA0AAAANAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAADQAAAA0AAAANAAAADQAAABfAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAABcAAAM0AAAAXwAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAIXAAAAFwAAAF8AAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXwAAADQAAAAAAAAAAAAAAF8AAAAXAAACFwAAABcAAAFfAAAAXwAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADQAAAA0AAAAAAAAAAAAAABfAAAAFwAAARcAAAAXAAADFwAAABcAAAAXAAACPAAAADwAAAA8AAAAPAAAADwAAABfAAAANAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAEXAAABFwAAABcAAAMXAAABFwAAAxcAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAABcAAAEXAAADFwAAAxcAAAEXAAADFwAAAhcAAAAXAAACAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAADwAAAA8AAAAFwAAARcAAAAXAAADFwAAAhcAAAAXAAABFwAAAwAAAAAAAAAAXwAAAF4AAABeAAAAXgAAAF8AAAAAAAAAPAAAADwAAAAXAAADRQAAAEUAAABFAAADKQAAACkAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAA8AAAAPAAAAEUAAABFAAACRQAAAUUAAAJFAAABAAAAAAAAAABfAAAAXwAAAF4AAABfAAAAXwAAAAAAAAAAAAAAPAAAADwAAAA8AAAAFwAAA0UAAAJFAAABRQAAAgAAAAAAAAAAXwAAAF8AAABeAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAA8AAAAPAAAAF8AAABFAAABRQAAAEUAAAMAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAADwAAABfAAAAFwAAAhcAAAIXAAAAAAAAAAAAAABfAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAXwAAABcAAAAXAAABFwAAAQ== + tiles: AAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAASgAAAAAASgAAAAAAGwAAAAAAVAAAAAABVAAAAAADVAAAAAABLQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAABVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAANAAAADQAAAA0AAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAA0AAAANAAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAAbAAADGwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAGwAAABsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: GwAAARsAAAMbAAABPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAEbAAADGwAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAGwAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAABsAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HwAAAAADHwAAAAABHwAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABSgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -76,39 +85,39 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 21: -3,0 - 22: -3,-1 - 23: -2,-1 + 20: -3,0 + 21: -3,-1 + 22: -2,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 18: -2,-6 + 17: -2,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 19: -1,-6 - 20: 0,-6 + 18: -1,-6 + 19: 0,-6 - node: color: '#E97F004C' id: BrickTileWhiteLineE decals: - 32: 1,0 - 33: 1,2 + 31: 1,0 + 32: 1,2 - node: color: '#B4B4B4FF' id: CheckerNESW decals: - 17: 1,-6 + 16: 1,-6 - node: color: '#6FB2FB9B' id: CheckerNWSE decals: - 34: -2,5 - 35: -3,5 - 36: -4,5 - 37: -5,5 + 33: -2,5 + 34: -3,5 + 35: -4,5 + 36: -5,5 - node: color: '#B4000049' id: CheckerNWSE @@ -117,53 +126,53 @@ entities: 1: -3,12 2: -4,12 3: -4,11 - 5: -2,11 - 6: -3,11 - 7: -4,10 - 8: -3,10 - 9: -2,10 - 10: -2,9 - 11: -3,9 - 12: -4,9 - 13: -4,8 - 14: -3,8 - 15: -2,8 - 16: -1,11 + 4: -2,11 + 5: -3,11 + 6: -4,10 + 7: -3,10 + 8: -2,10 + 9: -2,9 + 10: -3,9 + 11: -4,9 + 12: -4,8 + 13: -3,8 + 14: -2,8 + 15: -1,11 - node: color: '#FFFFFFFF' id: StandClear decals: - 26: -12,-18 - 27: 12,-18 + 25: -12,-18 + 26: 12,-18 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 25: 3,-11 + 24: 3,-11 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 24: -3,-11 + 23: -3,-11 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 28: -14,-14 - 29: -14,-16 + 27: -14,-14 + 28: -14,-16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 30: 14,-16 - 31: 14,-14 + 29: 14,-16 + 30: 14,-14 - node: color: '#FFFFFFFF' id: b decals: - 38: -1.8067541,0.85464954 + 37: -1.8067541,0.85464954 type: DecalGrid - version: 2 data: @@ -179,12 +188,9 @@ entities: 1,0: 0: 29491 1,1: - 0: 32767 - 1: 32768 + 0: 65535 1,2: - 0: 65399 - 2: 8 - 3: 128 + 0: 65535 1,3: 0: 32767 2,1: @@ -321,51 +327,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.556696 - - 81.09423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -1031,15 +992,11 @@ entities: - pos: 12.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 96 components: - pos: -9.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 97 components: - pos: -4.5,-6.5 @@ -1095,50 +1052,36 @@ entities: - pos: -9.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 108 components: - pos: -9.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 109 components: - pos: -9.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 110 components: - pos: -9.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 111 components: - pos: -9.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 112 components: - pos: -9.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 113 components: - pos: 10.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 114 components: - pos: -12.5,-8.5 @@ -1149,64 +1092,46 @@ entities: - pos: -13.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 116 components: - pos: -13.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 117 components: - pos: -13.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 118 components: - pos: -13.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 119 components: - pos: -13.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 120 components: - pos: -13.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 121 components: - pos: -13.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 122 components: - pos: -13.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 123 components: - pos: -13.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 124 components: - pos: -13.5,0.5 @@ -1217,15 +1142,11 @@ entities: - pos: -12.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 126 components: - pos: -11.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 127 components: - pos: 5.5,-6.5 @@ -1286,50 +1207,36 @@ entities: - pos: 10.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 139 components: - pos: 10.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 140 components: - pos: 10.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 141 components: - pos: 10.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 142 components: - pos: 10.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 143 components: - pos: 10.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 144 components: - pos: 10.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 145 components: - pos: 10.5,0.5 @@ -1340,8 +1247,6 @@ entities: - pos: 11.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 147 components: - pos: -11.5,-15.5 @@ -1357,64 +1262,46 @@ entities: - pos: 14.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 150 components: - pos: 14.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 151 components: - pos: 14.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 152 components: - pos: 14.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 153 components: - pos: 14.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 154 components: - pos: 14.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 155 components: - pos: 14.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 156 components: - pos: 14.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 157 components: - pos: 14.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 158 components: - pos: -3.5,-7.5 @@ -1470,8 +1357,6 @@ entities: - pos: 0.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 169 components: - pos: 0.5,-4.5 @@ -1497,8 +1382,6 @@ entities: - pos: 0.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 174 components: - pos: 0.5,-10.5 @@ -1509,8 +1392,6 @@ entities: - pos: 0.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 176 components: - pos: -0.5,-9.5 @@ -1521,8 +1402,6 @@ entities: - pos: -1.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 178 components: - pos: -2.5,-9.5 @@ -1538,8 +1417,6 @@ entities: - pos: 2.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 181 components: - pos: 3.5,-9.5 @@ -1670,8 +1547,6 @@ entities: - pos: -9.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 207 components: - pos: -8.5,-11.5 @@ -1712,8 +1587,6 @@ entities: - pos: -1.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 215 components: - pos: -0.5,-11.5 @@ -1724,8 +1597,6 @@ entities: - pos: 0.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 217 components: - pos: 1.5,-11.5 @@ -1736,8 +1607,6 @@ entities: - pos: 2.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 219 components: - pos: 3.5,-11.5 @@ -1778,8 +1647,6 @@ entities: - pos: 10.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 227 components: - pos: 11.5,-11.5 @@ -2050,8 +1917,6 @@ entities: - pos: 8.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 281 components: - pos: 3.5,8.5 @@ -2077,8 +1942,6 @@ entities: - pos: 3.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 286 components: - pos: 3.5,3.5 @@ -2094,8 +1957,6 @@ entities: - pos: 3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 289 components: - pos: 3.5,0.5 @@ -2111,8 +1972,6 @@ entities: - pos: 3.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 292 components: - pos: 3.5,-2.5 @@ -2263,120 +2122,86 @@ entities: - pos: 12.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 322 components: - pos: 12.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 323 components: - pos: 12.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 324 components: - pos: 12.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 325 components: - pos: 12.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 326 components: - pos: 12.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 327 components: - pos: 12.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 328 components: - pos: 12.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 329 components: - pos: -11.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 330 components: - pos: -11.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 331 components: - pos: -11.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 332 components: - pos: -11.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 333 components: - pos: -11.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 334 components: - pos: -11.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 335 components: - pos: -11.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 336 components: - pos: -11.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 337 components: - pos: -11.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 338 components: - pos: 0.5,18.5 @@ -2570,8 +2395,6 @@ entities: - pos: 10.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 380 components: - pos: 0.5,10.5 @@ -2682,8 +2505,6 @@ entities: - pos: 0.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 402 components: - pos: 0.5,-6.5 @@ -2704,8 +2525,6 @@ entities: - pos: 0.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 406 components: - pos: -0.5,-9.5 @@ -2716,8 +2535,6 @@ entities: - pos: -1.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 408 components: - pos: -2.5,-9.5 @@ -2763,50 +2580,36 @@ entities: - pos: -9.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 417 components: - pos: -9.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 418 components: - pos: -9.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 419 components: - pos: -9.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 420 components: - pos: -9.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 421 components: - pos: -9.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 422 components: - pos: -9.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 423 components: - pos: 1.5,-9.5 @@ -2817,8 +2620,6 @@ entities: - pos: 2.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - pos: 3.5,-9.5 @@ -2864,43 +2665,31 @@ entities: - pos: 10.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 434 components: - pos: 10.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 435 components: - pos: 10.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 436 components: - pos: 10.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 437 components: - pos: 10.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 438 components: - pos: 10.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 439 components: - pos: 2.5,16.5 @@ -3099,8 +2888,6 @@ entities: - pos: 0.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 476 components: - pos: 0.5,-6.5 @@ -4264,47 +4051,35 @@ entities: - pos: 0.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 647 components: - rot: 3.141592653589793 rad pos: 0.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 648 components: - pos: 0.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 649 components: - rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 650 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 651 components: - rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GasMixer entities: - uid: 652 @@ -4339,8 +4114,6 @@ entities: - pos: -5.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 656 components: - pos: -4.5,9.5 @@ -4371,8 +4144,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 660 components: - rot: 3.141592653589793 rad @@ -4395,8 +4166,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 663 components: - rot: 1.5707963267948966 rad @@ -4405,8 +4174,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 664 components: - rot: 3.141592653589793 rad @@ -4424,8 +4191,6 @@ entities: pos: -6.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 667 components: - rot: -1.5707963267948966 rad @@ -4527,8 +4292,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 681 components: - rot: 1.5707963267948966 rad @@ -4623,8 +4386,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 693 components: - rot: 3.141592653589793 rad @@ -4681,8 +4442,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 700 components: - rot: 1.5707963267948966 rad @@ -4860,8 +4619,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 723 components: - rot: 3.141592653589793 rad @@ -5192,8 +4949,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 765 components: - rot: 1.5707963267948966 rad @@ -5202,8 +4957,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 766 components: - rot: 1.5707963267948966 rad @@ -5236,8 +4989,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 770 components: - rot: 1.5707963267948966 rad @@ -5246,8 +4997,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 771 components: - pos: -11.5,-8.5 @@ -5346,8 +5095,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 784 components: - rot: 3.141592653589793 rad @@ -5668,8 +5415,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVentPump @@ -5679,15 +5424,11 @@ entities: - pos: 4.5,14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 827 components: - pos: 0.5,16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 828 @@ -5696,8 +5437,6 @@ entities: pos: -2.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 829 @@ -5705,8 +5444,6 @@ entities: - pos: 3.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 830 @@ -5715,8 +5452,6 @@ entities: pos: 6.5,7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 831 @@ -5725,8 +5460,6 @@ entities: pos: 2.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 832 @@ -5735,8 +5468,6 @@ entities: pos: -1.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 833 @@ -5744,8 +5475,6 @@ entities: - pos: -3.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 834 @@ -5753,8 +5482,6 @@ entities: - pos: 4.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 835 @@ -5762,8 +5489,6 @@ entities: - pos: -0.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 836 @@ -5772,8 +5497,6 @@ entities: pos: 12.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 837 @@ -5782,8 +5505,6 @@ entities: pos: -11.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 838 @@ -5792,8 +5513,6 @@ entities: pos: -2.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 839 @@ -5802,8 +5521,6 @@ entities: pos: -1.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 840 @@ -5812,8 +5529,6 @@ entities: pos: 2.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 841 @@ -5822,8 +5537,6 @@ entities: pos: 2.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 842 @@ -5832,8 +5545,6 @@ entities: pos: -10.5,-14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 843 @@ -5842,8 +5553,6 @@ entities: pos: 11.5,-14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -5853,23 +5562,17 @@ entities: - pos: 2.5,14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 845 components: - rot: -1.5707963267948966 rad pos: 3.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 846 components: - pos: 2.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 847 @@ -5878,8 +5581,6 @@ entities: pos: 6.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 848 @@ -5888,8 +5589,6 @@ entities: pos: -2.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 849 @@ -5897,8 +5596,6 @@ entities: - pos: -0.5,15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 850 @@ -5907,8 +5604,6 @@ entities: pos: -2.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 851 @@ -5917,8 +5612,6 @@ entities: pos: 3.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 852 @@ -5927,8 +5620,6 @@ entities: pos: 0.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 853 @@ -5937,8 +5628,6 @@ entities: pos: -4.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 854 @@ -5947,8 +5636,6 @@ entities: pos: 5.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 855 @@ -5957,8 +5644,6 @@ entities: pos: 11.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 856 @@ -5967,8 +5652,6 @@ entities: pos: 12.5,-13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 857 @@ -5977,8 +5660,6 @@ entities: pos: -11.5,-13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 858 @@ -5987,8 +5668,6 @@ entities: pos: -10.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 859 @@ -5997,8 +5676,6 @@ entities: pos: -2.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 860 @@ -6007,8 +5684,6 @@ entities: pos: -1.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 861 @@ -6017,8 +5692,6 @@ entities: pos: 2.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 862 @@ -6027,8 +5700,6 @@ entities: pos: 2.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GeneratorWallmountAPU @@ -6861,143 +6532,105 @@ entities: pos: -3.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 957 components: - rot: -1.5707963267948966 rad pos: -1.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 958 components: - pos: 12.5,-13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 959 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 960 components: - rot: 3.141592653589793 rad pos: 0.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 961 components: - rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 962 components: - pos: -11.5,-13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 963 components: - rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 964 components: - rot: 1.5707963267948966 rad pos: 0.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 965 components: - pos: 2.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 966 components: - pos: 7.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 967 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 968 components: - rot: 3.141592653589793 rad pos: 11.5,-15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 969 components: - rot: 3.141592653589793 rad pos: -10.5,-15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 970 components: - pos: -4.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 971 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 972 components: - pos: 5.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 973 components: - pos: -6.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 974 components: - pos: 0.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightColoredRed entities: - uid: 975 @@ -7006,131 +6639,97 @@ entities: pos: 6.5,15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 976 components: - pos: 3.5,15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 977 components: - rot: 3.141592653589793 rad pos: 2.5,21.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 978 components: - rot: -1.5707963267948966 rad pos: -5.5,15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 979 components: - pos: 3.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 980 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 981 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 982 components: - pos: -2.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 983 components: - pos: -10.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 984 components: - pos: 11.5,-17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 985 components: - rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 986 components: - rot: -1.5707963267948966 rad pos: -8.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 987 components: - rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 988 components: - rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 989 components: - rot: 3.141592653589793 rad pos: 8.5,-5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 990 components: - rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 991 components: - rot: 3.141592653589793 rad pos: -1.5,21.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightLED entities: - uid: 992 @@ -7139,16 +6738,12 @@ entities: pos: -10.5,-9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 993 components: - rot: 1.5707963267948966 rad pos: 11.5,-9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredLightPostSmallRed entities: - uid: 994 @@ -9253,186 +8848,6 @@ entities: pos: 4.5,16.5 parent: 1 type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 1313 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 1314 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 1315 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 1316 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - type: Transform - - uid: 1317 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 1318 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - - uid: 1319 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 1320 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 1322 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 1323 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - uid: 1324 - components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - uid: 1325 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 1327 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 1 - type: Transform - - uid: 1328 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 1329 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 1330 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 1331 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 1332 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - uid: 1333 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - uid: 1335 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 1336 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1 - type: Transform - - uid: 1337 - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 1338 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - uid: 1339 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 1341 - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 1342 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - uid: 1343 - components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumIndestructible - entities: - uid: 1344 components: - pos: 6.5,10.5 @@ -10394,6 +9809,184 @@ entities: pos: -8.5,-6.5 parent: 1 type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 1313 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 1314 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 1315 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 1336 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 1339 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 1341 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 1342 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 1343 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform - proto: WallWeaponCapacitorRecharger entities: - uid: 1510 @@ -10591,6 +10184,20 @@ entities: - links: - 92 type: DeviceLinkSink +- proto: WindowFrostedDirectional + entities: + - uid: 1534 + components: + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 1535 + components: + - rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 1526 @@ -10641,18 +10248,4 @@ entities: pos: 0.5,-5.5 parent: 1 type: Transform -- proto: WindowTintedDirectional - entities: - - uid: 1534 - components: - - rot: 3.141592653589793 rad - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 1 - type: Transform ... diff --git a/Resources/Maps/Shuttles/mission.yml b/Resources/Maps/Shuttles/mission.yml index 0809ac8cb62..f3729135a0a 100644 --- a/Resources/Maps/Shuttles/mission.yml +++ b/Resources/Maps/Shuttles/mission.yml @@ -3,12 +3,12 @@ meta: postmapinit: false tilemap: 0: Space - 80: FloorSilver - 90: FloorSteelMini - 100: FloorWhiteDiagonal - 109: FloorWood - 111: Lattice - 112: Plating + 81: FloorSilver + 91: FloorSteelMini + 101: FloorWhiteDiagonal + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -21,19 +21,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: UAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAZAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UQAAAAAAUQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAWwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -76,11 +76,9 @@ entities: 2,0: 0: 4369 2,1: - 0: 30513 - 1: 2 + 0: 30515 -3,1: - 0: 52352 - 1: 8 + 0: 52360 -2,0: 0: 65535 -2,1: @@ -119,25 +117,115 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 350 + - 351 + - 359 + - 283 + - 282 + type: DeviceNetwork + - devices: + - 350 + - 351 + - 359 + - 283 + - 282 + type: DeviceList + - uid: 354 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 283 + - 284 + - 361 + - 330 + - 329 + type: DeviceNetwork + - devices: + - 329 + - 330 + - 361 + - 284 + - 283 + type: DeviceList + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 320 + - 302 + - 360 + - 282 + - 285 + type: DeviceNetwork + - devices: + - 320 + - 302 + - 360 + - 282 + - 285 + type: DeviceList + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 321 + - 322 + - 362 + - 285 + type: DeviceNetwork + - devices: + - 321 + - 322 + - 362 + - 285 + type: DeviceList + - uid: 357 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 352 + - 336 + - 132 + - 358 + - 284 + type: DeviceNetwork + - devices: + - 352 + - 336 + - 132 + - 358 + - 284 + type: DeviceList +- proto: AirCanister + entities: + - uid: 341 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform - proto: AirlockExternalGlass entities: - uid: 133 @@ -187,6 +275,48 @@ entities: - pos: -0.5,-4.5 parent: 1 type: Transform +- proto: AirSensor + entities: + - uid: 358 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 357 + type: DeviceNetwork + - uid: 359 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 353 + type: DeviceNetwork + - uid: 360 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 355 + type: DeviceNetwork + - uid: 361 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 354 + type: DeviceNetwork + - uid: 362 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 356 + type: DeviceNetwork - proto: AltarConvertWhite entities: - uid: 151 @@ -278,15 +408,11 @@ entities: - pos: -4.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15 components: - pos: -5.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 34 components: - pos: -7.5,6.5 @@ -332,8 +458,6 @@ entities: - pos: 7.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 191 components: - pos: 6.5,4.5 @@ -394,22 +518,16 @@ entities: - pos: -5.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 204 components: - pos: 6.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 205 components: - pos: 5.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 206 components: - pos: 4.5,-1.5 @@ -440,15 +558,11 @@ entities: - pos: 0.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 212 components: - pos: 0.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 213 components: - pos: 0.5,-0.5 @@ -506,8 +620,6 @@ entities: - pos: 9.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 155 @@ -520,15 +632,11 @@ entities: - pos: 7.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 221 components: - pos: 9.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 247 components: - pos: 7.5,6.5 @@ -605,47 +713,41 @@ entities: type: Transform - proto: ChairFoldingSpawnFolded entities: - - uid: 241 - components: - - rot: 3.141592653589793 rad - pos: 7.497845,-0.4974059 - parent: 1 - type: Transform - - uid: 242 + - uid: 344 components: - - rot: 3.141592653589793 rad - pos: 7.529095,-0.3724059 + - rot: 1.5707963267948966 rad + pos: 6.111926,1.0125251 parent: 1 type: Transform - - uid: 243 + - uid: 345 components: - - rot: 3.141592653589793 rad - pos: 7.51347,-0.3099059 + - rot: 1.5707963267948966 rad + pos: 6.111926,1.0437751 parent: 1 type: Transform - - uid: 244 + - uid: 346 components: - - rot: 3.141592653589793 rad - pos: 7.529095,-0.3724059 + - rot: 1.5707963267948966 rad + pos: 6.065051,1.0437751 parent: 1 type: Transform - - uid: 245 + - uid: 347 components: - - rot: 3.141592653589793 rad - pos: 7.529095,-0.3255309 + - rot: 1.5707963267948966 rad + pos: 6.065051,1.0594001 parent: 1 type: Transform - - uid: 246 + - uid: 348 components: - - rot: 3.141592653589793 rad - pos: 7.529095,-0.2942809 + - rot: 1.5707963267948966 rad + pos: 6.018176,1.1062751 parent: 1 type: Transform - proto: ClosetJanitorFilled entities: - - uid: 266 + - uid: 243 components: - - pos: 5.5,1.5 + - pos: 7.5,-0.5 parent: 1 type: Transform - proto: ClothingHeadHatHoodChaplainHood @@ -754,6 +856,38 @@ entities: - pos: -1.5349969,3.8609552 parent: 1 type: Transform +- proto: EmergencyLight + entities: + - uid: 363 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 364 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 367 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 281 @@ -775,21 +909,46 @@ entities: - pos: -4.5,-0.5 parent: 1 type: Transform + - ShutdownSubscribers: + - 353 + - 355 + type: DeviceNetwork - uid: 283 components: - pos: 5.5,-0.5 parent: 1 type: Transform + - ShutdownSubscribers: + - 354 + - 353 + type: DeviceNetwork - uid: 284 components: - pos: 6.5,3.5 parent: 1 type: Transform + - ShutdownSubscribers: + - 357 + - 354 + type: DeviceNetwork - uid: 285 components: - pos: -5.5,3.5 parent: 1 type: Transform + - ShutdownSubscribers: + - 355 + - 356 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 266 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures - proto: FoodBreadPlain entities: - uid: 167 @@ -797,13 +956,569 @@ entities: - pos: 2.527503,3.6734552 parent: 1 type: Transform -- proto: GeneratorRTG +- proto: GasPassiveVent + entities: + - uid: 225 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 338 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight entities: - uid: 110 components: - - pos: 8.5,6.5 + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 290 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 291 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 292 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 293 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 294 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 295 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 299 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: -5.5,1.5 parent: 1 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 306 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 323 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 324 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 325 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 326 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 339 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 340 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 349 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 246 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 296 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 314 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 328 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 337 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 132 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 357 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 302 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 355 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 322 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 356 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 354 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 353 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 355 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 321 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 356 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 354 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 357 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 353 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 357 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 258 @@ -1016,6 +1731,20 @@ entities: - pos: -7.7926636,6.396162 parent: 1 type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 245 + components: + - anchored: True + pos: 8.5,6.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage - proto: PottedPlantRandom entities: - uid: 234 @@ -1041,88 +1770,66 @@ entities: pos: 2.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 175 components: - rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 253 components: - rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 254 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 255 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 256 components: - rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 257 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 259 components: - rot: 1.5707963267948966 rad pos: -6.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 260 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 261 components: - rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 262 components: - rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: RubberStampChaplain entities: - uid: 232 @@ -1134,6 +1841,17 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage +- proto: SheetPlasma + entities: + - uid: 242 + components: + - pos: 8.018176,5.8719 + parent: 1 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item - proto: ShuttleWindow entities: - uid: 2 @@ -1384,6 +2102,13 @@ entities: - pos: -4.5,1.5 parent: 1 type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 244 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform - proto: WallShuttle entities: - uid: 19 @@ -1843,14 +2568,21 @@ entities: type: Transform - proto: WetFloorSign entities: - - uid: 275 + - uid: 342 components: - - pos: 7.6622844,-0.109410286 + - pos: 7.424426,1.2000251 parent: 1 type: Transform - - uid: 276 + - uid: 343 + components: + - pos: 7.736926,1.1844001 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 241 components: - - pos: 7.2872844,-0.109410286 + - pos: 7.685192,5.65315 parent: 1 type: Transform ... diff --git a/Resources/Maps/Shuttles/opportunity.yml b/Resources/Maps/Shuttles/opportunity.yml new file mode 100644 index 00000000000..3c1e8ddc22e --- /dev/null +++ b/Resources/Maps/Shuttles/opportunity.yml @@ -0,0 +1,7073 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 32: FloorDarkMono + 43: FloorGlass + 84: FloorSteel + 85: FloorSteelCheckerDark + 96: FloorTechMaint + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - name: Opportunity + type: MetaData + - pos: -0.48958334,-0.47394052 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: YAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: 1 + decals: + 126: -5,4 + 154: -3,-3 + 162: -2,-11 + - node: + color: '#FFFFFFFF' + id: 2 + decals: + 2: -3,0 + 155: -1,-3 + 163: -1,-11 + - node: + color: '#FFFFFFFF' + id: 3 + decals: + 1: 3,0 + 156: 1,-3 + 164: 0,-11 + - node: + color: '#FFFFFFFF' + id: 4 + decals: + 0: 5,4 + 157: 3,-3 + 165: 1,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 170: 0,0 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 171: 0,0 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 158: 1,-11 + 159: 0,-11 + 160: -1,-11 + 161: -2,-11 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 172: 0,-4 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 150: -3,-3 + 151: -1,-3 + 152: 1,-3 + 153: 3,-3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 89: 3,-12 + 90: 4,-12 + 91: -3,-12 + 92: -4,-12 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 96: -2,-12 + 97: -1,-12 + 98: 0,-12 + - node: + color: '#1861D5FF' + id: BrickTileWhiteCornerNe + decals: + 35: -2,-5 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerNe + decals: + 72: -2,1 + 73: 6,5 + 74: 4,1 + 104: 4,10 + 105: 5,9 + 106: 6,8 + 124: -4,5 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerNw + decals: + 69: 4,5 + 70: 2,1 + 71: -4,1 + 102: -5,9 + 103: -4,10 + 107: -6,8 + 123: -6,5 + - node: + color: '#1861D5FF' + id: BrickTileWhiteCornerSe + decals: + 38: -2,-8 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerSe + decals: + 3: 2,3 + 4: 6,7 + 66: -2,-1 + 67: 4,-1 + 68: 6,3 + 125: -4,3 + - node: + color: '#1861D5FF' + id: BrickTileWhiteCornerSw + decals: + 99: -4,-8 + - node: + color: '#D58C18FF' + id: BrickTileWhiteCornerSw + decals: + 5: -2,3 + 6: -6,7 + 75: -4,-1 + 76: 2,-1 + 77: 4,3 + 118: -6,3 + - node: + color: '#951710FF' + id: BrickTileWhiteInnerNe + decals: + 80: 0,-10 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerNe + decals: + 110: 4,9 + 111: 5,8 + - node: + color: '#1861D5FF' + id: BrickTileWhiteInnerNw + decals: + 81: 0,-10 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerNw + decals: + 108: -5,8 + 109: -4,9 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerSe + decals: + 79: 2,7 + - node: + color: '#D58C18FF' + id: BrickTileWhiteInnerSw + decals: + 78: -2,7 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineE + decals: + 27: -2,-7 + 28: -2,-6 + - node: + color: '#951710FF' + id: BrickTileWhiteLineE + decals: + 21: 8,-9 + 22: 8,-8 + 25: -10,-9 + 26: -10,-8 + 39: 0,-9 + 40: 0,-8 + 41: 0,-7 + 42: 0,-6 + 43: 0,-5 + 44: 0,-4 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineE + decals: + 7: 2,4 + 8: 2,5 + 9: 2,6 + 63: 6,4 + 64: 4,0 + 65: -2,0 + 122: -4,4 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineN + decals: + 36: -3,-5 + 45: -1,-10 + 46: -2,-10 + 87: -3,-10 + 88: -4,-10 + - node: + color: '#951710FF' + id: BrickTileWhiteLineN + decals: + 82: 2,-10 + 84: 1,-10 + 85: 3,-10 + 86: 4,-10 + 127: 0,1 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineN + decals: + 47: -3,10 + 48: -2,10 + 49: -1,10 + 50: 0,10 + 51: 1,10 + 52: 2,10 + 53: 3,10 + 54: 5,5 + 55: 3,1 + 56: -3,1 + 121: -5,5 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineS + decals: + 100: -3,-8 + - node: + color: '#951710FF' + id: BrickTileWhiteLineS + decals: + 16: 1,3 + 17: 0,3 + 18: -1,3 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineS + decals: + 13: -3,7 + 14: 5,7 + 15: 3,7 + 57: -3,-1 + 58: 3,-1 + 59: 5,3 + 83: 2,-12 + 93: -2,-12 + 94: -1,-12 + 95: 0,-12 + 115: 4,7 + 116: -5,7 + 117: -4,7 + 120: -5,3 + - node: + color: '#1861D5FF' + id: BrickTileWhiteLineW + decals: + 29: 0,-9 + 30: 0,-8 + 31: 0,-7 + 32: 0,-6 + 33: 0,-5 + 34: 0,-4 + 37: -4,-6 + 101: -4,-7 + - node: + color: '#951710FF' + id: BrickTileWhiteLineW + decals: + 19: -8,-9 + 20: -8,-8 + 23: 10,-9 + 24: 10,-8 + - node: + color: '#D58C18FF' + id: BrickTileWhiteLineW + decals: + 10: -2,4 + 11: -2,5 + 12: -2,6 + 60: 4,4 + 61: 2,0 + 62: -4,0 + 119: -6,4 + - node: + angle: 3.141592653589793 rad + color: '#0E7F1BFF' + id: LoadingArea + decals: + 173: -1,5 + - node: + color: '#951710FF' + id: StandClear + decals: + 112: 0,3 + 113: 1,3 + 114: -1,3 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 128: 0,1 + 129: 0,3 + 130: -1,3 + 131: 1,3 + 132: -11,-8 + 133: -11,-6 + 134: -2,-9 + 135: 11,-8 + 136: 11,-6 + 137: 0,-2 + 138: 0,-3 + 139: 0,-1 + 166: -10,-10 + 167: 10,-10 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 144: -12,-6 + 145: -12,-8 + 146: 10,-8 + 147: 10,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 141: 0,-1 + 168: -10,-9 + 169: 10,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 142: -10,-8 + 143: -10,-6 + 148: 12,-6 + 149: 12,-8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 140: 0,-3 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 65331 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65279 + 1: 256 + 1,1: + 0: 65535 + 1,2: + 0: 14335 + 2,1: + 0: 4912 + 2,2: + 0: 1 + -3,1: + 0: 2176 + -2,1: + 0: 65534 + -2,2: + 0: 36079 + -2,0: + 0: 61064 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -3,-3: + 0: 65516 + -3,-2: + 0: 65535 + -3,-1: + 0: 3822 + -2,-3: + 0: 65535 + -2,-2: + 2: 1 + 0: 36862 + -2,-4: + 0: 32768 + -2,-1: + 0: 34816 + -1,-4: + 0: 65516 + 3: 2 + -1,-3: + 0: 65533 + 1: 2 + -1,-2: + 0: 65533 + 1: 2 + -1,-1: + 0: 65535 + 0,-4: + 0: 65527 + 3: 8 + 0,-3: + 0: 65527 + 1: 8 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 12544 + 1,-3: + 1: 1 + 0: 65534 + 1,-2: + 0: 16127 + 1: 256 + 1,-1: + 0: 13073 + 2,-3: + 0: 65527 + 2,-2: + 4: 1 + 0: 61438 + 2,-1: + 0: 3822 + 3,-3: + 0: 4352 + 3,-2: + 0: 4369 + -1,-5: + 3: 49152 + 0,-5: + 3: 28672 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 18.591623 + - 69.93992 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 18.601082 + - 69.97551 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Opportunity + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 270 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 735 + type: DeviceNetwork + - devices: + - 689 + - 690 + - 691 + - 687 + - 688 + - 692 + - 734 + - 731 + - 732 + - 733 + - 730 + - 729 + - 735 + type: DeviceList + - uid: 271 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 736 + - 664 + - 737 + - 662 + - 738 + - 663 + - 739 + - 661 + - 724 + - 686 + - 740 + - 665 + type: DeviceNetwork + - devices: + - 736 + - 664 + - 737 + - 662 + - 738 + - 663 + - 739 + - 661 + - 724 + - 686 + - 740 + - 665 + type: DeviceList +- proto: AirCanister + entities: + - uid: 168 + components: + - pos: -1.5,-13.5 + parent: 2 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 217 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 170 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + type: Transform + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 150 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 198 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 199 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 4 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 5 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 109 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 176 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 179 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + type: Transform +- proto: APCBasic + entities: + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform +- proto: APCHighCapacity + entities: + - uid: 216 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform + - uid: 292 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 294 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 2 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + type: Transform + - uid: 421 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform +- proto: Beaker + entities: + - uid: 942 + components: + - pos: 2.5238996,8.7574 + parent: 2 + type: Transform +- proto: Bed + entities: + - uid: 186 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 274 + components: + - pos: 6.5,-7.5 + parent: 2 + type: Transform + - uid: 331 + components: + - pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 332 + components: + - pos: -3.5,3.5 + parent: 2 + type: Transform + - uid: 333 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 334 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 393 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 394 + components: + - pos: -6.5,-7.5 + parent: 2 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 399 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 338 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 2 + type: Transform +- proto: BedsheetRed + entities: + - uid: 400 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 402 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + type: Transform +- proto: BlastDoor + entities: + - uid: 160 + components: + - pos: -9.5,-9.5 + parent: 2 + type: Transform + - links: + - 66 + type: DeviceLinkSink + - uid: 241 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - links: + - 771 + type: DeviceLinkSink + - uid: 243 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - links: + - 772 + type: DeviceLinkSink + - uid: 247 + components: + - pos: -4.5,0.5 + parent: 2 + type: Transform + - invokeCounter: 1 + links: + - 770 + type: DeviceLinkSink + - uid: 248 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - links: + - 769 + type: DeviceLinkSink + - uid: 775 + components: + - pos: 10.5,-9.5 + parent: 2 + type: Transform + - links: + - 106 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 776 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - links: + - 768 + type: DeviceLinkSink + - uid: 777 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - links: + - 768 + type: DeviceLinkSink + - uid: 778 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - links: + - 767 + type: DeviceLinkSink + - uid: 779 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - links: + - 767 + type: DeviceLinkSink + - uid: 780 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - links: + - 246 + type: DeviceLinkSink + - uid: 781 + components: + - pos: -0.5,-5.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 782 + components: + - pos: -0.5,-6.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 783 + components: + - pos: -4.5,-5.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 784 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform + - links: + - 766 + type: DeviceLinkSink + - uid: 785 + components: + - pos: -10.5,-7.5 + parent: 2 + type: Transform + - links: + - 77 + type: DeviceLinkSink + - uid: 786 + components: + - pos: -10.5,-5.5 + parent: 2 + type: Transform + - links: + - 77 + type: DeviceLinkSink + - uid: 787 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - links: + - 65 + type: DeviceLinkSink + - uid: 788 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - links: + - 65 + type: DeviceLinkSink + - uid: 789 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - links: + - 65 + type: DeviceLinkSink + - uid: 790 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - links: + - 78 + type: DeviceLinkSink + - uid: 791 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - links: + - 78 + type: DeviceLinkSink + - uid: 792 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - links: + - 797 + type: DeviceLinkSink + - uid: 793 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - links: + - 798 + type: DeviceLinkSink + - uid: 794 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - links: + - 773 + type: DeviceLinkSink + - uid: 795 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - links: + - 766 + type: DeviceLinkSink + - uid: 796 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - links: + - 766 + type: DeviceLinkSink + - uid: 853 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - links: + - 774 + type: DeviceLinkSink +- proto: BoxBodyBag + entities: + - uid: 929 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxDarts + entities: + - uid: 305 + components: + - flags: InContainer + type: MetaData + - parent: 880 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Bucket + entities: + - uid: 938 + components: + - pos: 5.4013104,9.71546 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 443 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 444 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 445 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 446 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 447 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 448 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 449 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 450 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 451 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 452 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 453 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 454 + components: + - pos: -3.5,-10.5 + parent: 2 + type: Transform + - uid: 455 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 456 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 457 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 458 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 459 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 460 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 461 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: -9.5,-8.5 + parent: 2 + type: Transform + - uid: 463 + components: + - pos: -9.5,-7.5 + parent: 2 + type: Transform + - uid: 464 + components: + - pos: -9.5,-6.5 + parent: 2 + type: Transform + - uid: 465 + components: + - pos: -9.5,-5.5 + parent: 2 + type: Transform + - uid: 466 + components: + - pos: -9.5,-4.5 + parent: 2 + type: Transform + - uid: 467 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 468 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 469 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform + - uid: 470 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 471 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 472 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 473 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 474 + components: + - pos: 10.5,-8.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 476 + components: + - pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 477 + components: + - pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 478 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 479 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 480 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 481 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 482 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 483 + components: + - pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 484 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 485 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 487 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 488 + components: + - pos: 3.5,-6.5 + parent: 2 + type: Transform + - uid: 489 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 490 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 491 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 492 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 493 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 494 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 495 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 496 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 497 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 498 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 499 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 500 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform + - uid: 501 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 502 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 503 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 505 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 506 + components: + - pos: 5.5,8.5 + parent: 2 + type: Transform + - uid: 507 + components: + - pos: 6.5,8.5 + parent: 2 + type: Transform + - uid: 508 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - uid: 509 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 510 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - uid: 511 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - uid: 512 + components: + - pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 513 + components: + - pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 514 + components: + - pos: -5.5,7.5 + parent: 2 + type: Transform + - uid: 515 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform + - uid: 516 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 517 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 518 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 519 + components: + - pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 520 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - uid: 521 + components: + - pos: -3.5,7.5 + parent: 2 + type: Transform + - uid: 522 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 523 + components: + - pos: -3.5,5.5 + parent: 2 + type: Transform + - uid: 524 + components: + - pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 525 + components: + - pos: -4.5,4.5 + parent: 2 + type: Transform + - uid: 526 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - uid: 527 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 528 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 529 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 530 + components: + - pos: 2.5,0.5 + parent: 2 + type: Transform + - uid: 531 + components: + - pos: 3.5,0.5 + parent: 2 + type: Transform + - uid: 532 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 533 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 534 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 535 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 536 + components: + - pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 537 + components: + - pos: -2.5,0.5 + parent: 2 + type: Transform + - uid: 834 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 872 + components: + - pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 874 + components: + - pos: 0.5,-13.5 + parent: 2 + type: Transform + - uid: 888 + components: + - pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 889 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 948 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 949 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 418 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 598 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 804 + components: + - pos: -0.5,-15.5 + parent: 2 + type: Transform + - uid: 869 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform + - uid: 870 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 425 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 426 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 427 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 428 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 429 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 430 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 431 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 432 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - uid: 433 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 434 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 435 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 436 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 437 + components: + - pos: 0.5,-4.5 + parent: 2 + type: Transform + - uid: 438 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 439 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 440 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 441 + components: + - pos: 1.5,-2.5 + parent: 2 + type: Transform + - uid: 442 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 538 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 539 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 540 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 541 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 542 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 543 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 544 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 545 + components: + - pos: -1.5,-2.5 + parent: 2 + type: Transform + - uid: 546 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 547 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 548 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 549 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 550 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 551 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 552 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 553 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 554 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 555 + components: + - pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 556 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 557 + components: + - pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 558 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 559 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 560 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 561 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 562 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 563 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 564 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 565 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 566 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 567 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 568 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 569 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 570 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 571 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 572 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 573 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 574 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 575 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 576 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform + - uid: 577 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 578 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform + - uid: 579 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - uid: 580 + components: + - pos: 0.5,11.5 + parent: 2 + type: Transform + - uid: 581 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 582 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 583 + components: + - pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 584 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 585 + components: + - pos: -0.5,10.5 + parent: 2 + type: Transform + - uid: 586 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform + - uid: 587 + components: + - pos: -2.5,10.5 + parent: 2 + type: Transform + - uid: 588 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 589 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 590 + components: + - pos: -1.5,-9.5 + parent: 2 + type: Transform + - uid: 591 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 592 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 593 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 594 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 595 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 596 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 597 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 599 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 601 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 602 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 603 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 604 + components: + - pos: 6.5,-9.5 + parent: 2 + type: Transform + - uid: 605 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 606 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 608 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 873 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 890 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 891 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 892 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 893 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 424 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: CargoPallet + entities: + - uid: 151 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 218 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 383 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 384 + components: + - pos: -6.5,-9.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 144 + components: + - pos: -11.5,-9.5 + parent: 2 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + type: Transform + - uid: 169 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 258 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + type: Transform + - uid: 403 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform + - uid: 420 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 866 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 875 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + type: Transform + - uid: 905 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 906 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + type: Transform +- proto: Chair + entities: + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 309 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 330 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + type: Transform + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 391 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 2 + type: Transform +- proto: ChessBoard + entities: + - uid: 322 + components: + - flags: InContainer + type: MetaData + - parent: 880 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClosetBase + entities: + - uid: 880 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 305 + - 1 + - 322 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClothingBeltBandolier + entities: + - uid: 928 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot + entities: + - uid: 925 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHeadPrisonGuard + entities: + - uid: 288 + components: + - flags: InContainer + type: MetaData + - parent: 273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 289 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 405 + components: + - flags: InContainer + type: MetaData + - parent: 395 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 412 + components: + - flags: InContainer + type: MetaData + - parent: 396 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 325 + components: + - flags: InContainer + type: MetaData + - parent: 273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 922 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 923 + components: + - flags: InContainer + type: MetaData + - parent: 395 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 924 + components: + - flags: InContainer + type: MetaData + - parent: 396 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterArmorRiot + entities: + - uid: 927 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisonGuard + entities: + - uid: 287 + components: + - flags: InContainer + type: MetaData + - parent: 273 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 319 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 411 + components: + - flags: InContainer + type: MetaData + - parent: 395 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 422 + components: + - flags: InContainer + type: MetaData + - parent: 396 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComputerRadar + entities: + - uid: 193 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 190 + components: + - pos: -1.5,-4.5 + parent: 2 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + type: Transform +- proto: CrateFreezer + entities: + - uid: 634 + components: + - pos: 4.5,-5.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 635 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateMaterialUranium + entities: + - uid: 878 + components: + - pos: 3.5,-11.5 + parent: 2 + type: Transform +- proto: CrateSecurityNonlethal + entities: + - uid: 939 + components: + - pos: 4.5,-11.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 847 + components: + - pos: 4.5,-8.5 + parent: 2 + type: Transform +- proto: DiceBag + entities: + - uid: 1 + components: + - flags: InContainer + type: MetaData + - parent: 880 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DisposalUnit + entities: + - uid: 629 + components: + - pos: -5.5,7.5 + parent: 2 + type: Transform + - powerDisabled: True + type: ApcPowerReceiver +- proto: DrinkMugDog + entities: + - uid: 944 + components: + - rot: -6.283185307179586 rad + pos: -2.7532914,9.185598 + parent: 2 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 941 + components: + - rot: -6.283185307179586 rad + pos: -2.9616246,9.258565 + parent: 2 + type: Transform + - uid: 945 + components: + - rot: -6.283185307179586 rad + pos: -3.1803746,9.16475 + parent: 2 + type: Transform + - uid: 946 + components: + - pos: -2.8782914,8.977119 + parent: 2 + type: Transform +- proto: EmergencyLight + entities: + - uid: 910 + components: + - pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 911 + components: + - pos: 8.5,-7.5 + parent: 2 + type: Transform + - uid: 912 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + type: Transform + - uid: 913 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform + - uid: 914 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 915 + components: + - pos: -0.5,-13.5 + parent: 2 + type: Transform + - uid: 916 + components: + - pos: -0.5,10.5 + parent: 2 + type: Transform + - uid: 917 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 2 + type: Transform + - uid: 918 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 919 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - uid: 920 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 921 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + type: Transform +- proto: EncryptionKeyCommon + entities: + - uid: 908 + components: + - flags: InContainer + type: MetaData + - parent: 907 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 909 + components: + - flags: InContainer + type: MetaData + - parent: 907 + type: Transform + - canCollide: False + type: Physics +- proto: FaxMachineShip + entities: + - uid: 947 + components: + - pos: 4.5,-7.5 + parent: 2 + type: Transform +- proto: FirelockGlass + entities: + - uid: 894 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - uid: 895 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 896 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 897 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 898 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 899 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 900 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 901 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 902 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 903 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 904 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 635 + components: + - flags: InContainer + type: MetaData + - parent: 634 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 654 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 728 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 758 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 759 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 760 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 721 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 742 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 751 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 642 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 643 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 646 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 648 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 650 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 651 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 652 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 667 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 668 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 677 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 678 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 679 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 680 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 681 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 682 + components: + - pos: -1.5,5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 683 + components: + - pos: -1.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 684 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 685 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 693 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 694 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 695 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 704 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 706 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 707 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 708 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 709 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 710 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 711 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 712 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 713 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 714 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 715 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 716 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 717 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 718 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 719 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 720 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 722 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 723 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 725 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 745 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 747 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 748 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 749 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 750 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 649 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 670 + components: + - pos: 2.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 671 + components: + - pos: -3.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 672 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 675 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 676 + components: + - pos: -1.5,7.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 756 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 761 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 762 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + type: Transform +- proto: GasPressurePump + entities: + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 729 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 730 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 731 + components: + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 732 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 733 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 735 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 736 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 737 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 739 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#0000FFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 661 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 662 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 664 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 665 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 271 + type: DeviceNetwork + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 687 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 690 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor + - uid: 692 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - color: '#FF0000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 871 + components: + - pos: -1.5,-14.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 126 + components: + - pos: -4.5,-11.5 + parent: 2 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 363 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 365 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + type: Transform + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 370 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 371 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + type: Transform + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 374 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 375 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + type: Transform + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + type: Transform + - uid: 408 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - uid: 409 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 410 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 413 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 414 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 415 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 416 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 417 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 764 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 801 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + type: Transform + - uid: 802 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + type: Transform +- proto: GunSafe + entities: + - uid: 268 + components: + - pos: -2.5,-7.5 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 925 + - 927 + - 928 + - 929 + - 930 + - 931 + - 932 + - 926 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: GyroscopeSecurity + entities: + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + type: Transform + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 312 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 320 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 633 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 321 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform +- proto: KnifePlastic + entities: + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: 2.5949287,8.437385 + parent: 2 + type: Transform +- proto: LargeBeaker + entities: + - uid: 933 + components: + - pos: 2.3449287,8.833493 + parent: 2 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 934 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform +- proto: LockerEvidence + entities: + - uid: 112 + components: + - name: Prisoner 3 + type: MetaData + - pos: 2.2262268,-9.480581 + parent: 2 + type: Transform + - uid: 821 + components: + - name: Prisoner 2 + type: MetaData + - pos: 1.7262269,-9.470158 + parent: 2 + type: Transform + - uid: 822 + components: + - name: Prisoner 1 + type: MetaData + - pos: 1.2574768,-9.470158 + parent: 2 + type: Transform + - uid: 824 + components: + - name: Prisoner 4 + type: MetaData + - pos: 2.7262268,-9.491006 + parent: 2 + type: Transform +- proto: LockerSalvageSpecialist + entities: + - uid: 812 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 820 + - 813 + - 814 + - 815 + - 816 + - 817 + - 818 + - 819 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSecurity + entities: + - uid: 273 + components: + - pos: 8.241622,-7.4725633 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.6174853 + - 6.0848265 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 325 + - 288 + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 277 + components: + - pos: 8.741621,-7.4725633 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 922 + - 289 + - 319 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 395 + components: + - pos: -7.770107,-7.4811745 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.6165915 + - 6.0814633 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 411 + - 405 + - 923 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 396 + components: + - pos: -7.2731934,-7.478086 + parent: 2 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.6166629 + - 6.0817323 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 924 + - 412 + - 422 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 423 + components: + - pos: -3.5,-8.5 + parent: 2 + type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 826 + components: + - pos: -2.5,-8.5 + parent: 2 + type: Transform +- proto: LockerWardenFilledHardsuit + entities: + - uid: 266 + components: + - pos: -3.5,-7.5 + parent: 2 + type: Transform +- proto: MagazineShotgun + entities: + - uid: 932 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag + entities: + - uid: 931 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OreBag + entities: + - uid: 813 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 814 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 815 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 820 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OreBox + entities: + - uid: 385 + components: + - anchored: True + pos: 1.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 386 + components: + - anchored: True + pos: 0.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 387 + components: + - anchored: True + pos: -0.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics + - uid: 388 + components: + - anchored: True + pos: -1.5,-11.5 + parent: 2 + type: Transform + - bodyType: Static + type: Physics +- proto: OreProcessor + entities: + - uid: 879 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform +- proto: Pickaxe + entities: + - uid: 816 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 817 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 818 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 819 + components: + - flags: InContainer + type: MetaData + - parent: 812 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PlastitaniumWindow + entities: + - uid: 8 + components: + - pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 9 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 12 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 13 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 14 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 15 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 22 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 24 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 26 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 28 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 29 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 30 + components: + - pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 31 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 32 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 34 + components: + - pos: -4.5,6.5 + parent: 2 + type: Transform + - uid: 35 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 36 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 37 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 56 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 57 + components: + - pos: 0.5,11.5 + parent: 2 + type: Transform + - uid: 58 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 114 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 119 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - uid: 122 + components: + - pos: 4.5,-2.5 + parent: 2 + type: Transform + - uid: 124 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 131 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 139 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 143 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + type: Transform + - uid: 164 + components: + - pos: -1.5,-12.5 + parent: 2 + type: Transform + - uid: 166 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 177 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - uid: 178 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 806 + components: + - pos: -0.5,-15.5 + parent: 2 + type: Transform +- proto: PosterLegitDoNotQuestion + entities: + - uid: 846 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 2 + type: Transform +- proto: PosterLegitHereForYourSafety + entities: + - uid: 845 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform + - uid: 839 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + type: Transform + - uid: 840 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 841 + components: + - rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 842 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 843 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 2 + type: Transform + - uid: 844 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + type: Transform +- proto: PosterLegitNoERP + entities: + - uid: 837 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 836 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 + type: Transform +- proto: PosterLegitPizzaHope + entities: + - uid: 835 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 833 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 832 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 830 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + type: Transform +- proto: PosterLegitVacation + entities: + - uid: 838 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 282 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 2 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 881 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 615 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 616 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: PoweredlightColoredRed + entities: + - uid: 609 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 610 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 612 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + type: Transform + - uid: 613 + components: + - pos: 3.5,-2.5 + parent: 2 + type: Transform + - uid: 614 + components: + - pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 617 + components: + - pos: -6.5,-7.5 + parent: 2 + type: Transform + - uid: 618 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 935 + components: + - pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 936 + components: + - pos: -11.5,-9.5 + parent: 2 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 763 + components: + - pos: -9.5,-2.5 + parent: 2 + type: Transform + - uid: 765 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 628 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 620 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 621 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + type: Transform + - uid: 624 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + type: Transform + - uid: 626 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 627 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform +- proto: Railing + entities: + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + type: Transform + - uid: 404 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 823 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 825 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 831 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 829 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform +- proto: ReagentContainerMilk + entities: + - uid: 943 + components: + - pos: 2.8427145,8.851215 + parent: 2 + type: Transform +- proto: RiotShield + entities: + - uid: 926 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SheetUranium + entities: + - uid: 877 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 255 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 256 + components: + - pos: 0.5,11.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 257 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 249 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 250 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 251 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 252 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - links: + - 799 + type: DeviceLinkSink + - uid: 253 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - links: + - 800 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 2 + type: Transform + - linkedPorts: + 787: + - Pressed: Toggle + 788: + - Pressed: Toggle + 789: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 66 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + type: Transform + - linkedPorts: + 160: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + type: Transform + - linkedPorts: + 785: + - Pressed: Toggle + 786: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - linkedPorts: + 790: + - Pressed: Toggle + 791: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + type: Transform + - linkedPorts: + 775: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 246 + components: + - pos: 4.5,-4.5 + parent: 2 + type: Transform + - linkedPorts: + 780: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - linkedPorts: + 795: + - Pressed: Toggle + 796: + - Pressed: Toggle + 784: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 778: + - Pressed: Toggle + 779: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 768 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 777: + - Pressed: Toggle + 776: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 769 + components: + - pos: -2.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 248: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 770 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 247: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 771 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 241: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 772 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - linkedPorts: + 243: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 773 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + type: Transform + - linkedPorts: + 794: + - Pressed: Toggle + 783: + - Pressed: Toggle + 781: + - Pressed: Toggle + 782: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 853: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 797 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 2 + type: Transform + - linkedPorts: + 792: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 798 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + type: Transform + - linkedPorts: + 793: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 799 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - linkedPorts: + 250: + - Pressed: Toggle + 251: + - Pressed: Toggle + 249: + - Pressed: Toggle + 252: + - Pressed: Toggle + 255: + - Pressed: Toggle + 256: + - Pressed: Toggle + 257: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 800 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - linkedPorts: + 253: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignBridge + entities: + - uid: 828 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform +- proto: SignCargo + entities: + - uid: 827 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 854 + components: + - pos: -5.5,-10.5 + parent: 2 + type: Transform +- proto: SignEngineering + entities: + - uid: 848 + components: + - pos: -0.5,-12.5 + parent: 2 + type: Transform +- proto: SignPlaque + entities: + - uid: 862 + components: + - desc: 'A prestigious golden plaque commemorating the name and commission of the ship. Architect signature: "Magnus Crowe"' + name: NFS Opportunity + type: MetaData + - pos: 3.5,-8.5 + parent: 2 + type: Transform +- proto: SignPrison + entities: + - uid: 631 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 849 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 850 + components: + - pos: -11.5,-6.5 + parent: 2 + type: Transform + - uid: 851 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 852 + components: + - pos: -6.5,2.5 + parent: 2 + type: Transform + - uid: 863 + components: + - pos: -3.5,11.5 + parent: 2 + type: Transform + - uid: 864 + components: + - pos: 4.5,11.5 + parent: 2 + type: Transform +- proto: SignRedFour + entities: + - uid: 861 + components: + - pos: 2.7114413,-8.854052 + parent: 2 + type: Transform +- proto: SignRedOne + entities: + - uid: 857 + components: + - pos: 1.2550371,-8.849894 + parent: 2 + type: Transform +- proto: SignRedThree + entities: + - uid: 860 + components: + - pos: 2.208355,-8.847875 + parent: 2 + type: Transform +- proto: SignRedTwo + entities: + - uid: 859 + components: + - pos: 1.7114414,-8.847875 + parent: 2 + type: Transform +- proto: SignShield + entities: + - uid: 858 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform +- proto: SinkWide + entities: + - uid: 937 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 163 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 887 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform +- proto: SteelBench + entities: + - uid: 636 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 637 + components: + - pos: 3.5,-6.5 + parent: 2 + type: Transform +- proto: Stool + entities: + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 286 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 259 + components: + - pos: -5.5,5.5 + parent: 2 + type: Transform + - uid: 260 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 261 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 262 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 264 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 630 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 856 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform +- proto: Table + entities: + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + type: Transform +- proto: TableCarpet + entities: + - uid: 303 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - uid: 304 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 306 + components: + - pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 308 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform +- proto: TableReinforced + entities: + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 855 + components: + - pos: 4.5,-7.5 + parent: 2 + type: Transform + - uid: 883 + components: + - pos: 4.5,-6.5 + parent: 2 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: TargetDarts + entities: + - uid: 311 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + type: Transform +- proto: TelecomServer + entities: + - uid: 907 + components: + - pos: -0.5,-14.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 908 + - 909 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: ThrusterSecurity + entities: + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 2 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 2 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - uid: 210 + components: + - pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 211 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 213 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 214 + components: + - pos: -6.5,-5.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 2 + type: Transform + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 950 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + type: Transform + - uid: 951 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + type: Transform + - uid: 952 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 953 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + type: Transform +- proto: VendingMachineChang + entities: + - uid: 265 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 324 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 302 + components: + - pos: 6.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineSoda + entities: + - uid: 267 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 323 + components: + - pos: 2.5,6.5 + parent: 2 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 6 + components: + - pos: -2.5,-1.5 + parent: 2 + type: Transform + - uid: 7 + components: + - pos: 4.5,-1.5 + parent: 2 + type: Transform + - uid: 10 + components: + - pos: -3.5,-1.5 + parent: 2 + type: Transform + - uid: 11 + components: + - pos: -4.5,-1.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 18 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: 1.5,0.5 + parent: 2 + type: Transform + - uid: 20 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 38 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform + - uid: 39 + components: + - pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 40 + components: + - pos: -6.5,2.5 + parent: 2 + type: Transform + - uid: 41 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 42 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 43 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 44 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: 5.5,2.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 48 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 50 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 51 + components: + - pos: -6.5,3.5 + parent: 2 + type: Transform + - uid: 52 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - uid: 53 + components: + - pos: -6.5,6.5 + parent: 2 + type: Transform + - uid: 54 + components: + - pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 55 + components: + - pos: -4.5,1.5 + parent: 2 + type: Transform + - uid: 59 + components: + - pos: -3.5,11.5 + parent: 2 + type: Transform + - uid: 60 + components: + - pos: -1.5,11.5 + parent: 2 + type: Transform + - uid: 61 + components: + - pos: -0.5,11.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: 1.5,11.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: 2.5,11.5 + parent: 2 + type: Transform + - uid: 64 + components: + - pos: 4.5,11.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: 7.5,8.5 + parent: 2 + type: Transform + - uid: 68 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 69 + components: + - pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: -6.5,8.5 + parent: 2 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 2 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 2 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 98 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 100 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + type: Transform + - uid: 101 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 105 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 + type: Transform + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + type: Transform + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + type: Transform + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 133 + components: + - pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 2 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 149 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 157 + components: + - pos: 3.5,-13.5 + parent: 2 + type: Transform + - uid: 158 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 159 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 161 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 165 + components: + - pos: 3.5,-12.5 + parent: 2 + type: Transform + - uid: 167 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 2 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 200 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 201 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 204 + components: + - pos: -0.5,-4.5 + parent: 2 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 236 + components: + - pos: -2.5,-12.5 + parent: 2 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + type: Transform + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + type: Transform + - uid: 278 + components: + - pos: -2.5,-13.5 + parent: 2 + type: Transform + - uid: 285 + components: + - pos: -3.5,-12.5 + parent: 2 + type: Transform + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + type: Transform + - uid: 607 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 805 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 2 + type: Transform + - uid: 810 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform + - uid: 811 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + type: Transform + - uid: 865 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 867 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 2 + type: Transform + - uid: 868 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 2 + type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 3 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 + type: Transform + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + type: Transform + - uid: 73 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 74 + components: + - pos: -5.5,10.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: -4.5,11.5 + parent: 2 + type: Transform + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: -4.5,-4.5 + parent: 2 + type: Transform + - uid: 127 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 2 + type: Transform + - uid: 152 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + type: Transform + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + type: Transform + - uid: 192 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + type: Transform + - uid: 229 + components: + - pos: -7.5,8.5 + parent: 2 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + type: Transform + - uid: 803 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 807 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + type: Transform + - uid: 808 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 + type: Transform + - uid: 809 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 884 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 885 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 339 + components: + - pos: -5.5,3.5 + parent: 2 + type: Transform + - uid: 340 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 341 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 342 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform +- proto: WarpPointShip + entities: + - uid: 886 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 882 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 930 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WindoorSecureBrigLocked + entities: + - uid: 326 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + type: Transform +- proto: Wrench + entities: + - uid: 134 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/Shuttles/pioneer.yml b/Resources/Maps/Shuttles/pioneer.yml index 5491b2809c5..18bc40553d0 100644 --- a/Resources/Maps/Shuttles/pioneer.yml +++ b/Resources/Maps/Shuttles/pioneer.yml @@ -79,6 +79,7 @@ entities: decals: 17: 0,3 29: -1,0 + 35: -1,1 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -165,15 +166,16 @@ entities: 0,-1: 0: 65535 0,1: - 0: 15 + 0: 1 + 1: 14 -1,1: 0: 12 0,-2: - 0: 12288 + 1: 12288 -1,-1: 0: 52428 -1,-2: - 0: 32768 + 1: 32768 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -190,6 +192,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -205,15 +222,18 @@ entities: parent: 1 type: Transform - ShutdownSubscribers: - - 35 - - 37 - - 105 + - 58 + - 130 + - 133 type: DeviceNetwork - devices: - - 35 - - 37 - - 105 + - 58 + - 130 + - 133 type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged - proto: AirCanister entities: - uid: 27 @@ -237,10 +257,10 @@ entities: type: Transform - proto: AirSensor entities: - - uid: 105 + - uid: 133 components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 parent: 1 type: Transform - ShutdownSubscribers: @@ -289,11 +309,43 @@ entities: pos: 3.5,0.5 parent: 1 type: Transform -- proto: BoxFolderBase +- proto: AtmosFixBlockerMarker entities: - - uid: 102 + - uid: 37 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 132 components: - - pos: -0.6998043,3.1389787 + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 56 + components: + - pos: -0.69521284,3.076761 parent: 1 type: Transform - proto: BoxMedicalTrackingImplants @@ -546,6 +598,16 @@ entities: pos: -0.5,0.5 parent: 1 type: Transform +- proto: ExteriorLightTube + entities: + - uid: 135 + components: + - flags: InContainer + type: MetaData + - parent: 129 + type: Transform + - canCollide: False + type: Physics - proto: FaxMachineShip entities: - uid: 45 @@ -583,10 +645,10 @@ entities: type: AtmosPipeColor - proto: GasPipeBend entities: - - uid: 128 + - uid: 35 components: - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 1.5,1.5 parent: 1 type: Transform - color: '#990000FF' @@ -600,9 +662,9 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 63 + - uid: 59 components: - - pos: 1.5,1.5 + - pos: 1.5,2.5 parent: 1 type: Transform - color: '#990000FF' @@ -617,34 +679,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 56 - components: - - name: waste loop pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 59 - components: - - name: distribution loop pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 35 + - uid: 130 components: - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 0.5,-0.5 parent: 1 type: Transform - ShutdownSubscribers: @@ -654,10 +694,10 @@ entities: type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 37 + - uid: 58 components: - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: 0.5,1.5 parent: 1 type: Transform - ShutdownSubscribers: @@ -727,27 +767,33 @@ entities: - pos: 2.5,-2.5 parent: 1 type: Transform -- proto: LockerSalvageSpecialistFilledHardsuit +- proto: LockerSalvageSpecialistFilled entities: - - uid: 60 + - uid: 102 components: - - pos: -0.5,0.5 + - pos: -0.5,1.5 parent: 1 type: Transform -- proto: OreProcessor +- proto: OreBox entities: - - uid: 58 + - uid: 124 components: - - pos: -0.5,1.5 + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 2.5,1.5 parent: 1 type: Transform - proto: Paper entities: - - uid: 129 + - uid: 60 components: - name: preflight checklist type: MetaData - - pos: 0.23835814,-2.0712306 + - pos: 0.148952,-2.1063693 parent: 1 type: Transform - stampState: paper_stamp-ce @@ -759,15 +805,26 @@ entities: stampedColor: '#00BE00FF' stampedName: stamp-component-stamped-name-approved content: >- - [head=1]==========================[/head] + [color=#1b67a5]█░░█░███[/color][color=#5b97bc]░███░█░█░█░██░░█░█░██░░██░░██░[/color] + + [color=#1b67a5]██░█░░█░[/color][color=#5b97bc]██░░░█░█░█░█░█░█░█░█░█░█░█░█░█[/color] - [head=1]Pioneer-class salvage ship[/head] + [color=#1b67a5]█░██░░█░[/color][color=#5b97bc]░░██░███░█░██░░░█░░███░██░░█░█[/color] + + [color=#1b67a5]█░░█░░█░[/color][color=#5b97bc]███░░█░█░█░█░░░░█░░█░█░█░█░██░[/color] + + + [head=1]=========================[/head] + + [head=1] Pioneer-class salvage ship[/head] [head=1] [/head] - [head=1] PREFLIGHT CHECKLIST[/head] + [head=1] PREFLIGHT CHECKLIST[/head] - [head=1]==========================[/head] + [head=1] [/head] + + [head=1]=========================[/head] [head=2]1. Power supply.[/head] @@ -780,17 +837,17 @@ entities: [bullet/][ ] Check the APC unit's current Load[bold]*[/bold] (W). - [head=3]1.2. P.A.C.K.M.A.N. generator unit.[/head] + [head=3]1.2. P.A.C.M.A.N. generator unit.[/head] - [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit is anchored to the floor. + [bullet/][ ] Check if the P.A.C.M.A.N. generator unit is anchored to the floor. - [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + [bullet/][ ] Check if the P.A.C.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation during flight. Note that [bold]raw plasma ore[/bold] can be used as fuel[bold]**[/bold]. - [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit is set to HV output. + [bullet/][ ] Check if the P.A.C.M.A.N. generator unit is set to HV output. - [bullet/][ ] Set Target Power for 10-11[bold]**[/bold] [bold]k[/bold]W. + [bullet/][ ] Set Target Power for 10-11[bold]***[/bold] [bold]k[/bold]W. - [bullet/][ ] Start the P.A.C.K.M.A.N. generator unit. + [bullet/][ ] Start the P.A.C.M.A.N. generator unit. [head=2]2. Atmospherics.[/head] @@ -799,14 +856,6 @@ entities: [bullet/][ ] Check if the air canister is anchored to connector port. - [bullet/][ ] Check if the distribution pump is set to normal pressure. - - [bullet/][ ] Enable distribution pump. - - [head=3]2.2. Waste Loop.[/head] - - [bullet/][ ] Enable waste loop pump. - [head=2]3. Other checks.[/head] @@ -819,12 +868,13 @@ entities: __________________________________________________________________ - [bold]*[/bold] - Pioneer-class salvage ships are equipped with a single APC unit that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the P.A.C.K.M.A.N. generator unit Target Power output: to keep substation and APC fully charged, P.A.C.K.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines. + [bold]*[/bold] - Pioneer-class salvage ships are equipped with a single APC unit that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the P.A.C.M.A.N. generator unit Target Power output: to keep substation and APC fully charged, P.A.C.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines. - [bold]**[/bold] - Pioneer-class salvage ships have low power demand meaning that standard P.A.C.K.M.A.N. generator unit's Target Power value can be lowered as low as 10 kW. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 11 kW. + [bold]**[/bold] - While the ship is not equipped with Ore Processing unit the power generation is sustainable due to the the ability of P.A.C.M.A.N. generator units accept [bold]raw plasma ore[/bold] as a fuel. Do note however that 1 unit of raw plasma ore equals to 5 solid plasma sheets, so in order to fully fill generator's fuel tank you only need 6 units of raw plasma ore. - [bold]Note:[/bold] Without a working generator, fully charged battery units (SMES and substation) in unmodified Pioneer-class salvage ships can provide power for approximately 10 minutes before fully depleting their charge. + [bold]***[/bold] - Pioneer-class salvage ships have low power demand meaning that standard P.A.C.M.A.N. generator unit's Target Power value can be lowered as low as 10 kW. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 11 kW. type: Paper + - type: ActiveUserInterface - proto: PlasticFlapsAirtightClear entities: - uid: 126 @@ -847,14 +897,24 @@ entities: - bodyType: Static type: Physics - type: InsertingMaterialStorage -- proto: PoweredlightLED +- proto: PoweredlightEmpty entities: - - uid: 106 + - uid: 129 components: - rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 135 + type: ContainerContainer + - powerLoad: 100 + type: ApcPowerReceiver +- proto: PoweredlightLED + entities: - uid: 107 components: - rot: -1.5707963267948966 rad @@ -943,7 +1003,7 @@ entities: parent: 1 type: Transform - links: - - 124 + - 113 type: DeviceLinkSink - proto: SignalButtonDirectional entities: @@ -959,30 +1019,30 @@ entities: 97: - Pressed: Toggle type: DeviceLinkSource - - uid: 123 + - uid: 113 components: - - name: bow shutters switch + - name: starboard shutters switch type: MetaData - rot: -1.5707963267948966 rad - pos: 3.5,2.5 + pos: 3.5003784,2.2201123 parent: 1 type: Transform - linkedPorts: - 5: - - Pressed: Toggle - 29: + 120: - Pressed: Toggle type: DeviceLinkSource - - uid: 124 + - uid: 123 components: - - name: starboard shutters switch + - name: bow shutters switch type: MetaData - rot: -1.5707963267948966 rad - pos: 3.5,1.5 + pos: 3.5,2.5 parent: 1 type: Transform - linkedPorts: - 120: + 5: + - Pressed: Toggle + 29: - Pressed: Toggle type: DeviceLinkSource - proto: SignElectricalMed @@ -1031,6 +1091,13 @@ entities: - pos: -0.5,-1.5 parent: 1 type: Transform +- proto: SuitStorageSalv + entities: + - uid: 106 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform - proto: Table entities: - uid: 41 @@ -1182,9 +1249,9 @@ entities: type: Transform - proto: WeaponGrapplingGun entities: - - uid: 113 + - uid: 105 components: - - pos: -0.4379738,1.6295469 + - pos: -0.24837583,3.1588619 parent: 1 type: Transform - proto: WindowReinforcedDirectional diff --git a/Resources/Maps/Shuttles/prospector.yml b/Resources/Maps/Shuttles/prospector.yml index 957661c8e73..b4967253564 100644 --- a/Resources/Maps/Shuttles/prospector.yml +++ b/Resources/Maps/Shuttles/prospector.yml @@ -3,12 +3,12 @@ meta: postmapinit: false tilemap: 0: Space - 26: FloorDark - 83: FloorSteel - 91: FloorSteelMono - 95: FloorTechMaint - 111: Lattice - 112: Plating + 27: FloorDark + 84: FloorSteel + 92: FloorSteelMono + 96: FloorTechMaint + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -21,19 +21,19 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADWwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADWwAAAAADWwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADXAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADXAAAAAADXAAAAAAD version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -141,8 +141,7 @@ entities: -2,-2: 0: 51200 -1,-2: - 0: 32767 - 1: 32768 + 0: 65535 0,-2: 0: 30583 0,0: @@ -152,8 +151,7 @@ entities: -2,0: 0: 36078 -1,0: - 0: 32767 - 2: 32768 + 0: 65535 -1,1: 0: 15 uniqueMixes: @@ -172,36 +170,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -209,6 +177,46 @@ entities: - id: Prospector type: BecomesStation - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 235 + components: + - pos: 0.5,-3.5 + parent: 201 + type: Transform + - ShutdownSubscribers: + - 233 + - 214 + - 154 + type: DeviceNetwork + - devices: + - 233 + - 214 + - 154 + type: DeviceList + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 201 + type: Transform + - ShutdownSubscribers: + - 228 + - 213 + - 153 + type: DeviceNetwork + - devices: + - 228 + - 213 + - 153 + type: DeviceList +- proto: AirCanister + entities: + - uid: 237 + components: + - pos: -5.5,-0.5 + parent: 201 + type: Transform - proto: AirlockCargoGlass entities: - uid: 155 @@ -354,8 +362,6 @@ entities: - pos: -2.5,-6.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 93 components: - pos: -2.5,-5.5 @@ -456,8 +462,6 @@ entities: - pos: -0.5,-3.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 115 components: - pos: -0.5,-4.5 @@ -468,15 +472,11 @@ entities: - pos: -0.5,-5.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 117 components: - pos: 0.5,-5.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 118 components: - pos: 1.5,-5.5 @@ -492,36 +492,26 @@ entities: - pos: -4.5,-0.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 121 components: - pos: -5.5,-0.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 122 components: - pos: -5.5,-1.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 123 components: - pos: -5.5,-2.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - uid: 124 components: - pos: -5.5,0.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - uid: 86 @@ -551,8 +541,6 @@ entities: - pos: -2.5,-6.5 parent: 201 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 87 @@ -583,10 +571,10 @@ entities: type: Transform - proto: ChairFolding entities: - - uid: 146 + - uid: 239 components: - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 0.5,-5.5 parent: 201 type: Transform - proto: ChairPilotSeat @@ -796,6 +784,24 @@ entities: - pos: -3.5,1.5 parent: 201 type: Transform +- proto: EmergencyLight + entities: + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 201 + type: Transform + - uid: 243 + components: + - pos: -1.5,-0.5 + parent: 201 + type: Transform + - uid: 244 + components: + - pos: -0.5,3.5 + parent: 201 + type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 207 @@ -817,11 +823,283 @@ entities: - pos: -2.5,1.5 parent: 201 type: Transform + - ShutdownSubscribers: + - 236 + type: DeviceNetwork - uid: 154 components: - pos: -2.5,-3.5 parent: 201 type: Transform + - ShutdownSubscribers: + - 235 + type: DeviceNetwork +- proto: GasPassiveVent + entities: + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 211 + components: + - pos: -2.5,-0.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 200 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 213 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 201 + type: Transform + - ShutdownSubscribers: + - 236 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 214 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 201 + type: Transform + - ShutdownSubscribers: + - 235 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 201 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 201 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 228 + components: + - pos: -0.5,2.5 + parent: 201 + type: Transform + - ShutdownSubscribers: + - 236 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 201 + type: Transform + - ShutdownSubscribers: + - 235 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 174 @@ -1054,42 +1332,11 @@ entities: type: ContainerContainer - proto: LockerSalvageSpecialistFilled entities: - - uid: 178 + - uid: 159 components: - pos: -0.5,-4.5 parent: 201 type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 179 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: Matchbox entities: - uid: 180 @@ -1097,17 +1344,6 @@ entities: - pos: 1.6783751,-4.3457556 parent: 201 type: Transform -- proto: MiningDrill - entities: - - uid: 179 - components: - - flags: InContainer - type: MetaData - - parent: 178 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: NitrogenTankFilled entities: - uid: 188 @@ -1164,8 +1400,7 @@ entities: - storage: Plasma: 1500 type: MaterialStorage - - endTime: 0 - type: InsertingMaterialStorage + - type: InsertingMaterialStorage - proto: PottedPlantRandomPlastic entities: - uid: 167 @@ -1395,14 +1630,14 @@ entities: type: Transform - proto: SpawnPointLatejoin entities: - - uid: 198 + - uid: 238 components: - - pos: 0.5,-4.5 + - pos: 0.5,-5.5 parent: 201 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 200 + - uid: 173 components: - pos: -1.5,-4.5 parent: 201 @@ -1416,6 +1651,11 @@ entities: type: Transform - proto: SuitStorageSalv entities: + - uid: 146 + components: + - pos: 0.5,-4.5 + parent: 201 + type: Transform - uid: 202 components: - pos: -1.5,3.5 @@ -1651,9 +1891,9 @@ entities: type: Transform - proto: WeaponCrusherDagger entities: - - uid: 203 + - uid: 240 components: - - pos: 0.57274973,-4.590836 + - pos: 0.5,-5.5 parent: 201 type: Transform - proto: WeaponCrusherGlaive @@ -1690,9 +1930,9 @@ entities: type: Transform - proto: Wrench entities: - - uid: 159 + - uid: 241 components: - - pos: 0.4887327,-4.5833683 + - pos: 0.5,-5.5 parent: 201 type: Transform - proto: YellowOxygenTankFilled diff --git a/Resources/Maps/Shuttles/pulse.yml b/Resources/Maps/Shuttles/pulse.yml index 369bd5ea3f7..f27fd4480d1 100644 --- a/Resources/Maps/Shuttles/pulse.yml +++ b/Resources/Maps/Shuttles/pulse.yml @@ -113,36 +113,45 @@ entities: data: tiles: -1,-1: - 0: 65535 + 0: 1 + 1: 65534 -1,0: - 0: 65535 + 1: 61183 + 0: 4352 0,0: - 0: 65535 + 1: 16383 + 0: 49152 0,-1: - 0: 64511 - 1: 1024 + 1: 65523 + 0: 12 -2,-1: - 0: 34952 + 0: 8 + 1: 34944 -1,-2: - 0: 65024 + 0: 4096 + 1: 60928 -2,0: - 0: 2184 + 1: 136 + 0: 2048 -1,1: - 0: 14 + 1: 14 0,1: - 0: 7 + 1: 3 + 0: 4 1,0: - 0: 273 + 1: 273 0,-2: - 0: 29440 + 1: 13056 + 0: 16384 1,-1: - 0: 4352 + 0: 256 + 1: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -156,8 +165,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -175,6 +184,43 @@ entities: - id: Pulse type: BecomesStation - type: SpreaderGrid +- proto: AirAlarm + entities: + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 182 + - 195 + - 184 + - 180 + - 181 + - 149 + - 197 + - 199 + - 198 + type: DeviceNetwork + - devices: + - 184 + - 195 + - 182 + - 180 + - 181 + - 149 + - 197 + - 199 + - 198 + type: DeviceList +- proto: AirCanister + entities: + - uid: 58 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform - proto: AirlockCommandGlass entities: - uid: 2 @@ -220,6 +266,41 @@ entities: - pos: -0.5,1.5 parent: 1 type: Transform +- proto: AirSensor + entities: + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - uid: 198 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - uid: 199 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork - proto: APCBasic entities: - uid: 9 @@ -242,6 +323,73 @@ entities: pos: -4.5,0.5 parent: 1 type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 37 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform - proto: CableApcExtension entities: - uid: 12 @@ -371,14 +519,9 @@ entities: type: Transform - proto: CableHV entities: - - uid: 37 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - uid: 38 components: - - pos: -0.5,1.5 + - pos: 0.5,3.5 parent: 1 type: Transform - uid: 39 @@ -388,12 +531,7 @@ entities: type: Transform - uid: 40 components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: 1.5,2.5 + - pos: 0.5,2.5 parent: 1 type: Transform - proto: CableMV @@ -433,20 +571,6 @@ entities: - pos: -1.5,-2.5 parent: 1 type: Transform -- proto: Chair - entities: - - uid: 49 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 50 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - proto: ChairPilotSeat entities: - uid: 51 @@ -455,67 +579,6 @@ entities: pos: 2.5,0.5 parent: 1 type: Transform -- proto: ClothingBeltMedicalFilled - entities: - - uid: 53 - components: - - flags: InContainer - type: MetaData - - parent: 52 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHelmetVoidParamed - entities: - - uid: 58 - components: - - pos: 0.6700474,2.9632742 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCap - entities: - - uid: 54 - components: - - flags: InContainer - type: MetaData - - parent: 52 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitVoidParamed - entities: - - uid: 61 - components: - - pos: 0.39199796,2.626689 - parent: 1 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]5%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]25%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]50%[/color]. - priority: 0 - component: Armor - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - type: GroupExamine - proto: ComputerCrewMonitoring entities: - uid: 178 @@ -553,17 +616,21 @@ entities: pos: 1.5,-3.5 parent: 1 type: Transform -- proto: DrinkFlask +- proto: EmergencyLight entities: - - uid: 55 + - uid: 217 components: - - flags: InContainer - type: MetaData - - parent: 52 + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: EncryptionKeyMedical + entities: + - uid: 41 + components: + - pos: 2.5332139,1.5263536 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: FaxMachineShip entities: - uid: 69 @@ -571,18 +638,281 @@ entities: - pos: 3.5,1.5 parent: 1 type: Transform -- proto: GeneratorWallmountAPU +- proto: FirelockGlass entities: - - uid: 70 + - uid: 214 components: - - pos: -1.5,1.5 + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 196 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 142 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 185 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 65 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 parent: 1 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 110 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 187 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 201 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 60 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 54 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: - uid: 71 components: - - pos: 1.5,1.5 + - pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 parent: 1 type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 183 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 62 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 72 @@ -730,16 +1060,7 @@ entities: entities: - uid: 56 components: - - flags: InContainer - type: MetaData - - parent: 52 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 96 - components: - - pos: 0.53956485,3.540295 + - pos: 0.57133067,2.3182166 parent: 1 type: Transform - proto: HospitalCurtainsOpen @@ -762,20 +1083,34 @@ entities: pos: 3.5,-0.5 parent: 1 type: Transform -- proto: LockerCaptain +- proto: LockerCaptainFilled entities: - uid: 52 components: - pos: 2.5,-1.5 parent: 1 type: Transform +- proto: LockerParamedicFilled + entities: + - uid: 61 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: LockerWallMedical + entities: + - uid: 100 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform - air: volume: 200 immutable: False - temperature: 293.1497 + temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -792,41 +1127,50 @@ entities: showEnts: False occludes: True ents: - - 56 - - 53 - - 54 - - 55 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + - 102 + - 101 type: ContainerContainer -- proto: LockerParamedicFilledHardsuit +- proto: MedkitFilled entities: - - uid: 57 + - uid: 101 components: - - pos: -1.5,3.5 - parent: 1 + - flags: InContainer + type: MetaData + - parent: 100 type: Transform -- proto: LockerWallMedical + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MedkitOxygenFilled entities: - - uid: 100 + - uid: 102 components: - - pos: 0.5,-2.5 - parent: 1 + - flags: InContainer + type: MetaData + - parent: 100 type: Transform -- proto: MedkitFilled + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PortableGeneratorPacman entities: - - uid: 101 + - uid: 57 components: - - pos: 0.36918023,2.9868414 + - anchored: True + pos: 0.5,3.5 parent: 1 type: Transform -- proto: MedkitOxygenFilled + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage +- proto: PowerCellRecharger entities: - - uid: 102 + - uid: 63 components: - - pos: 0.5963607,2.6604457 + - pos: 0.5,2.5 parent: 1 type: Transform - proto: PoweredlightLED @@ -895,6 +1239,17 @@ entities: - pos: -1.5,-4.5 parent: 1 type: Transform +- proto: SheetPlasma + entities: + - uid: 70 + components: + - pos: 0.5180994,2.6407764 + parent: 1 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item - proto: ShuttleWindow entities: - uid: 113 @@ -1033,9 +1388,9 @@ entities: type: Transform - proto: SpawnPointParamedic entities: - - uid: 140 + - uid: 203 components: - - pos: 0.5,-1.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - proto: SubstationWallBasic @@ -1045,14 +1400,15 @@ entities: - pos: 0.5,1.5 parent: 1 type: Transform -- proto: TableGlass +- proto: SuitStorageParamedic entities: - - uid: 142 + - uid: 49 components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 + - pos: 0.5,-1.5 parent: 1 type: Transform +- proto: TableGlass + entities: - uid: 143 components: - rot: 1.5707963267948966 rad @@ -1093,11 +1449,16 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 149 + - uid: 50 components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,2.5 + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 55 + components: + - pos: -1.5,3.5 parent: 1 type: Transform - proto: WallShuttle @@ -1255,4 +1616,11 @@ entities: pos: -0.5,-4.5 parent: 1 type: Transform +- proto: Wrench + entities: + - uid: 64 + components: + - pos: 0.36184943,2.8187637 + parent: 1 + type: Transform ... diff --git a/Resources/Maps/Shuttles/searchlight.yml b/Resources/Maps/Shuttles/searchlight.yml new file mode 100644 index 00000000000..d923846dc0d --- /dev/null +++ b/Resources/Maps/Shuttles/searchlight.yml @@ -0,0 +1,2664 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 28: FloorDarkDiagonal + 31: FloorDarkMini + 32: FloorDarkMono + 43: FloorGlass + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5312576,-0.453125 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAIAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1: -1,-12 + 2: 1,-12 + 42: 1,-10 + 43: -1,-10 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 51: 5,-4 + 52: 4,-4 + - node: + color: '#00FFFFFF' + id: BotGreyscale + decals: + 71: -3,-6 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 0: -2,-10 + 17: -3,-7 + 44: 5,-7 + 65: 0,2 + 66: -1,0 + 67: 1,0 + 72: -2,-9 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 3: 1,-12 + 4: -1,-12 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 68: -1,-1 + 69: 1,-1 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 28: 1,-7 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 27: -1,-7 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 20: 1,-10 + 21: 1,-9 + 22: 1,-8 + 38: -1,-5 + 39: -1,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 33: 2,-6 + 34: 1,-6 + 35: 3,-6 + 36: -2,-6 + 37: -1,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 26: -2,-7 + 29: 2,-7 + 30: 3,-7 + 31: 5,-7 + 32: 4,-7 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 23: -1,-10 + 24: -1,-9 + 25: -1,-8 + 40: 1,-5 + 41: 1,-4 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 45: 4,-6 + 46: 5,-6 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 18: -3,-8 + 19: -3,-9 + 70: 1,-2 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 47: 4,-4 + 48: 5,-4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 57: 1,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 58: -1,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 55: 1,-2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 54: -1,-2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteEndN + decals: + 64: 0,2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNe + decals: + 60: 0,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteInnerNw + decals: + 61: 0,0 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 56: 1,-1 + 62: 0,1 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineS + decals: + 53: 0,-2 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 59: -1,-1 + 63: 0,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 9: 4,-3 + 10: 5,-3 + 11: 5,-5 + 12: 4,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5: 4,-3 + 6: 5,-3 + 13: 4,-5 + 14: 5,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 7: 4,-3 + 8: 5,-3 + 15: 4,-5 + 16: 5,-5 + 49: 4,-6 + 50: 5,-6 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 13175 + 0,-1: + 0: 30719 + 1: 2048 + -1,-1: + 0: 52462 + 1: 1 + -1,0: + 0: 35020 + 0,1: + 0: 1 + 1: 16 + 1,0: + 1: 13107 + 1,1: + 1: 4371 + -1,-3: + 0: 65516 + 1: 2 + -1,-2: + 0: 65535 + -1,-4: + 0: 49152 + 0,-4: + 0: 28672 + 0,-3: + 0: 65527 + 1: 8 + 0,-2: + 0: 65535 + 1,-3: + 0: 13072 + 1: 16384 + 1,-2: + 0: 30583 + 1,-1: + 0: 119 + 1: 14080 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: searchlight + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 279 + - 278 + - 277 + - 276 + - 275 + - 280 + - 244 + - 242 + - 326 + - 272 + - 271 + type: DeviceNetwork + - devices: + - 326 + - 242 + - 244 + - 280 + - 275 + - 276 + - 277 + - 278 + - 279 + - 272 + - 271 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 325 + - 243 + - 245 + - 280 + type: DeviceNetwork + - devices: + - 325 + - 243 + - 245 + - 280 + type: DeviceList + - enabled: False + type: AccessReader + - type: Emagged +- proto: AirCanister + entities: + - uid: 166 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlass + entities: + - uid: 113 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 105 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - links: + - 285 + type: DeviceLinkSink + - uid: 106 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - links: + - 285 + type: DeviceLinkSink + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - links: + - 286 + type: DeviceLinkSink + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - links: + - 286 + type: DeviceLinkSink +- proto: AirlockFreezer + entities: + - uid: 204 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 109 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 325 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + type: DeviceNetwork + - uid: 326 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 287 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 101 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - links: + - 191 + type: DeviceLinkSink + - uid: 102 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - links: + - 191 + type: DeviceLinkSink +- proto: BoxCardboard + entities: + - uid: 249 + components: + - name: searchlight tube box + type: MetaData + - pos: -1.2302189,-7.346061 + parent: 1 + type: Transform + - storageUsed: 25 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 256 + - 257 + - 267 + - 268 + - 269 + type: ContainerContainer +- proto: CableApcExtension + entities: + - uid: 132 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 42 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 34 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 131 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 3 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 201 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform +- proto: ClothingBeltParamedicFilled + entities: + - uid: 283 + components: + - pos: 4.5010185,-6.2714972 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 30 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 25 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 27 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 221 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 324 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 331 + components: + - pos: -1.4515424,-5.290521 + parent: 1 + type: Transform +- proto: ExteriorLightTube + entities: + - uid: 129 + components: + - flags: InContainer + type: MetaData + - parent: 128 + type: Transform + - canCollide: False + type: Physics + - uid: 256 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 257 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 267 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 268 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics + - uid: 269 + components: + - flags: InContainer + type: MetaData + - parent: 249 + type: Transform + - canCollide: False + type: Physics +- proto: ExtinguisherCabinetFilled + entities: + - uid: 222 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 125 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 271 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork +- proto: FirelockGlass + entities: + - uid: 275 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 278 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 279 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + - 270 + type: DeviceNetwork +- proto: FlashlightLantern + entities: + - uid: 75 + components: + - pos: 4.2779503,-6.5243893 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 4.2779503,-6.2431393 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 246 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 230 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 236 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 237 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 259 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 260 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 336 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 337 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 338 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 339 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 233 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 270 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 243 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 335 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 139 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 6 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 134 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 217 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 252 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 341 + components: + - pos: -2.1047392,-6.3594756 + parent: 1 + type: Transform + - stampState: paper_stamp-ce + stampedBy: + - stampedBorderless: False + stampedColor: '#C69B17FF' + stampedName: stamp-component-stamped-name-ce + - stampedBorderless: False + stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + [head=1]========================[/head] + + [head=1]Lantern-class medical ship[/head] + + [head=1] [/head] + + [head=1] PREFLIGHT CHECKLIST[/head] + + [head=1]========================[/head] + + + [head=2]1. Power supply.[/head] + + [head=3]1.1. Battery units.[/head] + + [bullet/][ ] Check if the SMES unit is anchored to the floor. + + [bullet/][ ] Check if the APC unit's Main Breaker is toggled on. + + [bullet/][ ] Check the APC unit's current Load[bold]*[/bold] (W). + + [head=3]1.2. P.A.C.K.M.A.N. generator unit.[/head] + + [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit is anchored to the floor. + + [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + + [bullet/][ ] Check if the P.A.C.K.M.A.N. generator unit is set to HV output. + + [bullet/][ ] Set Target Power for 15-16[bold]**[/bold] [bold]k[/bold]W. + + [bullet/][ ] Start the P.A.C.K.M.A.N. generator unit. + + + [head=2]2. Atmospherics.[/head] + + [head=3]2.1. Distribution Loop.[/head] + + [bullet/][ ] Check if the air canister is anchored to connector port. + + + [head=2]3. Other checks.[/head] + + [bullet/][ ] Check if the gyroscope is anchored, powered, and enabled. + + [bullet/][ ] Check if the mini gravity generator is anchored, powered, and enabled. + + [bullet/][ ] Check if the bow blastdoors are closed. + + + __________________________________________________________________ + + [bold]*[/bold] - Lantern-class medical ship are equipped with a single APC unit that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the P.A.C.K.M.A.N. generator unit Target Power output: to keep substation and APC fully charged, P.A.C.K.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines. + + [bold]**[/bold] - Lantern-class medical ship have average power demand meaning that standard P.A.C.K.M.A.N. generator unit's Target Power value can be put at 15 kW. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 16 kW. + type: Paper +- proto: PortableGeneratorPacman + entities: + - uid: 140 + components: + - anchored: True + pos: -2.5,-6.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage +- proto: PottedPlantRandom + entities: + - uid: 321 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 254 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 129 + type: ContainerContainer + - powerLoad: 100 + type: ApcPowerReceiver + - links: + - 188 + type: DeviceLinkSink +- proto: PoweredlightLED + entities: + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 114 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: RailingRound + entities: + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 332 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 2 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform +- proto: RollerBed + entities: + - uid: 215 + components: + - pos: -1.4910297,-4.2335505 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -1.4910297,-3.2179255 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 205 + components: + - pos: -2.6292348,-6.46939 + parent: 1 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item +- proto: SignalButton + entities: + - uid: 191 + components: + - name: blastdoors switch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 102: + - Pressed: Toggle + 101: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonDirectional + entities: + - uid: 188 + components: + - name: frontal floodlight switch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - linkedPorts: + 128: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 285 + components: + - name: airlock bolts switch + type: MetaData + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 106: + - Pressed: DoorBolt + 105: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 286 + components: + - name: airlock bolts switch + type: MetaData + - pos: 3.7922952,-4.4013705 + parent: 1 + type: Transform + - linkedPorts: + 111: + - Pressed: DoorBolt + 112: + - Pressed: DoorBolt + type: DeviceLinkSource +- proto: SignElectricalMed + entities: + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 207 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 220 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform +- proto: SignSpace + entities: + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 136 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 258 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 250 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 54 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 208 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 248 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: SuitStorageParamedic + entities: + - uid: 255 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 316 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 219 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 4 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 23 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform +- proto: WarningAir + entities: + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 251 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 323 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: WeaponGrapplingGun + entities: + - uid: 284 + components: + - rot: -1.5707963267948966 rad + pos: 4.7154503,-6.4150143 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: 4.5435753,-6.4775143 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 137 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 206 + components: + - pos: -2.4509153,-6.50064 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/skipper.yml b/Resources/Maps/Shuttles/skipper.yml index e5ac727231c..3840f172719 100644 --- a/Resources/Maps/Shuttles/skipper.yml +++ b/Resources/Maps/Shuttles/skipper.yml @@ -316,7 +316,8 @@ entities: 0: 30719 1: 34816 -1,0: - 0: 65535 + 0: 61439 + 2: 4096 -1,-1: 0: 65535 0,-1: @@ -336,7 +337,7 @@ entities: 0: 8 -2,0: 0: 63487 - 2: 2048 + 3: 2048 -2,1: 0: 61435 2: 4 @@ -401,6 +402,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -1299,9 +1315,10 @@ entities: type: EntityStorage - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 147 + - uid: 34 components: - - pos: -4.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 parent: 1 type: Transform - proto: ComputerShuttle @@ -1334,7 +1351,7 @@ entities: - type: ItemSlots - proto: CrateNPCCow entities: - - uid: 223 + - uid: 36 components: - pos: -4.5,2.5 parent: 1 @@ -1855,9 +1872,9 @@ entities: type: Transform - proto: LockerBotanistFilled entities: - - uid: 241 + - uid: 44 components: - - pos: -2.5,8.5 + - pos: -1.5,8.5 parent: 1 type: Transform - proto: LockerFreezer @@ -1906,19 +1923,25 @@ entities: - pos: -2.4983687,3.2123425 parent: 1 type: Transform -- proto: PlantBag +- proto: PortableGeneratorPacman entities: - - uid: 373 + - uid: 41 components: - - pos: -1.2547346,5.524218 + - anchored: True + pos: -2.5,8.5 parent: 1 type: Transform -- proto: PortableGeneratorPacman - entities: - - uid: 34 + - storage: + Plasma: 3000 + type: MaterialStorage + - bodyType: Static + type: Physics + - endTime: 0 + type: InsertingMaterialStorage + - uid: 46 components: - anchored: True - pos: -1.5,8.5 + pos: -0.5,8.5 parent: 1 type: Transform - storage: @@ -2016,14 +2039,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver -- proto: Rack - entities: - - uid: 36 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - proto: ReagentContainerFlour entities: - uid: 256 @@ -2054,11 +2069,22 @@ entities: type: Transform - proto: SeedExtractor entities: - - uid: 262 + - uid: 45 components: - - pos: -0.5,8.5 + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 43 + components: + - pos: -1.5039086,7.4487405 parent: 1 type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item - proto: ShuttersNormal entities: - uid: 263 @@ -2359,7 +2385,7 @@ entities: pos: 1.5,2.5 parent: 1 type: Transform - - uid: 41 + - uid: 48 components: - rot: 3.141592653589793 rad pos: 0.5,5.5 @@ -2367,9 +2393,9 @@ entities: type: Transform - proto: SpawnMobAlexander entities: - - uid: 294 + - uid: 47 components: - - pos: -1.5,7.5 + - pos: -4.5,3.5 parent: 1 type: Transform - proto: SpawnPointBotanist diff --git a/Resources/Maps/Shuttles/sparrow.yml b/Resources/Maps/Shuttles/sparrow.yml index 00eca024c3e..530c19f5acb 100644 --- a/Resources/Maps/Shuttles/sparrow.yml +++ b/Resources/Maps/Shuttles/sparrow.yml @@ -225,26 +225,21 @@ entities: 0,0: 0: 65535 -1,0: - 0: 65407 - 1: 128 + 0: 65535 -1,-1: - 0: 65279 - 1: 256 + 0: 65535 0,-1: 0: 65535 0,1: - 0: 30207 - 2: 512 + 0: 30719 0,2: 0: 119 1,0: - 0: 65471 - 1: 64 + 0: 65535 1,1: 0: 63 -2,0: - 0: 61102 - 1: 64 + 0: 61166 -2,1: 0: 142 -1,1: @@ -275,36 +270,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14993 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -314,11 +279,87 @@ entities: - type: SpreaderGrid - proto: AirAlarm entities: - - uid: 259 + - uid: 104 components: + - name: air alarm (engineering room) + type: MetaData - pos: 3.5,2.5 parent: 174 type: Transform + - ShutdownSubscribers: + - 326 + - 163 + - 290 + - 292 + type: DeviceNetwork + - devices: + - 326 + - 163 + - 290 + - 292 + type: DeviceList + - uid: 360 + components: + - name: air alarm (mixing chamber) + type: MetaData + - pos: 6.5,2.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 258 + type: DeviceNetwork + - devices: + - 258 + type: DeviceList + - uid: 361 + components: + - pos: -5.5,2.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 339 + - 343 + - 291 + type: DeviceNetwork + - devices: + - 339 + - 343 + - 291 + type: DeviceList + - uid: 362 + components: + - pos: -0.5,8.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 359 + - 358 + - 294 + type: DeviceNetwork + - devices: + - 359 + - 358 + - 294 + type: DeviceList + - uid: 363 + components: + - pos: -0.5,5.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 349 + - 350 + - 291 + - 290 + - 294 + type: DeviceNetwork + - devices: + - 349 + - 350 + - 291 + - 290 + - 294 + type: DeviceList - proto: AirCanister entities: - uid: 201 @@ -395,6 +436,9 @@ entities: - pos: 4.5,3.5 parent: 174 type: Transform + - ShutdownSubscribers: + - 360 + type: DeviceNetwork - proto: APCBasic entities: - uid: 126 @@ -994,6 +1038,32 @@ entities: pos: -1.5,-1.5 parent: 174 type: Transform +- proto: EmergencyLight + entities: + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 174 + type: Transform + - uid: 367 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 174 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 174 + type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 174 + type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 317 @@ -1016,24 +1086,39 @@ entities: pos: 2.5,0.5 parent: 174 type: Transform + - ShutdownSubscribers: + - 363 + - 104 + type: DeviceNetwork - uid: 291 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 174 type: Transform + - ShutdownSubscribers: + - 361 + - 363 + type: DeviceNetwork - uid: 292 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 174 type: Transform + - ShutdownSubscribers: + - 104 + type: DeviceNetwork - uid: 294 components: - rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 174 type: Transform + - ShutdownSubscribers: + - 363 + - 362 + type: DeviceNetwork - proto: GasAnalyzer entities: - uid: 274 @@ -1049,6 +1134,8 @@ entities: pos: 5.5,0.5 parent: 174 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - proto: GasOutletInjector entities: - uid: 257 @@ -1073,14 +1160,39 @@ entities: - pos: -2.5,3.5 parent: 174 type: Transform + - uid: 305 + components: + - pos: 4.5,5.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeBend entities: - - uid: 162 + - uid: 356 components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 parent: 174 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeStraight entities: - uid: 107 @@ -1131,11 +1243,247 @@ entities: pos: -2.5,-0.5 parent: 174 type: Transform - - uid: 169 + - uid: 259 components: - - pos: 3.5,0.5 + - pos: 3.5,1.5 + parent: 174 + type: Transform + - uid: 306 + components: + - pos: 4.5,4.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 307 + components: + - pos: 4.5,3.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 308 + components: + - pos: 4.5,2.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 309 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 parent: 174 type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 331 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 332 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 334 + components: + - pos: -0.5,0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 335 + components: + - pos: -0.5,1.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 337 + components: + - pos: -0.5,3.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 338 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 341 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 342 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 344 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 345 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 346 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 336 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 174 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 174 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 111 @@ -1162,7 +1510,9 @@ entities: pos: 6.5,-0.5 parent: 174 type: Transform - - uid: 163 + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 169 components: - rot: 3.141592653589793 rad pos: 3.5,-0.5 @@ -1176,11 +1526,6 @@ entities: pos: 5.5,1.5 parent: 174 type: Transform - - uid: 104 - components: - - pos: 3.5,1.5 - parent: 174 - type: Transform - uid: 105 components: - pos: -4.5,1.5 @@ -1192,6 +1537,102 @@ entities: pos: -2.5,1.5 parent: 174 type: Transform +- proto: GasVentPump + entities: + - uid: 163 + components: + - pos: 4.5,0.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 104 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 343 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 361 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 350 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 363 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 358 + components: + - pos: 0.5,6.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 362 + type: DeviceNetwork + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 326 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 104 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 339 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 361 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 349 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 363 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 359 + components: + - pos: 1.5,6.5 + parent: 174 + type: Transform + - ShutdownSubscribers: + - 362 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 329 + components: + - pos: 3.5,0.5 + parent: 174 + type: Transform - proto: GravityGeneratorMini entities: - uid: 128 diff --git a/Resources/Maps/Shuttles/spectre.yml b/Resources/Maps/Shuttles/spectre.yml new file mode 100644 index 00000000000..18ec3898c8f --- /dev/null +++ b/Resources/Maps/Shuttles/spectre.yml @@ -0,0 +1,9037 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 15: FloorBlueCircuit + 27: FloorDark + 28: FloorDarkDiagonal + 36: FloorDarkPlastic + 43: FloorGlass + 62: FloorMetalDiamond + 71: FloorRGlass + 73: FloorReinforcedHardened + 85: FloorSteelCheckerDark + 97: FloorTechMaint2 + 100: FloorWhite + 109: FloorWhitePlastic + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 3 + components: + - name: grid + type: MetaData + - pos: -1.484375,-0.5 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: HAAAAAAAHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAJAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAKwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAKwAAAAACAAAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAKwAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADVQAAAAABGwAAAAADcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACVQAAAAAAGwAAAAACcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACVQAAAAADGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACVQAAAAACGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAHAAAAAABHAAAAAADKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAKwAAAAACcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAZAAAAAACcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAJAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAKwAAAAADKwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAKwAAAAADcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAABbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAABbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAACbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAHAAAAAADHAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAHAAAAAACHAAAAAADcQAAAAAAKwAAAAACAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAJAAAAAAAPgAAAAAAcQAAAAAAHAAAAAADHAAAAAAAHAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAJAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAHAAAAAADHAAAAAADHAAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAAAJAAAAAADcQAAAAAAHAAAAAACHAAAAAAAHAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAHAAAAAADHAAAAAACcQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAABJAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAAAJAAAAAAD + version: 6 + 0,1: + ind: 0,1 + tiles: bwAAAAACVQAAAAACGwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAABJAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABRwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAARwAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAABKwAAAAACcQAAAAAAPgAAAAAAJAAAAAABPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAKwAAAAABcQAAAAAAHAAAAAADcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAHAAAAAAAHAAAAAADcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAJAAAAAACPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAADJAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAABZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAACJAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAJAAAAAACZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAADbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABcAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVQAAAAABVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: 1 + decals: + 69: -13,-5 + - node: + color: '#DE3A3AFF' + id: 1 + decals: + 70: -13,-5 + - node: + color: '#DE3A3AFF' + id: 2 + decals: + 71: -7,-3 + - node: + color: '#DE3A3AFF' + id: 3 + decals: + 72: 7,-3 + - node: + color: '#DE3A3AFF' + id: 4 + decals: + 73: 13,-5 + - node: + color: '#EFB34196' + id: BotLeft + decals: + 16: -13,-8 + 17: -7,-6 + 18: 7,-6 + 19: 13,-8 + 77: -7,6 + 78: -7,5 + 79: -7,4 + 80: -7,3 + 81: 7,3 + 82: 7,4 + 83: 7,6 + 84: 5,6 + 85: 5,5 + 86: 5,4 + 87: 5,3 + 88: -5,4 + 89: -5,5 + 90: -5,6 + - node: + color: '#EFB341FF' + id: BotLeft + decals: + 180: 7,5 + 181: 5,5 + 182: 5,6 + 183: 5,4 + 184: 5,3 + 185: 7,3 + 186: 7,6 + 187: -5,6 + 188: -5,4 + 189: -5,3 + 190: -5,5 + 191: -7,5 + 192: -7,4 + 193: -7,3 + 194: -7,6 + - node: + color: '#52B4E9FF' + id: BotLeftGreyscale + decals: + 74: -2,-5 + - node: + color: '#DE3A3A96' + id: BotLeftGreyscale + decals: + 75: -1,-6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerNe + decals: + 103: -10,0 + 129: 8,1 + 141: 13,0 + 142: 14,-1 + 149: 2,7 + 150: 3,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerNw + decals: + 99: -14,-1 + 101: -13,0 + 116: -8,1 + 139: 10,0 + 151: -2,7 + 152: -3,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerSe + decals: + 105: -10,-2 + 161: 3,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteCornerSw + decals: + 137: 10,-2 + 177: -3,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNe + decals: + 130: 7,1 + 131: 13,-1 + 179: 2,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 100: -13,-1 + 117: -7,1 + 178: -2,6 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSe + decals: + 107: -12,-2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 132: 12,-2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineE + decals: + 104: -10,-1 + 108: -12,-3 + 109: -12,-4 + 110: -12,-5 + 111: -5,-3 + 112: -5,-2 + 113: -5,-1 + 114: -5,0 + 115: -5,1 + 126: 8,-3 + 127: 8,-2 + 128: 8,-1 + 143: 14,-2 + 144: 14,-3 + 145: 14,-4 + 146: 14,-5 + 148: 8,0 + 158: 3,3 + 159: 3,4 + 160: 3,5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 24: -2,18 + 25: -1,18 + 26: 0,18 + 27: 1,18 + 28: 2,18 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 147: 12,0 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 102: -11,0 + 140: 11,0 + 153: -1,7 + 154: 0,7 + 155: 1,7 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 106: -11,-2 + 136: 11,-2 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 91: 0,2 + 92: 1,2 + 93: 2,2 + 94: 3,2 + 162: -1,2 + 163: -2,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 95: -14,-5 + 96: -14,-4 + 97: -14,-3 + 98: -14,-2 + 118: -8,0 + 119: -8,-2 + 120: -8,-3 + 121: -8,-1 + 122: 5,-3 + 123: 5,-2 + 124: 5,-1 + 125: 5,1 + 133: 12,-3 + 134: 12,-4 + 135: 12,-5 + 138: 10,-1 + 156: -3,5 + 157: -3,4 + 176: -3,3 + - node: + color: '#951710FF' + id: Delivery + decals: + 164: -1,3 + 165: 0,3 + 166: 1,3 + 167: -2,3 + 168: -2,4 + 169: -2,5 + 170: -1,5 + 171: 1,5 + 172: 1,5 + 173: 2,5 + 174: 2,4 + 175: 2,3 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 29: 4,2 + 76: -4,2 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineN + decals: + 32: -12,0 + - node: + color: '#D381C996' + id: MiniTileWhiteLineN + decals: + 31: -6,6 + - node: + color: '#DE3A3A96' + id: MiniTileWhiteLineN + decals: + 30: 6,6 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 20: -1,22 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 22: 1,20 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 23: -1,20 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 21: 1,22 + - node: + color: '#EFB34196' + id: WarnFull + decals: + 0: -7,-7 + 1: -8,-6 + 2: -7,-5 + 3: -6,-6 + 4: 7,-7 + 5: 6,-6 + 6: 7,-5 + 7: 8,-6 + 8: 13,-9 + 9: 12,-8 + 10: 13,-7 + 11: 14,-8 + 12: -13,-7 + 13: -12,-8 + 14: -13,-9 + 15: -14,-8 + - node: + color: '#DE3A3A96' + id: WarnLineN + decals: + 33: 14,-5 + 34: 13,-5 + 35: 12,-5 + 36: 8,-3 + 37: 7,-3 + 38: 6,-3 + 39: -6,-3 + 40: -7,-3 + 41: -7,-3 + 42: -8,-3 + 43: -6,-3 + 44: -8,-3 + 45: -12,-5 + 46: -12,-5 + 47: -13,-5 + 48: -13,-5 + 49: -14,-5 + 50: -14,-5 + 51: 14,-5 + 52: 14,-5 + 53: 13,-5 + 54: 13,-5 + 55: 12,-5 + 56: 12,-5 + 57: 8,-3 + 58: 7,-3 + 59: 6,-3 + 60: 6,-3 + 61: 7,-3 + 62: 8,-3 + 63: -6,-3 + 64: -7,-3 + 65: -8,-3 + 66: -12,-5 + 67: -13,-5 + 68: -14,-5 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 61167 + 1,3: + 0: 44782 + 2,0: + 0: 49151 + 2,1: + 0: 39867 + 2,2: + 0: 2457 + 3,0: + 0: 32767 + 3,1: + 0: 9011 + 3,2: + 0: 818 + -4,0: + 0: 52991 + -4,1: + 0: 34952 + -3,0: + 0: 49151 + -3,1: + 0: 11195 + -3,2: + 0: 818 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 61439 + -2,3: + 0: 44782 + -1,1: + 0: 65535 + -1,2: + 0: 61167 + -1,3: + 0: 61166 + 0,-3: + 0: 30464 + 0,-2: + 0: 65399 + 1,-1: + 0: 65535 + 1,-3: + 0: 8928 + 1,-2: + 0: 65262 + 2,-3: + 0: 43704 + 2,-2: + 0: 48059 + 2,-1: + 0: 65531 + 2,-4: + 0: 32768 + 3,-4: + 0: 61440 + 3,-3: + 0: 65416 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 30719 + 0,7: + 0: 30583 + 1,4: + 0: 238 + -4,-4: + 0: 57344 + -4,-3: + 0: 60962 + -4,-2: + 0: 65518 + -4,-1: + 0: 65535 + -3,-4: + 0: 12288 + -3,-3: + 0: 48034 + -3,-2: + 0: 48059 + -3,-1: + 0: 65531 + -2,-3: + 0: 35056 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,-2: + 0: 65228 + -1,-3: + 0: 52224 + -2,4: + 0: 238 + -1,4: + 0: 61166 + -1,5: + 0: 61166 + -1,6: + 0: 52462 + -1,7: + 0: 52428 + -1,8: + 0: 52428 + -1,9: + 0: 52428 + -1,10: + 0: 1092 + 0,8: + 0: 30583 + 0,9: + 0: 30583 + 0,10: + 0: 1092 + -4,2: + 0: 2184 + -5,-2: + 0: 32768 + -5,-1: + 0: 34952 + 4,-2: + 0: 12544 + 4,-1: + 0: 13107 + 4,0: + 0: 19 + -5,0: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Spectre + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 738 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1470 + - 1469 + - 449 + - 500 + type: DeviceNetwork + - devices: + - 685 + - 633 + - 449 + - 1469 + - 1470 + - 500 + type: DeviceList + - uid: 798 + components: + - pos: -10.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 674 + - 764 + type: DeviceNetwork + - devices: + - 674 + - 764 + type: DeviceList + - uid: 932 + components: + - pos: 11.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 701 + - 686 + type: DeviceNetwork + - devices: + - 686 + - 701 + type: DeviceList + - uid: 933 + components: + - pos: 2.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 449 + - 633 + - 685 + type: DeviceNetwork + - devices: + - 449 + - 633 + - 685 + type: DeviceList + - linkedPorts: + 939: + - AirWarning: Close + - AirNormal: Open + type: DeviceLinkSource + - uid: 934 + components: + - pos: 0.5,-3.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1473 + type: DeviceNetwork + - devices: + - 635 + - 1473 + type: DeviceList + - uid: 1055 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1472 + - 534 + type: DeviceNetwork + - devices: + - 1063 + - 1057 + - 1472 + - 534 + type: DeviceList +- proto: AirlockAtmospherics + entities: + - uid: 607 + components: + - pos: 2.5,-3.5 + parent: 3 + type: Transform +- proto: AirlockCommand + entities: + - uid: 2 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 244 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 114 + components: + - pos: 0.5,1.5 + parent: 3 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 25 + components: + - pos: 15.5,-2.5 + parent: 3 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 3 + type: Transform + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 3 + type: Transform + - uid: 465 + components: + - pos: 15.5,-0.5 + parent: 3 + type: Transform +- proto: AirlockGlass + entities: + - uid: 1551 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 3 + type: Transform + - uid: 1552 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 3 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 47 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 3 + type: Transform + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 3 + type: Transform + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 3 + type: Transform + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 3 + type: Transform +- proto: AirlockMaintGlass + entities: + - uid: 595 + components: + - pos: 12.5,1.5 + parent: 3 + type: Transform + - uid: 598 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 592 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 3 + type: Transform +- proto: AirlockScience + entities: + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 3 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 3 + type: Transform + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 3 + type: Transform + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 3 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 3 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 3 + type: Transform + - uid: 939 + components: + - pos: 0.5,8.5 + parent: 3 + type: Transform + - links: + - 933 + type: DeviceLinkSink +- proto: AirlockSecurity + entities: + - uid: 600 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform +- proto: AmeController + entities: + - uid: 601 + components: + - pos: -1.5,0.5 + parent: 3 + type: Transform + - injectionAmount: 4 + injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 602 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 40 + components: + - pos: 3.5392103,-1.3966094 + parent: 3 + type: Transform + - uid: 160 + components: + - pos: 3.3517103,-1.4122344 + parent: 3 + type: Transform + - uid: 602 + components: + - flags: InContainer + type: MetaData + - parent: 601 + type: Transform + - canCollide: False + type: Physics +- proto: AmeShielding + entities: + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 3 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 3 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 3 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 3 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 3 + type: Transform + - uid: 34 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 3 + type: Transform + - uid: 36 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 3 + type: Transform + - uid: 38 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 3 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 3 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 3 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 605 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 3 + type: Transform + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 3 + type: Transform +- proto: AnomalyLocator + entities: + - uid: 79 + components: + - pos: 5.6005936,0.1949054 + parent: 3 + type: Transform + - uid: 268 + components: + - pos: -4.474732,0.1949054 + parent: 3 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 67 + components: + - rot: 1.5707963267948966 rad + pos: -4.4982333,-0.275599 + parent: 3 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 5.5017667,-0.306849 + parent: 3 + type: Transform +- proto: APCBasic + entities: + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 390 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 415 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 493 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 494 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 495 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 1064 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1179 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 1213 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 3 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 416 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 3 + type: Transform + - uid: 419 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 3 + type: Transform + - uid: 420 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 3 + type: Transform + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 3 + type: Transform + - uid: 1258 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 3 + type: Transform + - uid: 1259 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 3 + type: Transform + - uid: 1260 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 3 + type: Transform + - uid: 1261 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 3 + type: Transform +- proto: Autolathe + entities: + - uid: 947 + components: + - pos: 2.5,10.5 + parent: 3 + type: Transform +- proto: BenchSofaCorpLeft + entities: + - uid: 1543 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpMiddle + entities: + - uid: 1542 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpRight + entities: + - uid: 1541 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: BlastDoor + entities: + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 3 + type: Transform + - links: + - 373 + type: DeviceLinkSink + - uid: 388 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 3 + type: Transform + - links: + - 400 + type: DeviceLinkSink + - uid: 389 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 3 + type: Transform + - links: + - 375 + type: DeviceLinkSink + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 3 + type: Transform + - links: + - 369 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 333 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 3 + type: Transform + - links: + - 370 + type: DeviceLinkSink + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 3 + type: Transform + - links: + - 370 + type: DeviceLinkSink + - uid: 349 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 3 + type: Transform + - links: + - 370 + type: DeviceLinkSink + - uid: 350 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 3 + type: Transform + - links: + - 372 + type: DeviceLinkSink + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 3 + type: Transform + - links: + - 372 + type: DeviceLinkSink + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 3 + type: Transform + - links: + - 372 + type: DeviceLinkSink + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 3 + type: Transform + - invokeCounter: 2 + links: + - 374 + type: DeviceLinkSink + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 3 + type: Transform + - invokeCounter: 2 + links: + - 374 + type: DeviceLinkSink + - uid: 355 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 3 + type: Transform + - invokeCounter: 2 + links: + - 374 + type: DeviceLinkSink + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 3 + type: Transform + - links: + - 376 + type: DeviceLinkSink + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 3 + type: Transform + - links: + - 376 + type: DeviceLinkSink + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 3 + type: Transform + - links: + - 376 + type: DeviceLinkSink +- proto: BookshelfFilled + entities: + - uid: 1534 + components: + - pos: -7.5,1.5 + parent: 3 + type: Transform + - uid: 1535 + components: + - pos: 8.5,1.5 + parent: 3 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 1284 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 3 + type: Transform +- proto: CableApcExtension + entities: + - uid: 12 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 13 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 14 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 22 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 43 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 61 + components: + - pos: 4.5,-3.5 + parent: 3 + type: Transform + - uid: 63 + components: + - pos: -5.5,17.5 + parent: 3 + type: Transform + - uid: 76 + components: + - pos: 3.5,20.5 + parent: 3 + type: Transform + - uid: 131 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 177 + components: + - pos: 4.5,-4.5 + parent: 3 + type: Transform + - uid: 210 + components: + - pos: 6.5,-3.5 + parent: 3 + type: Transform + - uid: 239 + components: + - pos: -4.5,14.5 + parent: 3 + type: Transform + - uid: 302 + components: + - pos: 2.5,-3.5 + parent: 3 + type: Transform + - uid: 323 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 324 + components: + - pos: -0.5,1.5 + parent: 3 + type: Transform + - uid: 325 + components: + - pos: 14.5,-1.5 + parent: 3 + type: Transform + - uid: 399 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 418 + components: + - pos: 1.5,2.5 + parent: 3 + type: Transform + - uid: 421 + components: + - pos: -10.5,-6.5 + parent: 3 + type: Transform + - uid: 429 + components: + - pos: -4.5,15.5 + parent: 3 + type: Transform + - uid: 440 + components: + - pos: -6.5,2.5 + parent: 3 + type: Transform + - uid: 444 + components: + - pos: 7.5,2.5 + parent: 3 + type: Transform + - uid: 452 + components: + - pos: -5.5,11.5 + parent: 3 + type: Transform + - uid: 453 + components: + - pos: 3.5,-3.5 + parent: 3 + type: Transform + - uid: 455 + components: + - pos: -10.5,-5.5 + parent: 3 + type: Transform + - uid: 458 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 460 + components: + - pos: 5.5,-4.5 + parent: 3 + type: Transform + - uid: 467 + components: + - pos: 5.5,-9.5 + parent: 3 + type: Transform + - uid: 468 + components: + - pos: 5.5,-7.5 + parent: 3 + type: Transform + - uid: 470 + components: + - pos: 5.5,-6.5 + parent: 3 + type: Transform + - uid: 473 + components: + - pos: 5.5,-5.5 + parent: 3 + type: Transform + - uid: 475 + components: + - pos: 1.5,20.5 + parent: 3 + type: Transform + - uid: 487 + components: + - pos: -0.5,1.5 + parent: 3 + type: Transform + - uid: 491 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 496 + components: + - pos: 11.5,-5.5 + parent: 3 + type: Transform + - uid: 497 + components: + - pos: 11.5,-8.5 + parent: 3 + type: Transform + - uid: 498 + components: + - pos: 11.5,-6.5 + parent: 3 + type: Transform + - uid: 499 + components: + - pos: -5.5,2.5 + parent: 3 + type: Transform + - uid: 501 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 502 + components: + - pos: 11.5,-9.5 + parent: 3 + type: Transform + - uid: 503 + components: + - pos: 11.5,-7.5 + parent: 3 + type: Transform + - uid: 504 + components: + - pos: 12.5,-9.5 + parent: 3 + type: Transform + - uid: 506 + components: + - pos: 5.5,2.5 + parent: 3 + type: Transform + - uid: 507 + components: + - pos: 6.5,2.5 + parent: 3 + type: Transform + - uid: 509 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 510 + components: + - pos: 0.5,2.5 + parent: 3 + type: Transform + - uid: 511 + components: + - pos: 0.5,3.5 + parent: 3 + type: Transform + - uid: 512 + components: + - pos: 0.5,3.5 + parent: 3 + type: Transform + - uid: 514 + components: + - pos: 0.5,4.5 + parent: 3 + type: Transform + - uid: 515 + components: + - pos: 0.5,5.5 + parent: 3 + type: Transform + - uid: 516 + components: + - pos: 0.5,6.5 + parent: 3 + type: Transform + - uid: 517 + components: + - pos: 0.5,7.5 + parent: 3 + type: Transform + - uid: 520 + components: + - pos: 0.5,10.5 + parent: 3 + type: Transform + - uid: 521 + components: + - pos: -0.5,10.5 + parent: 3 + type: Transform + - uid: 522 + components: + - pos: -1.5,10.5 + parent: 3 + type: Transform + - uid: 523 + components: + - pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 525 + components: + - pos: 0.5,11.5 + parent: 3 + type: Transform + - uid: 526 + components: + - pos: 0.5,12.5 + parent: 3 + type: Transform + - uid: 527 + components: + - pos: 0.5,13.5 + parent: 3 + type: Transform + - uid: 528 + components: + - pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 529 + components: + - pos: 0.5,15.5 + parent: 3 + type: Transform + - uid: 530 + components: + - pos: 0.5,16.5 + parent: 3 + type: Transform + - uid: 531 + components: + - pos: 0.5,17.5 + parent: 3 + type: Transform + - uid: 533 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 545 + components: + - pos: 5.5,-10.5 + parent: 3 + type: Transform + - uid: 548 + components: + - pos: -3.5,-4.5 + parent: 3 + type: Transform + - uid: 566 + components: + - pos: -6.5,-10.5 + parent: 3 + type: Transform + - uid: 568 + components: + - pos: -7.5,1.5 + parent: 3 + type: Transform + - uid: 569 + components: + - pos: -7.5,0.5 + parent: 3 + type: Transform + - uid: 570 + components: + - pos: -7.5,-0.5 + parent: 3 + type: Transform + - uid: 571 + components: + - pos: -8.5,-0.5 + parent: 3 + type: Transform + - uid: 573 + components: + - pos: -10.5,-0.5 + parent: 3 + type: Transform + - uid: 574 + components: + - pos: -10.5,-1.5 + parent: 3 + type: Transform + - uid: 575 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 576 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 577 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 578 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 580 + components: + - pos: 11.5,-3.5 + parent: 3 + type: Transform + - uid: 581 + components: + - pos: 12.5,-3.5 + parent: 3 + type: Transform + - uid: 582 + components: + - pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 583 + components: + - pos: 11.5,-1.5 + parent: 3 + type: Transform + - uid: 585 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 587 + components: + - pos: 8.5,-0.5 + parent: 3 + type: Transform + - uid: 588 + components: + - pos: 8.5,0.5 + parent: 3 + type: Transform + - uid: 589 + components: + - pos: 8.5,1.5 + parent: 3 + type: Transform + - uid: 590 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 612 + components: + - pos: -10.5,-4.5 + parent: 3 + type: Transform + - uid: 614 + components: + - pos: -10.5,-7.5 + parent: 3 + type: Transform + - uid: 700 + components: + - pos: -10.5,-8.5 + parent: 3 + type: Transform + - uid: 718 + components: + - pos: -10.5,-9.5 + parent: 3 + type: Transform + - uid: 719 + components: + - pos: -11.5,-9.5 + parent: 3 + type: Transform + - uid: 721 + components: + - pos: 11.5,-4.5 + parent: 3 + type: Transform + - uid: 725 + components: + - pos: 5.5,-8.5 + parent: 3 + type: Transform + - uid: 728 + components: + - pos: 13.5,-1.5 + parent: 3 + type: Transform + - uid: 731 + components: + - pos: -14.5,-1.5 + parent: 3 + type: Transform + - uid: 732 + components: + - pos: -15.5,-1.5 + parent: 3 + type: Transform + - uid: 733 + components: + - pos: 15.5,-1.5 + parent: 3 + type: Transform + - uid: 734 + components: + - pos: 16.5,-1.5 + parent: 3 + type: Transform + - uid: 1086 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 1104 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1112 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1113 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - uid: 1114 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - uid: 1115 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - uid: 1116 + components: + - pos: 2.5,23.5 + parent: 3 + type: Transform + - uid: 1117 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1118 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1119 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 1120 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 1121 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 1122 + components: + - pos: -11.5,-3.5 + parent: 3 + type: Transform + - uid: 1123 + components: + - pos: -12.5,-3.5 + parent: 3 + type: Transform + - uid: 1126 + components: + - pos: -13.5,-1.5 + parent: 3 + type: Transform + - uid: 1127 + components: + - pos: -13.5,-1.5 + parent: 3 + type: Transform + - uid: 1128 + components: + - pos: -13.5,-0.5 + parent: 3 + type: Transform + - uid: 1131 + components: + - pos: -12.5,-4.5 + parent: 3 + type: Transform + - uid: 1132 + components: + - pos: -13.5,-0.5 + parent: 3 + type: Transform + - uid: 1133 + components: + - pos: -12.5,-0.5 + parent: 3 + type: Transform + - uid: 1134 + components: + - pos: -11.5,-0.5 + parent: 3 + type: Transform + - uid: 1136 + components: + - pos: -11.5,1.5 + parent: 3 + type: Transform + - uid: 1137 + components: + - pos: -12.5,-5.5 + parent: 3 + type: Transform + - uid: 1139 + components: + - pos: -12.5,-6.5 + parent: 3 + type: Transform + - uid: 1141 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 1142 + components: + - pos: -6.5,-5.5 + parent: 3 + type: Transform + - uid: 1143 + components: + - pos: -6.5,-5.5 + parent: 3 + type: Transform + - uid: 1144 + components: + - pos: -6.5,-4.5 + parent: 3 + type: Transform + - uid: 1145 + components: + - pos: -6.5,-3.5 + parent: 3 + type: Transform + - uid: 1146 + components: + - pos: -6.5,-2.5 + parent: 3 + type: Transform + - uid: 1147 + components: + - pos: -6.5,-1.5 + parent: 3 + type: Transform + - uid: 1149 + components: + - pos: -6.5,-0.5 + parent: 3 + type: Transform + - uid: 1150 + components: + - pos: -6.5,-0.5 + parent: 3 + type: Transform + - uid: 1151 + components: + - pos: -5.5,3.5 + parent: 3 + type: Transform + - uid: 1152 + components: + - pos: -5.5,4.5 + parent: 3 + type: Transform + - uid: 1153 + components: + - pos: -5.5,5.5 + parent: 3 + type: Transform + - uid: 1155 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform + - uid: 1156 + components: + - pos: -5.5,8.5 + parent: 3 + type: Transform + - uid: 1157 + components: + - pos: 6.5,3.5 + parent: 3 + type: Transform + - uid: 1158 + components: + - pos: 6.5,4.5 + parent: 3 + type: Transform + - uid: 1159 + components: + - pos: 6.5,5.5 + parent: 3 + type: Transform + - uid: 1161 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform + - uid: 1162 + components: + - pos: 6.5,8.5 + parent: 3 + type: Transform + - uid: 1199 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1200 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - uid: 1203 + components: + - pos: 0.5,20.5 + parent: 3 + type: Transform + - uid: 1205 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 1206 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - uid: 1207 + components: + - pos: 0.5,24.5 + parent: 3 + type: Transform + - uid: 1208 + components: + - pos: 0.5,25.5 + parent: 3 + type: Transform + - uid: 1209 + components: + - pos: 0.5,26.5 + parent: 3 + type: Transform + - uid: 1210 + components: + - pos: -0.5,26.5 + parent: 3 + type: Transform + - uid: 1212 + components: + - pos: 1.5,26.5 + parent: 3 + type: Transform + - uid: 1222 + components: + - pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 1230 + components: + - pos: 7.5,-0.5 + parent: 3 + type: Transform + - uid: 1231 + components: + - pos: 7.5,-1.5 + parent: 3 + type: Transform + - uid: 1232 + components: + - pos: 7.5,-3.5 + parent: 3 + type: Transform + - uid: 1233 + components: + - pos: 7.5,-2.5 + parent: 3 + type: Transform + - uid: 1234 + components: + - pos: 7.5,-4.5 + parent: 3 + type: Transform + - uid: 1235 + components: + - pos: 7.5,-5.5 + parent: 3 + type: Transform + - uid: 1236 + components: + - pos: 13.5,-3.5 + parent: 3 + type: Transform + - uid: 1237 + components: + - pos: 13.5,-4.5 + parent: 3 + type: Transform + - uid: 1238 + components: + - pos: 13.5,-5.5 + parent: 3 + type: Transform + - uid: 1239 + components: + - pos: 13.5,-6.5 + parent: 3 + type: Transform + - uid: 1240 + components: + - pos: 13.5,-7.5 + parent: 3 + type: Transform + - uid: 1262 + components: + - pos: 12.5,-1.5 + parent: 3 + type: Transform + - uid: 1303 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 1304 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 1305 + components: + - pos: 1.5,-5.5 + parent: 3 + type: Transform + - uid: 1306 + components: + - pos: 0.5,-5.5 + parent: 3 + type: Transform + - uid: 1308 + components: + - pos: 1.5,-6.5 + parent: 3 + type: Transform + - uid: 1310 + components: + - pos: -11.5,1.5 + parent: 3 + type: Transform + - uid: 1311 + components: + - pos: -11.5,2.5 + parent: 3 + type: Transform + - uid: 1314 + components: + - pos: -11.5,5.5 + parent: 3 + type: Transform + - uid: 1315 + components: + - pos: -5.5,9.5 + parent: 3 + type: Transform + - uid: 1316 + components: + - pos: -5.5,10.5 + parent: 3 + type: Transform + - uid: 1319 + components: + - pos: 6.5,8.5 + parent: 3 + type: Transform + - uid: 1320 + components: + - pos: 6.5,9.5 + parent: 3 + type: Transform + - uid: 1321 + components: + - pos: 6.5,10.5 + parent: 3 + type: Transform + - uid: 1322 + components: + - pos: 6.5,10.5 + parent: 3 + type: Transform + - uid: 1323 + components: + - pos: 6.5,11.5 + parent: 3 + type: Transform + - uid: 1325 + components: + - pos: 12.5,-0.5 + parent: 3 + type: Transform + - uid: 1326 + components: + - pos: 12.5,0.5 + parent: 3 + type: Transform + - uid: 1327 + components: + - pos: 12.5,1.5 + parent: 3 + type: Transform + - uid: 1328 + components: + - pos: 12.5,2.5 + parent: 3 + type: Transform + - uid: 1329 + components: + - pos: 12.5,2.5 + parent: 3 + type: Transform + - uid: 1330 + components: + - pos: 12.5,3.5 + parent: 3 + type: Transform + - uid: 1331 + components: + - pos: 12.5,4.5 + parent: 3 + type: Transform + - uid: 1332 + components: + - pos: 12.5,4.5 + parent: 3 + type: Transform + - uid: 1333 + components: + - pos: 12.5,5.5 + parent: 3 + type: Transform + - uid: 1343 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 1345 + components: + - pos: -4.5,15.5 + parent: 3 + type: Transform + - uid: 1346 + components: + - pos: -4.5,14.5 + parent: 3 + type: Transform + - uid: 1347 + components: + - pos: -4.5,13.5 + parent: 3 + type: Transform + - uid: 1348 + components: + - pos: -4.5,12.5 + parent: 3 + type: Transform + - uid: 1349 + components: + - pos: -4.5,11.5 + parent: 3 + type: Transform + - uid: 1355 + components: + - pos: -10.5,8.5 + parent: 3 + type: Transform + - uid: 1363 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 1364 + components: + - pos: -10.5,3.5 + parent: 3 + type: Transform + - uid: 1365 + components: + - pos: -10.5,4.5 + parent: 3 + type: Transform + - uid: 1366 + components: + - pos: -10.5,5.5 + parent: 3 + type: Transform + - uid: 1367 + components: + - pos: -10.5,5.5 + parent: 3 + type: Transform + - uid: 1368 + components: + - pos: -10.5,6.5 + parent: 3 + type: Transform + - uid: 1369 + components: + - pos: -10.5,7.5 + parent: 3 + type: Transform + - uid: 1370 + components: + - pos: -10.5,9.5 + parent: 3 + type: Transform + - uid: 1371 + components: + - pos: -10.5,10.5 + parent: 3 + type: Transform + - uid: 1372 + components: + - pos: -10.5,10.5 + parent: 3 + type: Transform + - uid: 1374 + components: + - pos: -11.5,10.5 + parent: 3 + type: Transform + - uid: 1375 + components: + - pos: -11.5,10.5 + parent: 3 + type: Transform + - uid: 1378 + components: + - pos: -5.5,-10.5 + parent: 3 + type: Transform + - uid: 1379 + components: + - pos: -4.5,-10.5 + parent: 3 + type: Transform + - uid: 1380 + components: + - pos: -4.5,-9.5 + parent: 3 + type: Transform + - uid: 1381 + components: + - pos: -4.5,-8.5 + parent: 3 + type: Transform + - uid: 1382 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - uid: 1383 + components: + - pos: -4.5,-7.5 + parent: 3 + type: Transform + - uid: 1384 + components: + - pos: -4.5,-7.5 + parent: 3 + type: Transform + - uid: 1385 + components: + - pos: -4.5,-6.5 + parent: 3 + type: Transform + - uid: 1386 + components: + - pos: -4.5,-6.5 + parent: 3 + type: Transform + - uid: 1387 + components: + - pos: -4.5,-5.5 + parent: 3 + type: Transform + - uid: 1388 + components: + - pos: -4.5,-4.5 + parent: 3 + type: Transform + - uid: 1389 + components: + - pos: -4.5,-4.5 + parent: 3 + type: Transform + - uid: 1391 + components: + - pos: -5.5,-3.5 + parent: 3 + type: Transform + - uid: 1392 + components: + - pos: -3.5,-3.5 + parent: 3 + type: Transform + - uid: 1393 + components: + - pos: -2.5,-3.5 + parent: 3 + type: Transform + - uid: 1394 + components: + - pos: -2.5,-3.5 + parent: 3 + type: Transform + - uid: 1395 + components: + - pos: -1.5,-3.5 + parent: 3 + type: Transform + - uid: 1396 + components: + - pos: -0.5,-3.5 + parent: 3 + type: Transform + - uid: 1397 + components: + - pos: -0.5,-3.5 + parent: 3 + type: Transform + - uid: 1398 + components: + - pos: 0.5,-3.5 + parent: 3 + type: Transform + - uid: 1399 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 1400 + components: + - pos: 2.5,-6.5 + parent: 3 + type: Transform + - uid: 1401 + components: + - pos: 2.5,-7.5 + parent: 3 + type: Transform + - uid: 1402 + components: + - pos: 2.5,-7.5 + parent: 3 + type: Transform + - uid: 1403 + components: + - pos: 2.5,-8.5 + parent: 3 + type: Transform + - uid: 1404 + components: + - pos: 2.5,-8.5 + parent: 3 + type: Transform + - uid: 1405 + components: + - pos: 1.5,-8.5 + parent: 3 + type: Transform + - uid: 1406 + components: + - pos: 1.5,-9.5 + parent: 3 + type: Transform + - uid: 1407 + components: + - pos: 0.5,-9.5 + parent: 3 + type: Transform + - uid: 1408 + components: + - pos: -0.5,-9.5 + parent: 3 + type: Transform + - uid: 1410 + components: + - pos: 6.5,-10.5 + parent: 3 + type: Transform + - uid: 1411 + components: + - pos: 7.5,-10.5 + parent: 3 + type: Transform + - uid: 1423 + components: + - pos: 9.5,2.5 + parent: 3 + type: Transform + - uid: 1424 + components: + - pos: 10.5,2.5 + parent: 3 + type: Transform + - uid: 1425 + components: + - pos: 9.5,3.5 + parent: 3 + type: Transform + - uid: 1426 + components: + - pos: 9.5,4.5 + parent: 3 + type: Transform + - uid: 1427 + components: + - pos: 9.5,6.5 + parent: 3 + type: Transform + - uid: 1428 + components: + - pos: 9.5,5.5 + parent: 3 + type: Transform + - uid: 1429 + components: + - pos: 11.5,5.5 + parent: 3 + type: Transform + - uid: 1430 + components: + - pos: 11.5,6.5 + parent: 3 + type: Transform + - uid: 1431 + components: + - pos: 11.5,7.5 + parent: 3 + type: Transform + - uid: 1432 + components: + - pos: 11.5,8.5 + parent: 3 + type: Transform + - uid: 1433 + components: + - pos: 11.5,9.5 + parent: 3 + type: Transform + - uid: 1434 + components: + - pos: 11.5,10.5 + parent: 3 + type: Transform + - uid: 1437 + components: + - pos: 5.5,17.5 + parent: 3 + type: Transform + - uid: 1438 + components: + - pos: 5.5,16.5 + parent: 3 + type: Transform + - uid: 1439 + components: + - pos: 5.5,15.5 + parent: 3 + type: Transform + - uid: 1440 + components: + - pos: 5.5,14.5 + parent: 3 + type: Transform + - uid: 1441 + components: + - pos: 5.5,13.5 + parent: 3 + type: Transform + - uid: 1442 + components: + - pos: 5.5,12.5 + parent: 3 + type: Transform + - uid: 1443 + components: + - pos: 5.5,11.5 + parent: 3 + type: Transform + - uid: 1446 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1448 + components: + - pos: -0.5,20.5 + parent: 3 + type: Transform + - uid: 1449 + components: + - pos: -1.5,20.5 + parent: 3 + type: Transform + - uid: 1450 + components: + - pos: -2.5,20.5 + parent: 3 + type: Transform + - uid: 1452 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 1471 + components: + - pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 1474 + components: + - pos: -8.5,3.5 + parent: 3 + type: Transform + - uid: 1475 + components: + - pos: -8.5,4.5 + parent: 3 + type: Transform + - uid: 1476 + components: + - pos: -8.5,5.5 + parent: 3 + type: Transform + - uid: 1477 + components: + - pos: -8.5,6.5 + parent: 3 + type: Transform + - uid: 1478 + components: + - pos: -8.5,2.5 + parent: 3 + type: Transform + - uid: 1480 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 1481 + components: + - pos: -10.5,3.5 + parent: 3 + type: Transform + - uid: 1482 + components: + - pos: -10.5,4.5 + parent: 3 + type: Transform + - uid: 1483 + components: + - pos: -9.5,2.5 + parent: 3 + type: Transform + - uid: 1484 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 1485 + components: + - pos: -8.5,2.5 + parent: 3 + type: Transform + - uid: 1487 + components: + - pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 1489 + components: + - pos: -1.5,20.5 + parent: 3 + type: Transform + - uid: 1492 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 1493 + components: + - pos: 6.5,17.5 + parent: 3 + type: Transform + - uid: 1494 + components: + - pos: 5.5,17.5 + parent: 3 + type: Transform + - uid: 1495 + components: + - pos: 12.5,10.5 + parent: 3 + type: Transform + - uid: 1496 + components: + - pos: 11.5,10.5 + parent: 3 + type: Transform + - uid: 1553 + components: + - pos: -0.5,5.5 + parent: 3 + type: Transform + - uid: 1554 + components: + - pos: -1.5,5.5 + parent: 3 + type: Transform + - uid: 1555 + components: + - pos: 1.5,5.5 + parent: 3 + type: Transform + - uid: 1556 + components: + - pos: 2.5,5.5 + parent: 3 + type: Transform +- proto: CableHV + entities: + - uid: 280 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 476 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 478 + components: + - pos: -1.5,0.5 + parent: 3 + type: Transform + - uid: 482 + components: + - pos: 2.5,-2.5 + parent: 3 + type: Transform + - uid: 489 + components: + - pos: 2.5,-1.5 + parent: 3 + type: Transform + - uid: 492 + components: + - pos: 3.5,-0.5 + parent: 3 + type: Transform + - uid: 554 + components: + - pos: 2.5,-0.5 + parent: 3 + type: Transform + - uid: 723 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 1061 + components: + - pos: 1.5,-0.5 + parent: 3 + type: Transform + - uid: 1062 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform +- proto: CableMV + entities: + - uid: 113 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 551 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 555 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 556 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 557 + components: + - pos: 1.5,2.5 + parent: 3 + type: Transform + - uid: 558 + components: + - pos: 0.5,10.5 + parent: 3 + type: Transform + - uid: 579 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 591 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 722 + components: + - pos: 1.5,-0.5 + parent: 3 + type: Transform + - uid: 724 + components: + - pos: 1.5,-1.5 + parent: 3 + type: Transform + - uid: 804 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 806 + components: + - pos: -2.5,1.5 + parent: 3 + type: Transform + - uid: 807 + components: + - pos: -2.5,2.5 + parent: 3 + type: Transform + - uid: 808 + components: + - pos: -3.5,2.5 + parent: 3 + type: Transform + - uid: 809 + components: + - pos: -4.5,2.5 + parent: 3 + type: Transform + - uid: 810 + components: + - pos: -4.5,2.5 + parent: 3 + type: Transform + - uid: 811 + components: + - pos: -5.5,2.5 + parent: 3 + type: Transform + - uid: 812 + components: + - pos: -6.5,2.5 + parent: 3 + type: Transform + - uid: 813 + components: + - pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 814 + components: + - pos: -7.5,1.5 + parent: 3 + type: Transform + - uid: 815 + components: + - pos: -7.5,0.5 + parent: 3 + type: Transform + - uid: 816 + components: + - pos: -7.5,0.5 + parent: 3 + type: Transform + - uid: 817 + components: + - pos: -7.5,-0.5 + parent: 3 + type: Transform + - uid: 818 + components: + - pos: -8.5,-0.5 + parent: 3 + type: Transform + - uid: 819 + components: + - pos: -9.5,-0.5 + parent: 3 + type: Transform + - uid: 820 + components: + - pos: -10.5,-0.5 + parent: 3 + type: Transform + - uid: 821 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 822 + components: + - pos: -10.5,-1.5 + parent: 3 + type: Transform + - uid: 823 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 824 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 825 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 826 + components: + - pos: 2.5,1.5 + parent: 3 + type: Transform + - uid: 827 + components: + - pos: 3.5,1.5 + parent: 3 + type: Transform + - uid: 828 + components: + - pos: 3.5,2.5 + parent: 3 + type: Transform + - uid: 829 + components: + - pos: 4.5,2.5 + parent: 3 + type: Transform + - uid: 830 + components: + - pos: 5.5,2.5 + parent: 3 + type: Transform + - uid: 831 + components: + - pos: 6.5,2.5 + parent: 3 + type: Transform + - uid: 832 + components: + - pos: 7.5,2.5 + parent: 3 + type: Transform + - uid: 833 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 834 + components: + - pos: 8.5,1.5 + parent: 3 + type: Transform + - uid: 835 + components: + - pos: 8.5,0.5 + parent: 3 + type: Transform + - uid: 836 + components: + - pos: 8.5,-0.5 + parent: 3 + type: Transform + - uid: 837 + components: + - pos: 8.5,-0.5 + parent: 3 + type: Transform + - uid: 838 + components: + - pos: 9.5,-0.5 + parent: 3 + type: Transform + - uid: 839 + components: + - pos: 10.5,-0.5 + parent: 3 + type: Transform + - uid: 840 + components: + - pos: 10.5,-1.5 + parent: 3 + type: Transform + - uid: 841 + components: + - pos: 11.5,-1.5 + parent: 3 + type: Transform + - uid: 842 + components: + - pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 844 + components: + - pos: 11.5,-3.5 + parent: 3 + type: Transform + - uid: 845 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 846 + components: + - pos: 1.5,-0.5 + parent: 3 + type: Transform + - uid: 847 + components: + - pos: 1.5,-1.5 + parent: 3 + type: Transform + - uid: 848 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 849 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform + - uid: 850 + components: + - pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 854 + components: + - pos: -1.5,0.5 + parent: 3 + type: Transform + - uid: 856 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform + - uid: 857 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 859 + components: + - pos: 0.5,2.5 + parent: 3 + type: Transform + - uid: 860 + components: + - pos: 0.5,3.5 + parent: 3 + type: Transform + - uid: 861 + components: + - pos: 0.5,4.5 + parent: 3 + type: Transform + - uid: 862 + components: + - pos: 0.5,5.5 + parent: 3 + type: Transform + - uid: 863 + components: + - pos: 0.5,7.5 + parent: 3 + type: Transform + - uid: 864 + components: + - pos: 0.5,6.5 + parent: 3 + type: Transform + - uid: 865 + components: + - pos: 0.5,8.5 + parent: 3 + type: Transform + - uid: 866 + components: + - pos: 0.5,9.5 + parent: 3 + type: Transform + - uid: 870 + components: + - pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 871 + components: + - pos: 0.5,11.5 + parent: 3 + type: Transform + - uid: 872 + components: + - pos: 0.5,12.5 + parent: 3 + type: Transform + - uid: 873 + components: + - pos: 0.5,12.5 + parent: 3 + type: Transform + - uid: 874 + components: + - pos: 0.5,13.5 + parent: 3 + type: Transform + - uid: 875 + components: + - pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 876 + components: + - pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 877 + components: + - pos: 0.5,15.5 + parent: 3 + type: Transform + - uid: 878 + components: + - pos: 0.5,16.5 + parent: 3 + type: Transform + - uid: 879 + components: + - pos: 0.5,17.5 + parent: 3 + type: Transform + - uid: 880 + components: + - pos: 0.5,17.5 + parent: 3 + type: Transform + - uid: 881 + components: + - pos: 0.5,18.5 + parent: 3 + type: Transform + - uid: 882 + components: + - pos: 0.5,18.5 + parent: 3 + type: Transform + - uid: 883 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 896 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 897 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 898 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 985 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 986 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 987 + components: + - pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 988 + components: + - pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 989 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 990 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 995 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 996 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 999 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 1001 + components: + - pos: -2.5,8.5 + parent: 3 + type: Transform + - uid: 1002 + components: + - pos: -1.5,8.5 + parent: 3 + type: Transform + - uid: 1004 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 1005 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 1006 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 1007 + components: + - pos: 1.5,8.5 + parent: 3 + type: Transform + - uid: 1008 + components: + - pos: 2.5,8.5 + parent: 3 + type: Transform + - uid: 1009 + components: + - pos: 2.5,8.5 + parent: 3 + type: Transform + - uid: 1010 + components: + - pos: 3.5,8.5 + parent: 3 + type: Transform + - uid: 1013 + components: + - pos: 3.5,8.5 + parent: 3 + type: Transform + - uid: 1014 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform + - uid: 1015 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform + - uid: 1016 + components: + - pos: 4.5,7.5 + parent: 3 + type: Transform + - uid: 1019 + components: + - pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 1020 + components: + - pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 1021 + components: + - pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 1023 + components: + - pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 1077 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - uid: 1085 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1180 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 1182 + components: + - pos: -5.5,6.5 + parent: 3 + type: Transform + - uid: 1183 + components: + - pos: -5.5,5.5 + parent: 3 + type: Transform + - uid: 1184 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform + - uid: 1185 + components: + - pos: -5.5,5.5 + parent: 3 + type: Transform + - uid: 1186 + components: + - pos: -5.5,4.5 + parent: 3 + type: Transform + - uid: 1187 + components: + - pos: -5.5,3.5 + parent: 3 + type: Transform + - uid: 1188 + components: + - pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 1189 + components: + - pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 1190 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 1191 + components: + - pos: -2.5,8.5 + parent: 3 + type: Transform + - uid: 1192 + components: + - pos: -2.5,9.5 + parent: 3 + type: Transform + - uid: 1193 + components: + - pos: 0.5,20.5 + parent: 3 + type: Transform + - uid: 1194 + components: + - pos: 0.5,21.5 + parent: 3 + type: Transform + - uid: 1195 + components: + - pos: 0.5,22.5 + parent: 3 + type: Transform + - uid: 1196 + components: + - pos: 0.5,22.5 + parent: 3 + type: Transform + - uid: 1197 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - uid: 1198 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 1214 + components: + - pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 1216 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform + - uid: 1217 + components: + - pos: 6.5,5.5 + parent: 3 + type: Transform + - uid: 1218 + components: + - pos: 6.5,6.5 + parent: 3 + type: Transform + - uid: 1219 + components: + - pos: 6.5,4.5 + parent: 3 + type: Transform + - uid: 1220 + components: + - pos: 6.5,4.5 + parent: 3 + type: Transform + - uid: 1221 + components: + - pos: 6.5,3.5 + parent: 3 + type: Transform + - uid: 1257 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 1300 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 1301 + components: + - pos: 1.5,-5.5 + parent: 3 + type: Transform + - uid: 1302 + components: + - pos: 0.5,-5.5 + parent: 3 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 1549 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 3 + type: Transform + - uid: 1550 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 3 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 3 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 3 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 3 + type: Transform +- proto: ChemistryEmptyBottle01 + entities: + - uid: 1532 + components: + - name: bottle (Artifexium) + type: MetaData + - rot: 1.5707963267948966 rad + pos: 5.2801228,-1.4821787 + parent: 3 + type: Transform + - originalName: bottle + currentLabel: Artifexium + type: Label + - uid: 1533 + components: + - name: bottle (Artifexium) + type: MetaData + - rot: 1.5707963267948966 rad + pos: -4.7511272,-1.4978037 + parent: 3 + type: Transform + - originalName: bottle + currentLabel: Artifexium + type: Label +- proto: CircuitImprinter + entities: + - uid: 19 + components: + - pos: 2.5,11.5 + parent: 3 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1011 + components: + - pos: -1.5,7.5 + parent: 3 + type: Transform +- proto: ClosetL3Janitor + entities: + - uid: 1577 + components: + - pos: -2.5,5.5 + parent: 3 + type: Transform + - uid: 1578 + components: + - pos: 3.5,5.5 + parent: 3 + type: Transform +- proto: ClosetWallFireFilledRandom + entities: + - uid: 1519 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 1520 + components: + - pos: -0.5,-3.5 + parent: 3 + type: Transform +- proto: ClothingBackpackEngineering + entities: + - uid: 1531 + components: + - rot: -1.5707963267948966 rad + pos: 3.4341726,-2.4703193 + parent: 3 + type: Transform +- proto: ClothingEyesGlassesMeson + entities: + - uid: 998 + components: + - rot: -1.5707963267948966 rad + pos: 3.7952256,-2.4230478 + parent: 3 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 1540 + components: + - rot: 3.141592653589793 rad + pos: 3.7113142,-2.5887642 + parent: 3 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 943 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 347: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource + - uid: 944 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 346: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerRadar + entities: + - uid: 58 + components: + - pos: -0.5,26.5 + parent: 3 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 735 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 3 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 53 + components: + - pos: 0.5,26.5 + parent: 3 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 46 + components: + - pos: 1.5,26.5 + parent: 3 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 1521 + components: + - pos: -0.5,19.5 + parent: 3 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateArtifactContainer + entities: + - uid: 447 + components: + - pos: -11.5,-4.5 + parent: 3 + type: Transform + - uid: 448 + components: + - pos: 12.5,-4.5 + parent: 3 + type: Transform + - uid: 1267 + components: + - pos: -1.5,9.5 + parent: 3 + type: Transform + - uid: 1268 + components: + - pos: -1.5,10.5 + parent: 3 + type: Transform + - uid: 1269 + components: + - pos: -1.5,11.5 + parent: 3 + type: Transform +- proto: CrateFunPirate + entities: + - uid: 422 + components: + - pos: 6.5,12.5 + parent: 3 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateMaterialPlasma + entities: + - uid: 1583 + components: + - pos: 1.5,3.5 + parent: 3 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 1465 + components: + - pos: 12.5,5.5 + parent: 3 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1523 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 3 + type: Transform +- proto: DisposalBend + entities: + - uid: 1586 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 3 + type: Transform + - uid: 1589 + components: + - pos: 15.5,-3.5 + parent: 3 + type: Transform + - uid: 1601 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 3 + type: Transform + - uid: 1604 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 3 + type: Transform +- proto: DisposalPipe + entities: + - uid: 1587 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 3 + type: Transform + - uid: 1588 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 3 + type: Transform + - uid: 1590 + components: + - pos: 15.5,-4.5 + parent: 3 + type: Transform + - uid: 1591 + components: + - pos: 15.5,-6.5 + parent: 3 + type: Transform + - uid: 1592 + components: + - pos: 15.5,-5.5 + parent: 3 + type: Transform + - uid: 1593 + components: + - pos: 15.5,-7.5 + parent: 3 + type: Transform + - uid: 1594 + components: + - pos: 15.5,-8.5 + parent: 3 + type: Transform + - uid: 1595 + components: + - pos: 15.5,-9.5 + parent: 3 + type: Transform + - uid: 1596 + components: + - pos: 15.5,-10.5 + parent: 3 + type: Transform + - uid: 1597 + components: + - pos: 15.5,-11.5 + parent: 3 + type: Transform + - uid: 1602 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 3 + type: Transform + - uid: 1603 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 3 + type: Transform + - uid: 1605 + components: + - pos: -14.5,-4.5 + parent: 3 + type: Transform + - uid: 1606 + components: + - pos: -14.5,-5.5 + parent: 3 + type: Transform + - uid: 1607 + components: + - pos: -14.5,-6.5 + parent: 3 + type: Transform + - uid: 1608 + components: + - pos: -14.5,-7.5 + parent: 3 + type: Transform + - uid: 1609 + components: + - pos: -14.5,-8.5 + parent: 3 + type: Transform + - uid: 1610 + components: + - pos: -14.5,-9.5 + parent: 3 + type: Transform + - uid: 1611 + components: + - pos: -14.5,-10.5 + parent: 3 + type: Transform + - uid: 1612 + components: + - pos: -14.5,-11.5 + parent: 3 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1567 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 3 + type: Transform + - uid: 1585 + components: + - pos: 12.5,-2.5 + parent: 3 + type: Transform + - uid: 1598 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 3 + type: Transform + - uid: 1600 + components: + - pos: -11.5,-2.5 + parent: 3 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1565 + components: + - pos: -11.5,-2.5 + parent: 3 + type: Transform + - uid: 1584 + components: + - pos: 12.5,-2.5 + parent: 3 + type: Transform +- proto: EmergencyLight + entities: + - uid: 1066 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 3 + type: Transform + - uid: 1067 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + type: Transform + - uid: 1068 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + type: Transform + - uid: 1069 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 3 + type: Transform + - uid: 1070 + components: + - pos: 0.5,-4.5 + parent: 3 + type: Transform + - uid: 1071 + components: + - pos: 1.5,0.5 + parent: 3 + type: Transform + - uid: 1072 + components: + - pos: -0.5,0.5 + parent: 3 + type: Transform + - uid: 1073 + components: + - pos: -0.5,7.5 + parent: 3 + type: Transform + - uid: 1074 + components: + - pos: 1.5,7.5 + parent: 3 + type: Transform + - uid: 1075 + components: + - pos: 1.5,18.5 + parent: 3 + type: Transform + - uid: 1076 + components: + - pos: -0.5,18.5 + parent: 3 + type: Transform +- proto: EncryptionKeyCommon + entities: + - uid: 1526 + components: + - flags: InContainer + type: MetaData + - parent: 1524 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedicalScience + entities: + - uid: 1525 + components: + - flags: InContainer + type: MetaData + - parent: 1524 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyTraffic + entities: + - uid: 1527 + components: + - flags: InContainer + type: MetaData + - parent: 1524 + type: Transform + - canCollide: False + type: Physics +- proto: FaxMachineShip + entities: + - uid: 1528 + components: + - pos: 7.5,8.5 + parent: 3 + type: Transform +- proto: filingCabinet + entities: + - uid: 1538 + components: + - pos: -13.5,-1.5 + parent: 3 + type: Transform + - uid: 1539 + components: + - pos: 14.5,-1.5 + parent: 3 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 81 + components: + - pos: 1.5,19.5 + parent: 3 + type: Transform + - locked: False + type: Lock +- proto: Firelock + entities: + - uid: 68 + components: + - pos: -5.5,7.5 + parent: 3 + type: Transform + - uid: 141 + components: + - pos: -11.5,1.5 + parent: 3 + type: Transform + - uid: 449 + components: + - pos: 0.5,8.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 933 + - 738 + type: DeviceNetwork + - uid: 481 + components: + - pos: 12.5,1.5 + parent: 3 + type: Transform + - uid: 483 + components: + - pos: 6.5,7.5 + parent: 3 + type: Transform + - uid: 500 + components: + - pos: 0.5,1.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - uid: 534 + components: + - pos: 0.5,23.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1055 + type: DeviceNetwork + - uid: 1469 + components: + - pos: -8.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - uid: 1470 + components: + - pos: 9.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 738 + type: DeviceNetwork + - uid: 1472 + components: + - pos: 0.5,19.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 1055 + type: DeviceNetwork + - uid: 1473 + components: + - pos: 2.5,-3.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 934 + type: DeviceNetwork +- proto: Floodlight + entities: + - uid: 1544 + components: + - pos: -9.498063,0.6183729 + parent: 3 + type: Transform + - uid: 1545 + components: + - pos: 10.511866,0.5871229 + parent: 3 + type: Transform + - uid: 1546 + components: + - pos: 2.512366,2.5137527 + parent: 3 + type: Transform +- proto: FloorDrain + entities: + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 343 + components: + - pos: -12.5,-6.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 396 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 648 + components: + - pos: 12.5,3.5 + parent: 3 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasDualPortVentPump + entities: + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasMixer + entities: + - uid: 387 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 3 + type: Transform + - inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + type: GasMixer +- proto: GasOutletInjector + entities: + - uid: 736 + components: + - pos: 6.5,14.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 616 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 624 + components: + - pos: 2.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 626 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 3 + type: Transform + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 3 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 669 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 680 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 684 + components: + - pos: 1.5,4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 687 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 693 + components: + - pos: 7.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 696 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 703 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 745 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 752 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 758 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1051 + components: + - pos: 2.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1054 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1154 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 631 + components: + - pos: 0.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 649 + components: + - pos: 6.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 457 + components: + - pos: 2.5,20.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 619 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 623 + components: + - pos: 2.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 627 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 628 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 629 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 634 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 638 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 640 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 641 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 642 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 643 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 650 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 651 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 652 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 654 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 657 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 658 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 664 + components: + - pos: -6.5,4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 665 + components: + - pos: -6.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 666 + components: + - pos: -6.5,2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 667 + components: + - pos: -6.5,1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 668 + components: + - pos: -6.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 675 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 677 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 678 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 679 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 681 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 682 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 694 + components: + - pos: 7.5,2.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 695 + components: + - pos: 7.5,1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 702 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 704 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 705 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 706 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 708 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 709 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 710 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 711 + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 712 + components: + - rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 713 + components: + - rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 714 + components: + - rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 715 + components: + - rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 716 + components: + - rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 717 + components: + - rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 743 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 746 + components: + - pos: -1.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 747 + components: + - pos: -1.5,6.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 748 + components: + - pos: -1.5,5.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 749 + components: + - pos: -1.5,3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 750 + components: + - pos: -1.5,3.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 751 + components: + - pos: -1.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 755 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 757 + components: + - pos: -5.5,1.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 759 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 760 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 761 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 762 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 763 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 765 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 768 + components: + - rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 770 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 771 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 772 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 773 + components: + - rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 774 + components: + - rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 775 + components: + - rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1038 + components: + - pos: 1.5,19.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1039 + components: + - pos: 1.5,20.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1040 + components: + - pos: 1.5,21.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1041 + components: + - pos: 1.5,22.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1042 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1043 + components: + - pos: 2.5,18.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1044 + components: + - pos: 2.5,19.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1045 + components: + - pos: 2.5,19.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1047 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1048 + components: + - pos: 2.5,21.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1049 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1050 + components: + - pos: 2.5,22.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1052 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1053 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 391 + components: + - pos: 0.5,-4.5 + parent: 3 + type: Transform + - uid: 620 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 741 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1160 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 3 + type: Transform + - uid: 610 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 3 + type: Transform + - uid: 1536 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasThermoMachineHeater + entities: + - uid: 606 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 3 + type: Transform +- proto: GasVentPump + entities: + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 633 + components: + - pos: 0.5,6.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 933 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 798 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 701 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 932 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1063 + components: + - pos: 1.5,24.5 + parent: 3 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 933 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 686 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 932 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 3 + type: Transform + - ShutdownSubscribers: + - 798 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1057 + components: + - pos: -0.5,24.5 + parent: 3 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 1292 + components: + - pos: -0.5,-6.5 + parent: 3 + type: Transform +- proto: Grille + entities: + - uid: 1497 + components: + - pos: -1.5,24.5 + parent: 3 + type: Transform + - uid: 1498 + components: + - pos: -1.5,25.5 + parent: 3 + type: Transform + - uid: 1499 + components: + - pos: -1.5,26.5 + parent: 3 + type: Transform + - uid: 1500 + components: + - pos: -0.5,27.5 + parent: 3 + type: Transform + - uid: 1501 + components: + - pos: 0.5,27.5 + parent: 3 + type: Transform + - uid: 1502 + components: + - pos: 1.5,27.5 + parent: 3 + type: Transform + - uid: 1503 + components: + - pos: 2.5,26.5 + parent: 3 + type: Transform + - uid: 1504 + components: + - pos: 2.5,25.5 + parent: 3 + type: Transform + - uid: 1505 + components: + - pos: 2.5,24.5 + parent: 3 + type: Transform + - uid: 1506 + components: + - pos: 6.5,13.5 + parent: 3 + type: Transform + - uid: 1507 + components: + - pos: 12.5,-5.5 + parent: 3 + type: Transform + - uid: 1508 + components: + - pos: 14.5,-5.5 + parent: 3 + type: Transform + - uid: 1509 + components: + - pos: 8.5,-3.5 + parent: 3 + type: Transform + - uid: 1510 + components: + - pos: 6.5,-3.5 + parent: 3 + type: Transform + - uid: 1511 + components: + - pos: -5.5,-3.5 + parent: 3 + type: Transform + - uid: 1512 + components: + - pos: -7.5,-3.5 + parent: 3 + type: Transform + - uid: 1513 + components: + - pos: -11.5,-5.5 + parent: 3 + type: Transform + - uid: 1514 + components: + - pos: -13.5,-5.5 + parent: 3 + type: Transform +- proto: Gyroscope + entities: + - uid: 963 + components: + - pos: 0.5,-6.5 + parent: 3 + type: Transform + - uid: 1294 + components: + - pos: 1.5,-6.5 + parent: 3 + type: Transform +- proto: HandLabeler + entities: + - uid: 1566 + components: + - rot: 1.5707963267948966 rad + pos: -4.120806,-1.5464296 + parent: 3 + type: Transform + - uid: 1568 + components: + - rot: 1.5707963267948966 rad + pos: 5.9039626,-1.5151796 + parent: 3 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 957 + components: + - pos: 2.5,13.5 + parent: 3 + type: Transform +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 6 + components: + - pos: -0.5,22.5 + parent: 3 + type: Transform +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 997 + components: + - pos: 2.5,0.5 + parent: 3 + type: Transform +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 57 + components: + - pos: 1.5,22.5 + parent: 3 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 1581 + components: + - pos: -4.5,1.5 + parent: 3 + type: Transform + - uid: 1582 + components: + - pos: 5.5,1.5 + parent: 3 + type: Transform +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 1518 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 3 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MachineAnomalyGenerator + entities: + - uid: 1557 + components: + - pos: 0.5,4.5 + parent: 3 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 392 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 3 + type: Transform + - uid: 393 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 3 + type: Transform +- proto: MachineAPE + entities: + - uid: 153 + components: + - name: Left A.P.E + type: MetaData + - anchored: False + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 3 + type: Transform + - powerLoad: 1 + type: ApcPowerReceiver + - links: + - 83 + type: DeviceLinkSink + - bodyType: Dynamic + type: Physics + - uid: 216 + components: + - name: Left A.P.E + type: MetaData + - anchored: False + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 3 + type: Transform + - powerLoad: 1 + type: ApcPowerReceiver + - links: + - 82 + type: DeviceLinkSink + - bodyType: Dynamic + type: Physics +- proto: MachineArtifactAnalyzer + entities: + - uid: 346 + components: + - pos: 13.5,-7.5 + parent: 3 + type: Transform + - links: + - 944 + type: DeviceLinkSink + - uid: 347 + components: + - pos: -12.5,-7.5 + parent: 3 + type: Transform + - links: + - 943 + type: DeviceLinkSink +- proto: MachineCryoSleepPod + entities: + - uid: 1000 + components: + - pos: -11.5,5.5 + parent: 3 + type: Transform +- proto: MopBucketFull + entities: + - uid: 1468 + components: + - pos: 12.462342,3.6039221 + parent: 3 + type: Transform +- proto: MopItem + entities: + - uid: 1467 + components: + - pos: 12.527638,3.503134 + parent: 3 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 611 + components: + - anchored: True + pos: -0.5,-5.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: OxygenCanister + entities: + - uid: 608 + components: + - anchored: True + pos: -1.5,-4.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics +- proto: Paper + entities: + - uid: 1530 + components: + - flags: InContainer + type: MetaData + - parent: 1529 + type: Transform + - canCollide: False + type: Physics +- proto: PaperBin10 + entities: + - uid: 1529 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 3 + type: Transform + - items: + - 1530 + type: Bin + - containers: + bin-container: !type:Container + showEnts: False + occludes: True + ents: + - 1530 + type: ContainerContainer +- proto: PortableScrubber + entities: + - uid: 1537 + components: + - pos: -1.5,2.5 + parent: 3 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 1022 + components: + - pos: -13.5,0.5 + parent: 3 + type: Transform +- proto: PosterLegitEatMeat + entities: + - uid: 1059 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 3 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 991 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 3 + type: Transform + - uid: 992 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 3 + type: Transform +- proto: PottedPlantBioluminscent + entities: + - uid: 1575 + components: + - pos: -2.5,6.5 + parent: 3 + type: Transform + - uid: 1576 + components: + - pos: 3.5,6.5 + parent: 3 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + type: Transform +- proto: Poweredlight + entities: + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: -0.5,24.5 + parent: 3 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 3 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 3 + type: Transform + - uid: 1089 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 3 + type: Transform + - uid: 1090 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 3 + type: Transform + - uid: 1091 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 3 + type: Transform + - uid: 1092 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 3 + type: Transform + - uid: 1095 + components: + - pos: -10.5,0.5 + parent: 3 + type: Transform + - uid: 1096 + components: + - pos: 11.5,0.5 + parent: 3 + type: Transform + - uid: 1097 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 3 + type: Transform + - uid: 1098 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 3 + type: Transform + - uid: 1099 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 3 + type: Transform + - uid: 1100 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-7.5 + parent: 3 + type: Transform + - uid: 1102 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 3 + type: Transform + - uid: 1103 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 3 + type: Transform + - uid: 1105 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 3 + type: Transform + - uid: 1106 + components: + - pos: -0.5,-4.5 + parent: 3 + type: Transform + - uid: 1107 + components: + - pos: 1.5,-4.5 + parent: 3 + type: Transform + - uid: 1108 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 3 + type: Transform + - uid: 1109 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 3 + type: Transform + - uid: 1163 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 3 + type: Transform + - uid: 1164 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 3 + type: Transform + - uid: 1165 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 3 + type: Transform + - uid: 1166 + components: + - pos: 12.5,5.5 + parent: 3 + type: Transform + - uid: 1167 + components: + - pos: -11.5,5.5 + parent: 3 + type: Transform + - uid: 1168 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 3 + type: Transform + - uid: 1169 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 3 + type: Transform + - uid: 1170 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 3 + type: Transform + - uid: 1171 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 3 + type: Transform + - uid: 1172 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 3 + type: Transform + - uid: 1173 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 3 + type: Transform + - uid: 1174 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 3 + type: Transform + - uid: 1175 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 3 + type: Transform + - uid: 1176 + components: + - pos: -5.5,12.5 + parent: 3 + type: Transform + - uid: 1177 + components: + - pos: 6.5,12.5 + parent: 3 + type: Transform + - uid: 1178 + components: + - pos: -0.5,22.5 + parent: 3 + type: Transform + - uid: 1547 + components: + - pos: -0.5,7.5 + parent: 3 + type: Transform + - uid: 1569 + components: + - pos: 1.5,7.5 + parent: 3 + type: Transform + - uid: 1570 + components: + - pos: -6.5,6.5 + parent: 3 + type: Transform + - uid: 1571 + components: + - pos: 7.5,6.5 + parent: 3 + type: Transform +- proto: Protolathe + entities: + - uid: 946 + components: + - pos: 2.5,9.5 + parent: 3 + type: Transform +- proto: Rack + entities: + - uid: 1 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 3 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 3 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 3 + type: Transform + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 3 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 3 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 541 + components: + - pos: -0.5,14.5 + parent: 3 + type: Transform + - uid: 542 + components: + - pos: -0.5,15.5 + parent: 3 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 80 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 3 + type: Transform +- proto: RandomInstruments + entities: + - uid: 1572 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 3 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 950 + components: + - pos: 2.5,18.5 + parent: 3 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 951 + components: + - pos: -1.5,18.5 + parent: 3 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 3 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 3 + type: Transform + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 3 + type: Transform + - uid: 338 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 3 + type: Transform + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 3 + type: Transform + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 3 + type: Transform + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 3 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 3 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 3 + type: Transform + - uid: 431 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 3 + type: Transform + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 3 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 3 + type: Transform + - uid: 737 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 3 + type: Transform + - uid: 942 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 3 + type: Transform + - uid: 1344 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,24.5 + parent: 3 + type: Transform + - uid: 1376 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 3 + type: Transform + - uid: 1412 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 3 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 82 + components: + - name: Left APE controller + type: MetaData + - pos: 5.5852942,-1.4258032 + parent: 3 + type: Transform + - linkedPorts: + 216: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 83 + components: + - name: Left APE controller + type: MetaData + - pos: -4.453634,-1.4258032 + parent: 3 + type: Transform + - linkedPorts: + 153: + - Pressed: Toggle + type: DeviceLinkSource +- proto: ResearchAndDevelopmentServer + entities: + - uid: 941 + components: + - pos: -6.5,9.5 + parent: 3 + type: Transform +- proto: SignalButton + entities: + - uid: 369 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 395: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 370 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 3 + type: Transform + - linkedPorts: + 333: + - Pressed: Toggle + 348: + - Pressed: Toggle + 349: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 3 + type: Transform + - linkedPorts: + 350: + - Pressed: Toggle + 351: + - Pressed: Toggle + 352: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 3 + type: Transform + - linkedPorts: + 42: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 374 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 3 + type: Transform + - linkedPorts: + 353: + - Pressed: Toggle + 354: + - Pressed: Toggle + 355: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 3 + type: Transform + - linkedPorts: + 389: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 376 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 3 + type: Transform + - linkedPorts: + 358: + - Pressed: Toggle + 357: + - Pressed: Toggle + 356: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 3 + type: Transform + - linkedPorts: + 388: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 1558 + components: + - pos: -3.5,5.5 + parent: 3 + type: Transform + - uid: 1559 + components: + - pos: 4.5,5.5 + parent: 3 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 3 + type: Transform +- proto: SignAtmosMinsky + entities: + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 3 + type: Transform +- proto: SignDanger + entities: + - uid: 1560 + components: + - pos: -3.5,3.5 + parent: 3 + type: Transform + - uid: 1561 + components: + - pos: 4.5,3.5 + parent: 3 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 1270 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 3 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 1017 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 3 + type: Transform +- proto: SignDirectionalCryo + entities: + - uid: 955 + components: + - pos: -1.5,8.5 + parent: 3 + type: Transform + - uid: 1012 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 3 + type: Transform + - uid: 1056 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 3 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 994 + components: + - pos: 1.5,8.5 + parent: 3 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 1466 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 3 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 970 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 1291 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 1599 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 3 + type: Transform +- proto: SignEngine + entities: + - uid: 1058 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 3 + type: Transform +- proto: SignEngineering + entities: + - uid: 993 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 3 + type: Transform +- proto: SignMedical + entities: + - uid: 1517 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 3 + type: Transform +- proto: SinkWide + entities: + - uid: 676 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 3 + type: Transform +- proto: SMESBasic + entities: + - uid: 488 + components: + - pos: 3.5,-0.5 + parent: 3 + type: Transform +- proto: soda_dispenser + entities: + - uid: 1286 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 3 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 1271 + components: + - pos: -1.5,13.5 + parent: 3 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 1339 + components: + - pos: -11.5,4.5 + parent: 3 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 1288 + components: + - pos: 0.5,20.5 + parent: 3 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 1579 + components: + - pos: -12.5,-2.5 + parent: 3 + type: Transform + - uid: 1580 + components: + - pos: 13.5,-2.5 + parent: 3 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 543 + components: + - pos: 2.5,-0.5 + parent: 3 + type: Transform +- proto: StoolBar + entities: + - uid: 1272 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 3 + type: Transform + - uid: 1273 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 3 + type: Transform + - uid: 1274 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 3 + type: Transform +- proto: SubstationBasic + entities: + - uid: 490 + components: + - pos: 1.5,-2.5 + parent: 3 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 3 + type: Transform + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 3 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 3 + type: Transform + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 3 + type: Transform + - uid: 450 + components: + - pos: 7.5,9.5 + parent: 3 + type: Transform + - uid: 451 + components: + - pos: 7.5,8.5 + parent: 3 + type: Transform + - uid: 954 + components: + - pos: 2.5,12.5 + parent: 3 + type: Transform + - uid: 956 + components: + - pos: 2.5,13.5 + parent: 3 + type: Transform +- proto: TableCounterWood + entities: + - uid: 1275 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 3 + type: Transform + - uid: 1276 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 3 + type: Transform + - uid: 1277 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 3 + type: Transform + - uid: 1278 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 3 + type: Transform + - uid: 1279 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 3 + type: Transform + - uid: 1280 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 3 + type: Transform + - uid: 1281 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 3 + type: Transform +- proto: TelecomServer + entities: + - uid: 1524 + components: + - pos: -5.5,12.5 + parent: 3 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 1525 + - 1526 + - 1527 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: Thruster + entities: + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 3 + type: Transform + - uid: 59 + components: + - pos: 3.5,20.5 + parent: 3 + type: Transform + - uid: 70 + components: + - pos: 6.5,17.5 + parent: 3 + type: Transform + - uid: 74 + components: + - pos: 12.5,10.5 + parent: 3 + type: Transform + - uid: 217 + components: + - pos: 10.5,2.5 + parent: 3 + type: Transform + - uid: 326 + components: + - pos: -11.5,10.5 + parent: 3 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 3 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 3 + type: Transform + - uid: 329 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 3 + type: Transform + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 3 + type: Transform + - uid: 335 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 3 + type: Transform + - uid: 344 + components: + - pos: -2.5,20.5 + parent: 3 + type: Transform + - uid: 377 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,5.5 + parent: 3 + type: Transform + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 3 + type: Transform + - uid: 381 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 3 + type: Transform + - uid: 383 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 3 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 3 + type: Transform + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 3 + type: Transform + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 3 + type: Transform + - uid: 540 + components: + - pos: -5.5,17.5 + parent: 3 + type: Transform + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 3 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 3 + type: Transform + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 3 + type: Transform + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 3 + type: Transform + - uid: 552 + components: + - pos: -9.5,2.5 + parent: 3 + type: Transform +- proto: ToyAi + entities: + - uid: 1562 + components: + - pos: 0.49317026,4.358873 + parent: 3 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 1574 + components: + - pos: 1.5,7.5 + parent: 3 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 1573 + components: + - pos: -0.5,7.5 + parent: 3 + type: Transform +- proto: WallReinforced + entities: + - uid: 5 + components: + - pos: -16.5,0.5 + parent: 3 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 3 + type: Transform + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 3 + type: Transform + - uid: 17 + components: + - pos: -10.5,-4.5 + parent: 3 + type: Transform + - uid: 24 + components: + - pos: 16.5,0.5 + parent: 3 + type: Transform + - uid: 26 + components: + - pos: 16.5,-3.5 + parent: 3 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 3 + type: Transform + - uid: 51 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 3 + type: Transform + - uid: 54 + components: + - pos: 15.5,0.5 + parent: 3 + type: Transform + - uid: 55 + components: + - pos: 17.5,0.5 + parent: 3 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 3 + type: Transform + - uid: 60 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 3 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 3 + type: Transform + - uid: 71 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 3 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 3 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 3 + type: Transform + - uid: 78 + components: + - pos: 17.5,-3.5 + parent: 3 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 3 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 3 + type: Transform + - uid: 88 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 3 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 3 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 3 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 3 + type: Transform + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 3 + type: Transform + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 3 + type: Transform + - uid: 95 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 3 + type: Transform + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 3 + type: Transform + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 3 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 3 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 3 + type: Transform + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 3 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 3 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 3 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 3 + type: Transform + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 3 + type: Transform + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 3 + type: Transform + - uid: 107 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 3 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,22.5 + parent: 3 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 3 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 3 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 3 + type: Transform + - uid: 116 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 3 + type: Transform + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 3 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 3 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 3 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 3 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 3 + type: Transform + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 3 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 3 + type: Transform + - uid: 124 + components: + - pos: 5.5,10.5 + parent: 3 + type: Transform + - uid: 125 + components: + - pos: 5.5,9.5 + parent: 3 + type: Transform + - uid: 126 + components: + - pos: 7.5,10.5 + parent: 3 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,17.5 + parent: 3 + type: Transform + - uid: 128 + components: + - pos: 7.5,12.5 + parent: 3 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 3 + type: Transform + - uid: 130 + components: + - pos: 7.5,11.5 + parent: 3 + type: Transform + - uid: 132 + components: + - pos: 5.5,11.5 + parent: 3 + type: Transform + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 3 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 3 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 3 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 3 + type: Transform + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 3 + type: Transform + - uid: 138 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 3 + type: Transform + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 3 + type: Transform + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 3 + type: Transform + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 3 + type: Transform + - uid: 143 + components: + - pos: 11.5,5.5 + parent: 3 + type: Transform + - uid: 144 + components: + - pos: 11.5,4.5 + parent: 3 + type: Transform + - uid: 145 + components: + - pos: 11.5,2.5 + parent: 3 + type: Transform + - uid: 146 + components: + - pos: 11.5,3.5 + parent: 3 + type: Transform + - uid: 147 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 3 + type: Transform + - uid: 149 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 3 + type: Transform + - uid: 150 + components: + - pos: 13.5,5.5 + parent: 3 + type: Transform + - uid: 151 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 3 + type: Transform + - uid: 152 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 3 + type: Transform + - uid: 154 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 3 + type: Transform + - uid: 155 + components: + - pos: 13.5,4.5 + parent: 3 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 3 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 3 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 3 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 3 + type: Transform + - uid: 161 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 3 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 3 + type: Transform + - uid: 163 + components: + - pos: 15.5,-1.5 + parent: 3 + type: Transform + - uid: 164 + components: + - pos: 15.5,-3.5 + parent: 3 + type: Transform + - uid: 165 + components: + - pos: 15.5,-4.5 + parent: 3 + type: Transform + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 3 + type: Transform + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 3 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 3 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 3 + type: Transform + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 3 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 3 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 3 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 3 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 3 + type: Transform + - uid: 176 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 3 + type: Transform + - uid: 178 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 3 + type: Transform + - uid: 179 + components: + - pos: 11.5,-4.5 + parent: 3 + type: Transform + - uid: 180 + components: + - pos: 11.5,-3.5 + parent: 3 + type: Transform + - uid: 181 + components: + - pos: 2.5,-5.5 + parent: 3 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 3 + type: Transform + - uid: 183 + components: + - pos: 3.5,-4.5 + parent: 3 + type: Transform + - uid: 184 + components: + - pos: 2.5,-6.5 + parent: 3 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 3 + type: Transform + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 3 + type: Transform + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 3 + type: Transform + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 3 + type: Transform + - uid: 189 + components: + - pos: -2.5,-4.5 + parent: 3 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-9.5 + parent: 3 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 3 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-7.5 + parent: 3 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 3 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 3 + type: Transform + - uid: 196 + components: + - pos: -1.5,-5.5 + parent: 3 + type: Transform + - uid: 197 + components: + - pos: -1.5,-6.5 + parent: 3 + type: Transform + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 3 + type: Transform + - uid: 199 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 3 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 3 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 3 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 3 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 3 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 3 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 3 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 3 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 3 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 3 + type: Transform + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 3 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 3 + type: Transform + - uid: 213 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 3 + type: Transform + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 3 + type: Transform + - uid: 215 + components: + - pos: 10.5,-2.5 + parent: 3 + type: Transform + - uid: 219 + components: + - pos: 11.5,-2.5 + parent: 3 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 3 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 3 + type: Transform + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 3 + type: Transform + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 3 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 3 + type: Transform + - uid: 225 + components: + - pos: 8.5,8.5 + parent: 3 + type: Transform + - uid: 227 + components: + - pos: 8.5,9.5 + parent: 3 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 3 + type: Transform + - uid: 229 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 3 + type: Transform + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 3 + type: Transform + - uid: 231 + components: + - pos: -4.5,11.5 + parent: 3 + type: Transform + - uid: 232 + components: + - pos: -4.5,10.5 + parent: 3 + type: Transform + - uid: 233 + components: + - pos: -4.5,12.5 + parent: 3 + type: Transform + - uid: 235 + components: + - pos: -4.5,8.5 + parent: 3 + type: Transform + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 3 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 3 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 3 + type: Transform + - uid: 240 + components: + - pos: -6.5,12.5 + parent: 3 + type: Transform + - uid: 241 + components: + - pos: -6.5,11.5 + parent: 3 + type: Transform + - uid: 242 + components: + - pos: -6.5,10.5 + parent: 3 + type: Transform + - uid: 243 + components: + - pos: -7.5,8.5 + parent: 3 + type: Transform + - uid: 245 + components: + - pos: -7.5,9.5 + parent: 3 + type: Transform + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 3 + type: Transform + - uid: 247 + components: + - pos: -10.5,3.5 + parent: 3 + type: Transform + - uid: 248 + components: + - pos: -7.5,3.5 + parent: 3 + type: Transform + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 3 + type: Transform + - uid: 250 + components: + - pos: -7.5,4.5 + parent: 3 + type: Transform + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 3 + type: Transform + - uid: 252 + components: + - pos: -7.5,6.5 + parent: 3 + type: Transform + - uid: 253 + components: + - pos: -7.5,5.5 + parent: 3 + type: Transform + - uid: 254 + components: + - pos: -12.5,4.5 + parent: 3 + type: Transform + - uid: 255 + components: + - pos: -12.5,5.5 + parent: 3 + type: Transform + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 3 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 3 + type: Transform + - uid: 258 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 3 + type: Transform + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 3 + type: Transform + - uid: 260 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 3 + type: Transform + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,6.5 + parent: 3 + type: Transform + - uid: 262 + components: + - pos: -10.5,4.5 + parent: 3 + type: Transform + - uid: 263 + components: + - pos: -10.5,5.5 + parent: 3 + type: Transform + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 3 + type: Transform + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 3 + type: Transform + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 3 + type: Transform + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 3 + type: Transform + - uid: 270 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 3 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 3 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 3 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 3 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 3 + type: Transform + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 3 + type: Transform + - uid: 276 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-4.5 + parent: 3 + type: Transform + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 3 + type: Transform + - uid: 278 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 3 + type: Transform + - uid: 279 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 3 + type: Transform + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 3 + type: Transform + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 3 + type: Transform + - uid: 283 + components: + - pos: -10.5,2.5 + parent: 3 + type: Transform + - uid: 284 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 3 + type: Transform + - uid: 285 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 3 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 3 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 3 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 3 + type: Transform + - uid: 289 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 3 + type: Transform + - uid: 291 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 3 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 3 + type: Transform + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 3 + type: Transform + - uid: 294 + components: + - pos: -10.5,-2.5 + parent: 3 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 3 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 3 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 3 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 3 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 3 + type: Transform + - uid: 300 + components: + - pos: -10.5,-3.5 + parent: 3 + type: Transform + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 3 + type: Transform + - uid: 303 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 3 + type: Transform + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 3 + type: Transform + - uid: 306 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 3 + type: Transform + - uid: 307 + components: + - pos: -8.5,2.5 + parent: 3 + type: Transform + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 3 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 3 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 3 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 3 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 3 + type: Transform + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 3 + type: Transform + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 3 + type: Transform + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 3 + type: Transform + - uid: 317 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 3 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 3 + type: Transform + - uid: 319 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 3 + type: Transform + - uid: 320 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 3 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 3 + type: Transform + - uid: 362 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 3 + type: Transform + - uid: 364 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 3 + type: Transform + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 3 + type: Transform + - uid: 371 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 3 + type: Transform + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 3 + type: Transform + - uid: 380 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 3 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 3 + type: Transform + - uid: 414 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-3.5 + parent: 3 + type: Transform + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 3 + type: Transform + - uid: 424 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 3 + type: Transform + - uid: 426 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 3 + type: Transform + - uid: 430 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 3 + type: Transform + - uid: 432 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 3 + type: Transform + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,28.5 + parent: 3 + type: Transform + - uid: 435 + components: + - pos: -11.5,6.5 + parent: 3 + type: Transform + - uid: 436 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 3 + type: Transform + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 3 + type: Transform + - uid: 441 + components: + - pos: 12.5,6.5 + parent: 3 + type: Transform + - uid: 442 + components: + - pos: -4.5,9.5 + parent: 3 + type: Transform + - uid: 443 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 3 + type: Transform + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 3 + type: Transform + - uid: 474 + components: + - pos: 9.5,-4.5 + parent: 3 + type: Transform + - uid: 518 + components: + - rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 3 + type: Transform + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 3 + type: Transform + - uid: 550 + components: + - pos: 5.5,-3.5 + parent: 3 + type: Transform + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 3 + type: Transform + - uid: 565 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 3 + type: Transform + - uid: 567 + components: + - pos: -4.5,15.5 + parent: 3 + type: Transform + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 3 + type: Transform + - uid: 599 + components: + - pos: 5.5,12.5 + parent: 3 + type: Transform + - uid: 720 + components: + - pos: 17.5,-1.5 + parent: 3 + type: Transform + - uid: 726 + components: + - pos: 4.5,-3.5 + parent: 3 + type: Transform + - uid: 729 + components: + - pos: -15.5,0.5 + parent: 3 + type: Transform + - uid: 730 + components: + - pos: -14.5,0.5 + parent: 3 + type: Transform + - uid: 953 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 3 + type: Transform + - uid: 1307 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 3 + type: Transform +- proto: WallSolid + entities: + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 3 + type: Transform + - uid: 20 + components: + - pos: -12.5,9.5 + parent: 3 + type: Transform + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 3 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 3 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 3 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 3 + type: Transform + - uid: 85 + components: + - pos: -1.5,1.5 + parent: 3 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 3 + type: Transform + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 3 + type: Transform + - uid: 190 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 3 + type: Transform + - uid: 200 + components: + - pos: 8.5,2.5 + parent: 3 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 3 + type: Transform + - uid: 234 + components: + - pos: -5.5,13.5 + parent: 3 + type: Transform + - uid: 290 + components: + - pos: -3.5,1.5 + parent: 3 + type: Transform + - uid: 345 + components: + - pos: 4.5,-1.5 + parent: 3 + type: Transform + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 3 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 3 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 3 + type: Transform + - uid: 402 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 3 + type: Transform + - uid: 403 + components: + - pos: -3.5,-2.5 + parent: 3 + type: Transform + - uid: 404 + components: + - pos: 4.5,-2.5 + parent: 3 + type: Transform + - uid: 405 + components: + - pos: 3.5,0.5 + parent: 3 + type: Transform + - uid: 406 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 3 + type: Transform + - uid: 407 + components: + - pos: -2.5,0.5 + parent: 3 + type: Transform + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 3 + type: Transform + - uid: 409 + components: + - pos: -3.5,-1.5 + parent: 3 + type: Transform + - uid: 410 + components: + - pos: 1.5,1.5 + parent: 3 + type: Transform + - uid: 411 + components: + - pos: 2.5,1.5 + parent: 3 + type: Transform + - uid: 412 + components: + - pos: 3.5,1.5 + parent: 3 + type: Transform + - uid: 413 + components: + - pos: -3.5,-0.5 + parent: 3 + type: Transform + - uid: 417 + components: + - pos: -3.5,0.5 + parent: 3 + type: Transform + - uid: 425 + components: + - pos: -0.5,23.5 + parent: 3 + type: Transform + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 3 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 3 + type: Transform + - uid: 434 + components: + - pos: 1.5,23.5 + parent: 3 + type: Transform + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 3 + type: Transform + - uid: 456 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 3 + type: Transform + - uid: 462 + components: + - pos: -12.5,1.5 + parent: 3 + type: Transform + - uid: 463 + components: + - pos: 4.5,-0.5 + parent: 3 + type: Transform + - uid: 464 + components: + - pos: 4.5,0.5 + parent: 3 + type: Transform + - uid: 486 + components: + - pos: -6.5,7.5 + parent: 3 + type: Transform + - uid: 594 + components: + - pos: 13.5,1.5 + parent: 3 + type: Transform + - uid: 596 + components: + - pos: 7.5,7.5 + parent: 3 + type: Transform + - uid: 603 + components: + - pos: -2.5,7.5 + parent: 3 + type: Transform + - uid: 604 + components: + - pos: 3.5,7.5 + parent: 3 + type: Transform + - uid: 935 + components: + - pos: -0.5,8.5 + parent: 3 + type: Transform + - uid: 936 + components: + - pos: -1.5,8.5 + parent: 3 + type: Transform + - uid: 937 + components: + - pos: 2.5,8.5 + parent: 3 + type: Transform + - uid: 938 + components: + - pos: 1.5,8.5 + parent: 3 + type: Transform + - uid: 958 + components: + - pos: -3.5,5.5 + parent: 3 + type: Transform + - uid: 960 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 3 + type: Transform + - uid: 1065 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 3 + type: Transform + - uid: 1093 + components: + - pos: 4.5,2.5 + parent: 3 + type: Transform + - uid: 1094 + components: + - pos: -3.5,2.5 + parent: 3 + type: Transform + - uid: 1110 + components: + - pos: 4.5,3.5 + parent: 3 + type: Transform + - uid: 1111 + components: + - pos: 4.5,6.5 + parent: 3 + type: Transform + - uid: 1289 + components: + - pos: -3.5,3.5 + parent: 3 + type: Transform + - uid: 1290 + components: + - pos: 4.5,5.5 + parent: 3 + type: Transform + - uid: 1548 + components: + - pos: -3.5,6.5 + parent: 3 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 3 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 3 + type: Transform + - uid: 41 + components: + - pos: -1.5,29.5 + parent: 3 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 3 + type: Transform + - uid: 461 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 3 + type: Transform + - uid: 466 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 3 + type: Transform + - uid: 469 + components: + - pos: -13.5,3.5 + parent: 3 + type: Transform + - uid: 471 + components: + - pos: -3.5,8.5 + parent: 3 + type: Transform + - uid: 472 + components: + - pos: -6.5,17.5 + parent: 3 + type: Transform + - uid: 477 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 3 + type: Transform + - uid: 479 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 3 + type: Transform + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 3 + type: Transform + - uid: 484 + components: + - pos: -7.5,10.5 + parent: 3 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 3 + type: Transform + - uid: 537 + components: + - pos: -15.5,1.5 + parent: 3 + type: Transform + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 3 + type: Transform + - uid: 539 + components: + - pos: -14.5,2.5 + parent: 3 + type: Transform + - uid: 553 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 3 + type: Transform + - uid: 559 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 3 + type: Transform + - uid: 560 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 3 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 3 + type: Transform + - uid: 562 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 3 + type: Transform + - uid: 563 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 3 + type: Transform + - uid: 593 + components: + - pos: -12.5,10.5 + parent: 3 + type: Transform +- proto: WarpPointShip + entities: + - uid: 4 + components: + - pos: 0.5,0.5 + parent: 3 + type: Transform +- proto: WaterTankFull + entities: + - uid: 21 + components: + - pos: -12.5,0.5 + parent: 3 + type: Transform + - uid: 961 + components: + - anchored: True + pos: 2.5,7.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics + - uid: 1003 + components: + - anchored: True + pos: 2.5,14.5 + parent: 3 + type: Transform + - bodyType: Static + type: Physics + - uid: 1515 + components: + - pos: 13.5,0.5 + parent: 3 + type: Transform +- proto: Windoor + entities: + - uid: 1285 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 3 + type: Transform +- proto: Window + entities: + - uid: 1204 + components: + - pos: 6.5,13.5 + parent: 3 + type: Transform +... diff --git a/Resources/Maps/Shuttles/templar.yml b/Resources/Maps/Shuttles/templar.yml index 6a3f05407a5..ce241ca640a 100644 --- a/Resources/Maps/Shuttles/templar.yml +++ b/Resources/Maps/Shuttles/templar.yml @@ -3,12 +3,12 @@ meta: postmapinit: false tilemap: 0: Space - 26: FloorDark - 53: FloorHull - 61: FloorMetalDiamond - 88: FloorSteelDirty - 95: FloorTechMaint - 111: Lattice + 27: FloorDark + 54: FloorHull + 62: FloorMetalDiamond + 89: FloorSteelDirty + 96: FloorTechMaint + 112: Lattice entities: - proto: "" entities: @@ -22,19 +22,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: PQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAGgAAAAACNQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAANQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAACNgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAANgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAADNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAGgAAAAABNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAGwAAAAABNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANgAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -1070,31 +1070,7 @@ entities: pos: -2.5,-2.5 parent: 1 type: Transform -- proto: WallPlastitaniumDiagonal - entities: - - uid: 125 - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 126 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 127 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - - uid: 128 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- proto: WallPlastitaniumIndestructible +- proto: WallPlastitanium entities: - uid: 129 components: @@ -1203,6 +1179,30 @@ entities: pos: 2.5,-1.5 parent: 1 type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 125 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform - proto: WallWeaponCapacitorRecharger entities: - uid: 148 diff --git a/Resources/Maps/Admin/gallery.yml b/Resources/Maps/_NF/Admin/gallery.yml similarity index 100% rename from Resources/Maps/Admin/gallery.yml rename to Resources/Maps/_NF/Admin/gallery.yml diff --git a/Resources/Maps/Bluespace/asteroidbunker.yml b/Resources/Maps/_NF/Bluespace/asteroidbunker.yml similarity index 94% rename from Resources/Maps/Bluespace/asteroidbunker.yml rename to Resources/Maps/_NF/Bluespace/asteroidbunker.yml index 25e9bc34a35..3a33b7d53d0 100644 --- a/Resources/Maps/Bluespace/asteroidbunker.yml +++ b/Resources/Maps/_NF/Bluespace/asteroidbunker.yml @@ -7,33 +7,33 @@ tilemap: 12: FloorBar 15: FloorBlueCircuit 17: FloorBrokenWood - 23: FloorConcrete - 24: FloorConcreteMono - 26: FloorDark - 31: FloorDarkMono - 32: FloorDarkOffset - 41: FloorFreezer - 44: FloorGrass - 51: FloorGreenCircuit - 53: FloorHull - 61: FloorMetalDiamond - 64: FloorOldConcrete - 65: FloorOldConcreteMono - 67: FloorPlanetDirt - 71: FloorReinforced - 86: FloorSteelDiagonal - 88: FloorSteelDirty - 91: FloorSteelMono - 93: FloorSteelPavement - 94: FloorSteelPavementVertical - 95: FloorTechMaint - 96: FloorTechMaint2 - 99: FloorWhite - 104: FloorWhiteMono - 105: FloorWhiteOffset - 109: FloorWood - 110: FloorWoodTile - 112: Plating + 24: FloorConcrete + 25: FloorConcreteMono + 27: FloorDark + 32: FloorDarkMono + 33: FloorDarkOffset + 42: FloorFreezer + 45: FloorGrass + 52: FloorGreenCircuit + 54: FloorHull + 62: FloorMetalDiamond + 65: FloorOldConcrete + 66: FloorOldConcreteMono + 68: FloorPlanetDirt + 72: FloorReinforced + 87: FloorSteelDiagonal + 89: FloorSteelDirty + 92: FloorSteelMono + 94: FloorSteelPavement + 95: FloorSteelPavementVertical + 96: FloorTechMaint + 97: FloorTechMaint2 + 100: FloorWhite + 105: FloorWhiteMono + 106: FloorWhiteOffset + 110: FloorWood + 111: FloorWoodTile + 113: Plating entities: - proto: "" entities: @@ -46,51 +46,51 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAHwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGAAAAAAAFwAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGAAAAAAAFwAAAAAAbgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGAAAAAAAFwAAAAAAbgAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAMwAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAFwAAAAAAbgAAAAAAYAAAAAAADwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAFwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGAAAAAAAFwAAAAAAEQAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAaAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAcAAAAAAAcAAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAYwAAAAAAbQAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQAAAAAAAcAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcAAAAAAAYwAAAAAAbQAAAAAAQQAAAAAALAAAAAAAQQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAcAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcAAAAAAAYwAAAAAAbQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcAAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAEQAAAAAAEQAAAAAAbQAAAAAAcAAAAAAAQAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAaAAAAAAAYwAAAAAAYwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGQAAAAAAGAAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGQAAAAAAGAAAAAAAbwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGQAAAAAAGAAAAAAAbwAAAAAAYQAAAAAAYAAAAAAAYAAAAAAANAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGAAAAAAAbwAAAAAAYQAAAAAADwAAAAAANAAAAAAANAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAGAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGQAAAAAAGAAAAAAAEQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAagAAAAAAagAAAAAAagAAAAAAaQAAAAAAZAAAAAAAbgAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAQQAAAAAAcQAAAAAAagAAAAAAagAAAAAAagAAAAAAcQAAAAAAZAAAAAAAbgAAAAAAQgAAAAAALQAAAAAAQgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAcQAAAAAAagAAAAAAagAAAAAAagAAAAAAcQAAAAAAZAAAAAAAbgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAQQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAEQAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAQQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAaQAAAAAAZAAAAAAAZAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAQQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAVgAAAAAAVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAHwAAAAAAVgAAAAAAVgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbQAAAAAAcAAAAAAAVgAAAAAAVgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAVgAAAAAAVgAAAAAAHwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQQAAAAAALAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcAAAAAAAcAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAA + tiles: cQAAAAAAVwAAAAAAVwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAVwAAAAAAVwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAIAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAbgAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAIAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQgAAAAAALQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcQAAAAAAcQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAcQAAAAAAcQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: GgAAAAAAGgAAAAAAHwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAKQAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAKQAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAcAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAKQAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAcAAAAAAAcAAAAAAA + tiles: GwAAAAAAGwAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAKgAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAKgAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAcQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAKgAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcQAAAAAAcQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAHwAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAQAAAAAAAVgAAAAAAVgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAQAAAAAAAVgAAAAAAVgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAQQAAAAAAVwAAAAAAVwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAQQAAAAAAVwAAAAAAVwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAHwAAAAAAGgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAGwAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAQQAAAAAAQQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAHwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAQgAAAAAAQgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAQAAAAAAAQAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAQQAAAAAAQQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: FwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 0,1: ind: 0,1 - tiles: RwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: SAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 @@ -111,8 +111,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics @@ -678,7 +678,9 @@ entities: 2: 61166 -1,6: 0: 15167 - 2: 50368 + 3: 64 + 4: 1024 + 2: 49280 -1,7: 0: 4083 1: 61440 @@ -690,7 +692,9 @@ entities: 2: 65535 0,6: 0: 34959 - 2: 30576 + 2: 29488 + 3: 64 + 4: 1024 0,7: 2: 7 0: 4088 @@ -790,6 +794,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6133.6235 + - 0 + - 0 + - 6133.6235 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6624.313 + - 0 + - 0 + - 6624.313 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -1118,13 +1152,6 @@ entities: - pos: 15.5,2.5 parent: 1 type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 54 - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - proto: AtmosFixBlockerMarker entities: - uid: 55 @@ -5233,38 +5260,51 @@ entities: pos: -1.5,-15.5 parent: 1 type: Transform - - uid: 871 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - uid: 872 components: - rot: -1.5707963267948966 rad pos: 4.5,22.5 parent: 1 type: Transform + - links: + - 1419 + - 1418 + type: DeviceLinkSink - uid: 873 components: - rot: 1.5707963267948966 rad pos: -3.5,22.5 parent: 1 type: Transform + - links: + - 1419 + - 1418 + type: DeviceLinkSink - uid: 874 components: - pos: 0.5,24.5 parent: 1 type: Transform + - links: + - 1419 + - 1418 + type: DeviceLinkSink - uid: 875 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - links: + - 1418 + - 1419 + type: DeviceLinkSink + - uid: 2197 components: - pos: 0.5,14.5 parent: 1 type: Transform - - invokeCounter: 5 - links: - - 2203 - - 2201 - - 2202 + - links: + - 54 type: DeviceLinkSink - proto: BoozeDispenser entities: @@ -5277,7 +5317,7 @@ entities: entities: - uid: 877 components: - - pos: 2.5361733,27.532564 + - pos: 2.5714993,27.49378 parent: 1 type: Transform - proto: CableApcExtension @@ -6901,17 +6941,6 @@ entities: parent: 1 type: Transform - type: ItemCooldown -- proto: ClothingBackpackDuffelSyndicateCostumeCentcom - entities: - - uid: 1195 - components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingBackpackDuffelSyndicateMedicalBundleFilled entities: - uid: 1197 @@ -7115,10 +7144,10 @@ entities: immutable: False temperature: 5000 moles: - - 533.3585 + - 576.0272 - 0 - 0 - - 533.3585 + - 576.0272 - 0 - 0 - 0 @@ -7133,7 +7162,6 @@ entities: showEnts: False occludes: True ents: - - 1195 - 1196 paper_label: !type:ContainerSlot showEnts: False @@ -7150,10 +7178,10 @@ entities: immutable: False temperature: 5000 moles: - - 533.3585 + - 576.0272 - 0 - 0 - - 533.3585 + - 576.0272 - 0 - 0 - 0 @@ -7168,9 +7196,9 @@ entities: showEnts: False occludes: True ents: - - 1222 - - 1224 - 1223 + - 1224 + - 1222 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -7183,11 +7211,47 @@ entities: - pos: 2.5,25.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 5000 + moles: + - 533.3585 + - 0 + - 0 + - 533.3585 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 1226 components: - pos: -1.5,25.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 5000 + moles: + - 533.3585 + - 0 + - 0 + - 533.3585 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: DefibrillatorCabinetOpen entities: - uid: 1227 @@ -8394,16 +8458,6 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 1418 - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - uid: 1420 components: - rot: -1.5707963267948966 rad @@ -8416,6 +8470,16 @@ entities: pos: -3.5,22.5 parent: 1 type: Transform + - uid: 2201 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform - proto: hydroponicsSoil entities: - uid: 1422 @@ -8513,6 +8577,11 @@ entities: type: Transform - proto: LandMineExplosive entities: + - uid: 871 + components: + - pos: -3.5005646,-11.50536 + parent: 1 + type: Transform - uid: 1435 components: - anchored: True @@ -8525,6 +8594,16 @@ entities: pos: -0.5,-20.5 parent: 1 type: Transform + - uid: 2195 + components: + - pos: 4.493684,-13.585148 + parent: 1 + type: Transform + - uid: 2196 + components: + - pos: 0.47285008,-16.697603 + parent: 1 + type: Transform - proto: LargeBeaker entities: - uid: 1437 @@ -8790,13 +8869,6 @@ entities: Also, stop trying to mix shit into the solution to make it "safer", we're here to make the good stuff, not whatever diluted crap your trying to make in the name of "safety", you think anybody gives a shit about that way out here!? type: Paper -- proto: PenCentcom - entities: - - uid: 1455 - components: - - pos: 9.352587,9.2094965 - parent: 1 - type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - uid: 1456 @@ -9417,14 +9489,6 @@ entities: pos: -0.5,27.5 parent: 1 type: Transform -- proto: RandomAnomalySpawner - entities: - - uid: 1562 - components: - - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - proto: RandomArcade entities: - uid: 1563 @@ -13188,80 +13252,6 @@ entities: - pos: 12.5,2.5 parent: 1 type: Transform -- proto: ShuttersNormal - entities: - - uid: 2192 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - invokeCounter: 10 - links: - - 2201 - - 2202 - - 2203 - type: DeviceLinkSink - - uid: 2193 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - invokeCounter: 10 - links: - - 2201 - - 2202 - - 2203 - type: DeviceLinkSink - - uid: 2194 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - invokeCounter: 10 - links: - - 2201 - - 2202 - - 2203 - type: DeviceLinkSink - - uid: 2195 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - invokeCounter: 7 - links: - - 2201 - - 2202 - - 2203 - type: DeviceLinkSink - - uid: 2196 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - invokeCounter: 7 - links: - - 2201 - - 2202 - - 2203 - type: DeviceLinkSink - - uid: 2197 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - invokeCounter: 7 - links: - - 2201 - - 2202 - - 2203 - type: DeviceLinkSink - proto: ShuttersWindow entities: - uid: 2198 @@ -13281,76 +13271,46 @@ entities: type: Transform - proto: SignalButton entities: - - uid: 2201 + - uid: 54 components: - - pos: 1.5,18.5 + - pos: 1.5,14.5 parent: 1 type: Transform - - state: True - type: SignalSwitch - linkedPorts: - 875: - - Pressed: Close - 2192: - - Pressed: Open - 2193: - - Pressed: Open - 2194: - - Pressed: Open 2197: - - Pressed: Open - 2196: - - Pressed: Open - 2195: - - Pressed: Open + - Pressed: Toggle type: DeviceLinkSource - - type: ItemCooldown - - uid: 2202 + - uid: 1418 components: - - rot: 3.141592653589793 rad - pos: 1.5,18.5 + - pos: 1.5,18.5 parent: 1 type: Transform - linkedPorts: - 2197: - - Pressed: Close - 2192: - - Pressed: Close - 2193: - - Pressed: Close - 2196: - - Pressed: Close - 2195: - - Pressed: Close - 2194: - - Pressed: Close 875: - - Pressed: Open + - Pressed: Toggle + 873: + - Pressed: Toggle + 874: + - Pressed: Toggle + 872: + - Pressed: Toggle type: DeviceLinkSource - - uid: 2203 + - uid: 1419 components: - - pos: 1.5,14.5 + - rot: 3.141592653589793 rad + pos: 1.5,18.5 parent: 1 type: Transform - - state: True - type: SignalSwitch - linkedPorts: 875: - - Pressed: Open - 2194: - - Pressed: Close - 2193: - - Pressed: Close - 2192: - - Pressed: Close - 2197: - - Pressed: Close - 2196: - - Pressed: Close - 2195: - - Pressed: Close + - Pressed: Toggle + 872: + - Pressed: Toggle + 874: + - Pressed: Toggle + 873: + - Pressed: Toggle type: DeviceLinkSource - - type: ItemCooldown - proto: SignArmory entities: - uid: 2204 @@ -13597,6 +13557,36 @@ entities: type: Transform - proto: SpawnMobCarp entities: + - uid: 1455 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 1562 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 2192 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 2193 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 2194 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - uid: 2203 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform - uid: 2246 components: - pos: 11.5,9.5 @@ -13612,6 +13602,16 @@ entities: - pos: 0.5,-25.5 parent: 1 type: Transform + - uid: 2962 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 2963 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform - proto: SpawnMobCarpHolo entities: - uid: 2249 diff --git a/Resources/Maps/Bluespace/asteroidvault.yml b/Resources/Maps/_NF/Bluespace/asteroidvault.yml similarity index 98% rename from Resources/Maps/Bluespace/asteroidvault.yml rename to Resources/Maps/_NF/Bluespace/asteroidvault.yml index e9f227e8ff8..a1bf796ba86 100644 --- a/Resources/Maps/Bluespace/asteroidvault.yml +++ b/Resources/Maps/_NF/Bluespace/asteroidvault.yml @@ -5,11 +5,11 @@ tilemap: 0: Space 7: FloorAsteroidSand 17: FloorBrokenWood - 29: FloorDarkHerringbone - 78: FloorShuttleRed - 109: FloorWood - 111: Lattice - 112: Plating + 30: FloorDarkHerringbone + 79: FloorShuttleRed + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -23,19 +23,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: HgAAAAAAHgAAAAAAHgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: TgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAATgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAATgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: TwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHgAAAAAAHgAAAAAATwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHgAAAAAAHgAAAAAATwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHgAAAAAAHgAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHgAAAAAAHgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHgAAAAAAHgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: cQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -1,1: ind: -1,1 @@ -43,11 +43,11 @@ entities: version: 6 0,1: ind: 0,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAbgAAAAAAEQAAAAAAbgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -55,7 +55,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 1,0: ind: 1,0 @@ -67,11 +67,11 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAEQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 1,1: ind: 1,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 @@ -92,8 +92,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics @@ -470,7 +470,8 @@ entities: 2: 65535 4,5: 2: 151 - 1: 65376 + 1: 48992 + 3: 16384 4,6: 1: 1007 5,4: @@ -534,6 +535,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -10044,239 +10060,171 @@ entities: - pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1897 components: - pos: 4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1898 components: - pos: -2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1899 components: - pos: -3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1900 components: - pos: -3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1901 components: - pos: -3.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1902 components: - pos: -3.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1903 components: - pos: -3.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1904 components: - pos: -2.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1905 components: - pos: -1.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1906 components: - pos: -0.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1907 components: - pos: 0.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1908 components: - pos: 1.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1909 components: - pos: 2.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1910 components: - pos: 3.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1911 components: - pos: 4.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1912 components: - pos: 4.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1913 components: - pos: 4.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1914 components: - pos: 4.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1915 components: - pos: 4.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1916 components: - pos: 4.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1917 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1918 components: - pos: 4.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1919 components: - pos: 3.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1920 components: - pos: 2.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1921 components: - pos: 1.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1922 components: - pos: 0.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1923 components: - pos: -0.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1924 components: - pos: -1.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1925 components: - pos: -2.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1926 components: - pos: -3.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1927 components: - pos: -3.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1928 components: - pos: -3.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1929 components: - pos: -3.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: Catwalk entities: - uid: 1930 @@ -10659,9 +10607,13 @@ entities: entities: - uid: 1992 components: - - pos: -15.41641,1.814841 + - pos: -15.501488,1.6085856 parent: 1 type: Transform + - isOpen: True + type: Storage + - type: ItemCooldown + - type: ActiveUserInterface - proto: ClothingBeltChampion entities: - uid: 1993 @@ -10758,16 +10710,6 @@ entities: - pos: 1.5,-19.5 parent: 1 type: Transform -- proto: DrinkDrGibbCan - entities: - - uid: 2007 - components: - - flags: InContainer - type: MetaData - - parent: 2006 - type: Transform - - canCollide: False - type: Physics - proto: DrinkGoldenCup entities: - uid: 2016 @@ -11030,26 +10972,27 @@ entities: entities: - uid: 2006 components: - - pos: 5.750177,-19.210756 + - pos: 5.76085,-19.33521 parent: 1 type: Transform - - storageUsed: 29 + - storageUsed: 24 + isOpen: True type: Storage - containers: storagebase: !type:Container showEnts: False occludes: True ents: - - 2015 - 2014 - 2008 - 2009 - - 2007 - 2012 - 2013 - 2010 - 2011 + - 2015 type: ContainerContainer + - type: ActiveUserInterface - proto: HighSecCommandLocked entities: - uid: 2056 @@ -11127,6 +11070,24 @@ entities: pos: 18.5,23.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - bodyType: Static type: Physics - proto: MaterialDiamond @@ -11411,13 +11372,6 @@ entities: pos: -9.5,-16.5 parent: 1 type: Transform -- proto: RandomMagicBookSafe - entities: - - uid: 2020 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - proto: RandomPainting entities: - uid: 2108 diff --git a/Resources/Maps/Bluespace/cache.yml b/Resources/Maps/_NF/Bluespace/cache.yml similarity index 99% rename from Resources/Maps/Bluespace/cache.yml rename to Resources/Maps/_NF/Bluespace/cache.yml index a8bc7915575..67822c486dd 100644 --- a/Resources/Maps/Bluespace/cache.yml +++ b/Resources/Maps/_NF/Bluespace/cache.yml @@ -37,8 +37,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics diff --git a/Resources/Maps/Bluespace/cargoniaship.yml b/Resources/Maps/_NF/Bluespace/cargoniaship.yml similarity index 99% rename from Resources/Maps/Bluespace/cargoniaship.yml rename to Resources/Maps/_NF/Bluespace/cargoniaship.yml index cc319ac2474..4b3c7000209 100644 --- a/Resources/Maps/Bluespace/cargoniaship.yml +++ b/Resources/Maps/_NF/Bluespace/cargoniaship.yml @@ -49,8 +49,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics diff --git a/Resources/Maps/Bluespace/vault.yml b/Resources/Maps/_NF/Bluespace/vault.yml similarity index 99% rename from Resources/Maps/Bluespace/vault.yml rename to Resources/Maps/_NF/Bluespace/vault.yml index b65df3de399..de8b51ba6f0 100644 --- a/Resources/Maps/Bluespace/vault.yml +++ b/Resources/Maps/_NF/Bluespace/vault.yml @@ -55,8 +55,8 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 + - angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics diff --git a/Resources/Maps/Bluespace/vaultsmall.yml b/Resources/Maps/_NF/Bluespace/vaultsmall.yml similarity index 99% rename from Resources/Maps/Bluespace/vaultsmall.yml rename to Resources/Maps/_NF/Bluespace/vaultsmall.yml index 911d03de73a..83763b1b22d 100644 --- a/Resources/Maps/Bluespace/vaultsmall.yml +++ b/Resources/Maps/_NF/Bluespace/vaultsmall.yml @@ -34,8 +34,8 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAAAAAAF4AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAABwAAAMcAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABfAAAAXwAAAF8AAAAcAAACGgAAAA== type: MapGrid - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 + - angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics diff --git a/Resources/Maps/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml similarity index 86% rename from Resources/Maps/frontier.yml rename to Resources/Maps/_NF/Outpost/frontier.yml index e218e8ea5a7..7a6f1a763a8 100644 --- a/Resources/Maps/frontier.yml +++ b/Resources/Maps/_NF/Outpost/frontier.yml @@ -3,28 +3,28 @@ meta: postmapinit: false tilemap: 0: Space - 14: FloorBlue - 15: FloorBlueCircuit - 26: FloorDark - 30: FloorDarkMini - 31: FloorDarkMono - 41: FloorFreezer - 42: FloorGlass - 59: FloorLino - 61: FloorMetalDiamond - 83: FloorSteel - 88: FloorSteelDirty - 91: FloorSteelMono - 92: FloorSteelOffset - 93: FloorSteelPavement - 94: FloorSteelPavementVertical - 95: FloorTechMaint - 96: FloorTechMaint2 - 99: FloorWhite - 103: FloorWhiteMini - 109: FloorWood - 111: Lattice - 112: Plating + 15: FloorBlue + 16: FloorBlueCircuit + 28: FloorDark + 32: FloorDarkMini + 33: FloorDarkMono + 43: FloorFreezer + 44: FloorGlass + 61: FloorLino + 63: FloorMetalDiamond + 85: FloorSteel + 90: FloorSteelDirty + 93: FloorSteelMono + 94: FloorSteelOffset + 95: FloorSteelPavement + 96: FloorSteelPavementVertical + 97: FloorTechMaint + 98: FloorTechMaint2 + 101: FloorWhite + 105: FloorWhiteMini + 111: FloorWood + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -50,131 +50,131 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABXAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAABGgAAAAABKgAAAAADGgAAAAADcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAKgAAAAACGgAAAAABKgAAAAAAGgAAAAABKgAAAAAAGgAAAAAAGgAAAAADUwAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADKgAAAAABGgAAAAABKgAAAAAAGgAAAAACKgAAAAACGgAAAAABGgAAAAACXAAAAAAAXAAAAAAAGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAADUwAAAAABXAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAGgAAAAACKgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACKgAAAAADKgAAAAACGgAAAAACUwAAAAADXwAAAAAAGgAAAAADGgAAAAAAGgAAAAAAXwAAAAAAGgAAAAAAGgAAAAADGgAAAAACXwAAAAAAGgAAAAACGgAAAAAAKgAAAAAAGgAAAAAAGgAAAAADKgAAAAAB + tiles: YAAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAACYQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAABYQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAACYQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABYQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADYQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAXgAAAAAAHAAAAAAAHAAAAAADHAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAHAAAAAADHAAAAAAAHAAAAAADcgAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABHAAAAAADHAAAAAABLAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAHAAAAAABLAAAAAADHAAAAAABLAAAAAADHAAAAAABLAAAAAABHAAAAAACHAAAAAABVQAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACcgAAAAAAAAAAAAAAcgAAAAAAHAAAAAACLAAAAAADHAAAAAAALAAAAAABHAAAAAABLAAAAAABHAAAAAABHAAAAAABXgAAAAAAXgAAAAAAHAAAAAAALAAAAAAAHAAAAAADcgAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAADVQAAAAAAXgAAAAAAHAAAAAAAHAAAAAADHAAAAAACcgAAAAAAAAAAAAAAcgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABcgAAAAAAVQAAAAADHAAAAAACLAAAAAADHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABHAAAAAADHAAAAAACLAAAAAACLAAAAAACHAAAAAACVQAAAAADYQAAAAAAHAAAAAACHAAAAAAAHAAAAAABYQAAAAAAHAAAAAACHAAAAAAAHAAAAAACYQAAAAAAHAAAAAABHAAAAAAALAAAAAABHAAAAAACHAAAAAACLAAAAAAB version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAXwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABXwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAXAAAAAAAUwAAAAACXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADXAAAAAAAXAAAAAAAXAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABKgAAAAABGgAAAAABGgAAAAACUwAAAAAAUwAAAAACGgAAAAABKgAAAAABGgAAAAADGgAAAAABKgAAAAAAGgAAAAACKgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAUwAAAAACUwAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABKgAAAAACGgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACKgAAAAACGgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACGgAAAAACKgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAXAAAAAAAUwAAAAADXAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADKgAAAAADGgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAADXwAAAAAAGgAAAAACGgAAAAABGgAAAAABXwAAAAAAUwAAAAACUwAAAAAC + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYAAAAAABcgAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADcgAAAAAAYQAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACYQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACYQAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABYQAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAACHAAAAAADXgAAAAAAVQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAACHAAAAAACXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADLAAAAAAAHAAAAAAAHAAAAAACVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACLAAAAAABHAAAAAABXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAADHAAAAAABXgAAAAAAVQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAALAAAAAADHAAAAAAAVQAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXwAAAAABYQAAAAAAHAAAAAAAHAAAAAADHAAAAAADYQAAAAAAVQAAAAADVQAAAAAA version: 6 1,0: ind: 1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABXwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAZwAAAAACZwAAAAABZwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAABGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAZwAAAAACZwAAAAABZwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAADGgAAAAAAXwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAAAGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADGgAAAAACGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACYQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAAAYQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABYQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAAAVQAAAAACYQAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAADVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAaQAAAAACaQAAAAABaQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABHAAAAAABHAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAaQAAAAABaQAAAAAAaQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAACHAAAAAADHAAAAAADYQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAADHAAAAAACHAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAbwAAAAACbwAAAAAAbwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAAAHAAAAAACHAAAAAABcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAbwAAAAACbwAAAAABbwAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABHAAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAVQAAAAACHAAAAAACHAAAAAADcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: cAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABXwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACXwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAADKgAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAA + tiles: cgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACYQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADYQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACYQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAACYQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADcgAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAABcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAACYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAACHAAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAACHAAAAAABHAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: cAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cgAAAAAAVQAAAAADVQAAAAABVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAACVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAADcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAABXgAAAAADXgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAUwAAAAADUwAAAAACUwAAAAADXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAADXwAAAAAAXQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYAAAAAABYAAAAAAAYAAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVQAAAAADVQAAAAABVQAAAAABYQAAAAAAXwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVQAAAAABVQAAAAAAVQAAAAABYQAAAAAAXwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAVQAAAAABVQAAAAACVQAAAAADYQAAAAAAXwAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAACVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAACVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAABVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAACVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAACcgAAAAAAcQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAADXwAAAAAAUwAAAAACUwAAAAACUwAAAAADXwAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAACXwAAAAAAUwAAAAADUwAAAAADUwAAAAADXwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAABXwAAAAAAUwAAAAABUwAAAAABUwAAAAACXwAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAYAAAAAADYAAAAAAAYAAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAADYQAAAAAAVQAAAAABVQAAAAADVQAAAAAAYQAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAABYQAAAAAAVQAAAAAAVQAAAAADVQAAAAACYQAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAADYQAAAAAAVQAAAAACVQAAAAABVQAAAAABYQAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAACVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAACcgAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABYwAAAAACXwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACYwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADYwAAAAADXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADYwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWwAAAAADUwAAAAACYwAAAAACXwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAACYwAAAAADXwAAAAAAHgAAAAACHgAAAAADHgAAAAABcAAAAAAAXwAAAAAAUwAAAAADUwAAAAABXwAAAAAAcAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAHgAAAAAAHgAAAAADHgAAAAADcAAAAAAAXwAAAAAAUwAAAAABUwAAAAAAXwAAAAAAcAAAAAAAHwAAAAABHwAAAAADHwAAAAADUwAAAAACUwAAAAACGgAAAAADcAAAAAAAHgAAAAADHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAABHwAAAAADUwAAAAABUwAAAAADGgAAAAAAcAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACGgAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAABcgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAACZQAAAAABYQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABZQAAAAAAYQAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAADZQAAAAACYQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADZQAAAAAAcgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABcgAAAAAAVQAAAAAAVQAAAAACZQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAVQAAAAADVQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAXQAAAAABVQAAAAAAZQAAAAAAYQAAAAAAZQAAAAAAZQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAADVQAAAAABZQAAAAACYQAAAAAAIAAAAAABIAAAAAADIAAAAAADcgAAAAAAYQAAAAAAVQAAAAABVQAAAAACYQAAAAAAcgAAAAAAIQAAAAABIQAAAAACIQAAAAAAVQAAAAABVQAAAAACcgAAAAAAcgAAAAAAIAAAAAAAIAAAAAAAIAAAAAADcgAAAAAAYQAAAAAAVQAAAAADVQAAAAABYQAAAAAAcgAAAAAAIQAAAAACIQAAAAAAIQAAAAABVQAAAAAAVQAAAAACHAAAAAAAcgAAAAAAIAAAAAADIAAAAAADIAAAAAACcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAIQAAAAADIQAAAAACIQAAAAABVQAAAAACVQAAAAADHAAAAAAAcgAAAAAAIAAAAAABIAAAAAADIAAAAAABcgAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAABHAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAABHAAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAYQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAZQAAAAABcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXQAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAcAAAAAAAXQAAAAABXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAGgAAAAABYwAAAAACAAAAAAAAcAAAAAAAXQAAAAADXwAAAAAAUwAAAAADUwAAAAABUwAAAAADXwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAADGgAAAAAAGgAAAAABGgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAADGgAAAAABYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAGgAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAABGgAAAAABGgAAAAACGgAAAAABYwAAAAAAYwAAAAABYwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADGgAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABGgAAAAAAGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAA + tiles: AAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAXwAAAAADYQAAAAAAVQAAAAACVQAAAAADVQAAAAABYQAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAABZQAAAAACZQAAAAADZQAAAAABZQAAAAACAAAAAAAAcgAAAAAAXwAAAAAAYQAAAAAAVQAAAAACVQAAAAABVQAAAAADYQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAACZQAAAAAAHAAAAAABZQAAAAACAAAAAAAAcgAAAAAAXwAAAAAAYQAAAAAAVQAAAAADVQAAAAAAVQAAAAACYQAAAAAAZQAAAAAAZQAAAAABZQAAAAAAZQAAAAABZQAAAAACHAAAAAACHAAAAAABHAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAADZQAAAAACHAAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAABHAAAAAABHAAAAAACHAAAAAAAZQAAAAAAZQAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAACZQAAAAABHAAAAAABZQAAAAACZQAAAAADZQAAAAACZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAZQAAAAABZQAAAAADcgAAAAAAHAAAAAACHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAABZQAAAAADHAAAAAABHAAAAAACHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAAAHAAAAAADHAAAAAADHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAABZQAAAAACZQAAAAAAHAAAAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAZQAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAAD version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAADXgAAAAABXgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYAAAAAAAYAAAAAAAYAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAHwAAAAADHwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAHwAAAAABHwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABXwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAXwAAAAAAGgAAAAADGgAAAAADGgAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAHgAAAAABHgAAAAACHgAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAUwAAAAADUwAAAAABUwAAAAACXwAAAAAAHgAAAAACHgAAAAADHgAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAHgAAAAABHgAAAAACHgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAADwAAAAAADgAAAAAADwAAAAAAcAAAAAAAcAAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAIQAAAAADYQAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAACcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAIQAAAAACIQAAAAACcgAAAAAAVQAAAAADVQAAAAABVQAAAAADcgAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACcgAAAAAAIQAAAAAAIQAAAAADcgAAAAAAVQAAAAACVQAAAAAAVQAAAAADYQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAADcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABcgAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACcgAAAAAAHAAAAAADHAAAAAACHAAAAAADcgAAAAAAVQAAAAACVQAAAAACcgAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABYQAAAAAAHAAAAAAAHAAAAAADHAAAAAABcgAAAAAAVQAAAAABVQAAAAADcgAAAAAAIAAAAAACIAAAAAABIAAAAAADcgAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAADcgAAAAAAHAAAAAAAHAAAAAACHAAAAAACVQAAAAACVQAAAAADVQAAAAADYQAAAAAAIAAAAAAAIAAAAAAAIAAAAAADcgAAAAAAVQAAAAADVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAACVQAAAAACcgAAAAAAIAAAAAAAIAAAAAADIAAAAAACcgAAAAAAVQAAAAADVQAAAAADcgAAAAAAEAAAAAAADwAAAAAAEAAAAAAAcgAAAAAAcgAAAAAA version: 6 3,0: ind: 3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADXwAAAAAAUwAAAAAAUwAAAAACUwAAAAACXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADXwAAAAAAUwAAAAACUwAAAAABUwAAAAACXwAAAAAAXQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADXwAAAAAAUwAAAAADUwAAAAADUwAAAAACXwAAAAAAXQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAYQAAAAAAVQAAAAADVQAAAAACVQAAAAADYQAAAAAAXwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADYQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADYQAAAAAAXwAAAAACcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAYQAAAAAAVQAAAAACVQAAAAADVQAAAAACYQAAAAAAXwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAADcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYAAAAAABYAAAAAABYAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: UwAAAAADXwAAAAAAGgAAAAADGgAAAAADGgAAAAAAXwAAAAAAGgAAAAAAGgAAAAACGgAAAAACXwAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACUwAAAAABXwAAAAAAGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAXwAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAACWwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWwAAAAAAUwAAAAABUwAAAAACWwAAAAADUwAAAAADUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABXwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADUwAAAAADUwAAAAACUwAAAAACXwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADXwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACXwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAACYQAAAAAAHAAAAAABHAAAAAADHAAAAAACYQAAAAAAHAAAAAAAHAAAAAABHAAAAAACYQAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAVQAAAAADYQAAAAAAHAAAAAADLAAAAAAAHAAAAAACcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAVQAAAAABYQAAAAAAHAAAAAACHAAAAAAAHAAAAAABcgAAAAAAHAAAAAACHAAAAAADHAAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABHAAAAAACHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAVQAAAAACVQAAAAABXQAAAAADVQAAAAACVQAAAAADcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXQAAAAABVQAAAAACVQAAAAAAXQAAAAACVQAAAAABVQAAAAACcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAVQAAAAABVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAABcgAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAACYQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAVQAAAAADVQAAAAADVQAAAAADYQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAADYQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAABYQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAABYQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAABXwAAAAAAGgAAAAAAGgAAAAABGgAAAAABXwAAAAAAUwAAAAADUwAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAACcAAAAAAAGgAAAAACKgAAAAAAGgAAAAACXwAAAAAAUwAAAAADUwAAAAADbQAAAAADbQAAAAADbQAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABXwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXwAAAAACYQAAAAAAHAAAAAABHAAAAAACHAAAAAADYQAAAAAAVQAAAAABVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAADLAAAAAACHAAAAAADYQAAAAAAVQAAAAACVQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAHAAAAAABHAAAAAABHAAAAAAAYQAAAAAAVQAAAAAAVQAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAABHAAAAAAAcgAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAABHAAAAAACcgAAAAAAVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAABHAAAAAADHAAAAAACcgAAAAAAVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAABHAAAAAABcgAAAAAAVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAACHAAAAAAAcgAAAAAAVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYQAAAAAAVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAVQAAAAADVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAABVQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: GgAAAAADGgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACWwAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAWwAAAAACUwAAAAADWwAAAAADUwAAAAABWwAAAAABUwAAAAADWwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAcAAAAAAAXgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HAAAAAADHAAAAAABcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYgAAAAAAVQAAAAAAcgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAADXQAAAAAAVQAAAAACXQAAAAAAVQAAAAADXQAAAAAAVQAAAAADXQAAAAADVQAAAAAAXQAAAAADVQAAAAACXQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYAAAAAACcgAAAAAAYAAAAAACcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: UwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAACHwAAAAABHwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAAAHwAAAAADHwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAWwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACWwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABWwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABWwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAWwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAACVQAAAAACIQAAAAABIQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAACIQAAAAABIQAAAAABcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAADcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAABXQAAAAAAVQAAAAADVQAAAAADVQAAAAABcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACIQAAAAABIQAAAAAAIQAAAAADIQAAAAADXQAAAAABVQAAAAACVQAAAAACVQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABIQAAAAABIQAAAAABIQAAAAADIQAAAAADXQAAAAABVQAAAAAAVQAAAAADVQAAAAADcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAADIQAAAAACXQAAAAAAVQAAAAABVQAAAAAAVQAAAAABcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAAAIQAAAAAAXQAAAAACVQAAAAABVQAAAAABVQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAADcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAACWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAVQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAACVQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAAAVQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAABVQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAVQAAAAABVQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAAA version: 6 2,1: ind: 2,1 - tiles: UwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAADwAAAAAADgAAAAAADwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAHwAAAAABHwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADXwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACXwAAAAAAUwAAAAACUwAAAAACXwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACXwAAAAAAUwAAAAADUwAAAAABXwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAADVQAAAAABVQAAAAABcgAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAVQAAAAADVQAAAAACcgAAAAAAEAAAAAAADwAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAABcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAABYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADcgAAAAAAIQAAAAABIQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAADcgAAAAAAIQAAAAABIQAAAAABcgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAABcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACYQAAAAAAVQAAAAAAVQAAAAAAYQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAAAYQAAAAAAVQAAAAADVQAAAAABYQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABYQAAAAAAVQAAAAAAVQAAAAAAYQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: UwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADXwAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAXQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABXwAAAAAAUwAAAAAAUwAAAAACUwAAAAADXwAAAAAAXQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXgAAAAABXgAAAAAAXgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADcgAAAAAAcgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAYQAAAAAAVQAAAAAAVQAAAAADVQAAAAACYQAAAAAAXwAAAAACcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAABYQAAAAAAXwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAADYQAAAAAAVQAAAAAAVQAAAAABVQAAAAACYQAAAAAAXwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYAAAAAADYAAAAAAAYAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 0,3: ind: 0,3 - tiles: UwAAAAACWwAAAAAAWwAAAAACWwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABWwAAAAABWwAAAAADWwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAWwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAADUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABXQAAAAACXQAAAAADXQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACXQAAAAAAVQAAAAACVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAXQAAAAADVQAAAAACVQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAACVQAAAAACVQAAAAACYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAXQAAAAACVQAAAAADVQAAAAABYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: cAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAHgAAAAADXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAHgAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAIAAAAAACYQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAIAAAAAADcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADXwAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAADcAAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAABZQAAAAAAYQAAAAAAIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAACcgAAAAAAIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -201,299 +201,286 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 2595: 3,40 - 2596: 4,40 + 2532: 3,40 + 2533: 4,40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2597: 3,37 - 2598: 4,37 + 2534: 3,37 + 2535: 4,37 - node: color: '#334E6DC8' id: ArrowsGreyscale decals: - 2520: 0,9 - 2521: 0,9 - 2522: 0,9 - 2523: 0,9 - 2555: -2,9 - 2556: -2,9 - 2557: -2,9 - 2558: -2,9 - 2559: -2,9 + 2457: 0,9 + 2458: 0,9 + 2459: 0,9 + 2460: 0,9 + 2492: -2,9 + 2493: -2,9 + 2494: -2,9 + 2495: -2,9 + 2496: -2,9 - node: angle: 3.141592653589793 rad color: '#334E6DC8' id: ArrowsGreyscale decals: - 2514: -2,12 - 2515: -2,12 - 2516: -2,12 - 2517: 0,12 - 2518: 0,12 - 2519: 0,12 + 2451: -2,12 + 2452: -2,12 + 2453: -2,12 + 2454: 0,12 + 2455: 0,12 + 2456: 0,12 - node: color: '#52B4E9FF' id: ArrowsGreyscale decals: - 601: 15,21 - 602: 17,21 - 603: 19,21 - 604: 25,21 - 605: 27,21 + 582: 15,21 + 583: 17,21 + 584: 19,21 + 585: 25,21 + 586: 27,21 - node: color: '#52B4F3AD' id: ArrowsGreyscale decals: - 1966: 23,21 - 1967: 23,21 - 1968: 23,21 - 1969: 23,21 - 1970: 23,21 - 1971: 23,21 - 1972: 23,21 - 1973: 23,21 - 1974: 23,21 - 1975: 23,21 - 1978: 21,21 - 1979: 21,21 - 1980: 21,21 - 1981: 21,21 + 1914: 23,21 + 1915: 23,21 + 1916: 23,21 + 1917: 23,21 + 1918: 23,21 + 1919: 23,21 + 1920: 23,21 + 1921: 23,21 + 1922: 23,21 + 1923: 23,21 + 1926: 21,21 + 1927: 21,21 + 1928: 21,21 + 1929: 21,21 - node: color: '#DE3A3A96' id: Bot decals: - 428: 31,15 + 412: 31,15 - node: zIndex: 180 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 2623: -1,45 - 2624: -1,44 - 2625: -1,43 - 2626: 5,43 - 2627: 5,44 - 2628: 5,45 - 2629: 2,48 + 2560: -1,45 + 2561: -1,44 + 2562: -1,43 + 2563: 5,43 + 2564: 5,44 + 2565: 5,45 + 2566: 2,48 + - node: + color: '#52B4E996' + id: BotLeftGreyscale + decals: + 2937: 26,20 - node: color: '#52B4E9AE' id: BotLeftGreyscale decals: - 1914: 4,25 - 1915: 5,25 - 1916: 6,25 - 1917: 8,25 - 1964: 7,25 - 1965: 24,20 + 1862: 4,25 + 1863: 5,25 + 1864: 6,25 + 1865: 8,25 + 1912: 7,25 + 1913: 24,20 - node: color: '#52B4E9FF' id: BotLeftGreyscale decals: - 595: 16,20 - 596: 18,20 - 597: 20,20 - 598: 22,20 - 599: 26,20 - 600: 28,20 + 577: 16,20 + 578: 18,20 + 579: 20,20 + 580: 22,20 + 581: 28,20 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 507: 9,11 - 508: 9,10 - 509: 11,11 - 510: 11,10 - 511: 13,11 - 512: 13,10 - 513: 12,15 - 514: 15,15 - 515: 13,14 - 516: 14,14 - 517: 3,17 - 518: 3,14 - 519: 3,12 - 520: 3,10 - 834: -12,13 - 835: -11,12 - 836: -12,11 - 837: -15,11 - 1732: -17,11 - 1733: -11,14 - 2965: -5,10 - 2966: -5,12 - 2967: -5,14 - 2968: -5,17 - 2969: -11,14 - 2970: -12,13 - 2971: -11,12 - 2972: -12,11 - 2973: -10,11 - 2974: -10,13 - 2975: -15,11 - 2976: -17,11 + 491: 9,11 + 492: 9,10 + 493: 11,11 + 494: 11,10 + 495: 13,11 + 496: 13,10 + 497: 12,15 + 498: 15,15 + 499: 13,14 + 500: 14,14 + 501: 3,17 + 502: 3,14 + 503: 3,12 + 504: 3,10 + 2899: -5,10 + 2900: -5,12 + 2901: -5,14 + 2902: -5,17 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1757: -5,17 - 1758: -5,14 - 1759: -5,12 - 1760: -5,10 + 1705: -5,17 + 1706: -5,14 + 1707: -5,12 + 1708: -5,10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 302: 38,15 - 527: -4,28 - 548: 22,13 - 2503: 1,9 + 296: 38,15 + 511: -4,28 + 532: 22,13 + 2440: 1,9 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 301: 36,15 - 530: -6,28 - 547: 19,13 - 2552: -3,9 + 295: 36,15 + 514: -6,28 + 531: 19,13 + 2489: -3,9 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 300: 38,13 - 529: -4,26 - 545: 22,9 - 1762: 1,12 + 294: 38,13 + 513: -4,26 + 529: 22,9 + 1710: 1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 299: 36,13 - 528: -6,26 - 546: 19,9 - 1761: -3,12 + 293: 36,13 + 512: -6,26 + 530: 19,9 + 1709: -3,12 - node: color: '#FFFFFF81' id: BrickTileDarkInnerNe decals: - 2479: -3,12 - 2480: -3,12 - 2489: -1,12 - 2490: -1,12 + 2416: -3,12 + 2417: -3,12 + 2426: -1,12 + 2427: -1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 170: 4,14 - 262: 34,11 - 469: 11,12 - 2505: 0,9 + 260: 34,11 + 453: 11,12 + 2442: 0,9 - node: color: '#FFFFFF81' id: BrickTileDarkInnerNw decals: - 2483: -1,12 - 2484: -1,12 - 2491: 1,12 - 2492: 1,12 + 2420: -1,12 + 2421: -1,12 + 2428: 1,12 + 2429: 1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 263: 40,11 - 470: 16,12 - 2554: -2,9 + 261: 40,11 + 454: 16,12 + 2491: -2,9 - node: color: '#FFFFFF81' id: BrickTileDarkInnerSe decals: - 2540: -1,9 - 2541: -1,9 - 2542: -3,9 - 2543: -3,9 + 2477: -1,9 + 2478: -1,9 + 2479: -3,9 + 2480: -3,9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 169: 4,17 - 264: 34,17 - 1766: 0,12 + 1714: 0,12 - node: color: '#FFFFFF81' id: BrickTileDarkInnerSw decals: - 2510: 1,9 - 2511: 1,9 - 2546: -1,9 - 2547: -1,9 + 2447: 1,9 + 2448: 1,9 + 2483: -1,9 + 2484: -1,9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 265: 40,17 - 1765: -2,12 + 262: 40,17 + 1713: -2,12 - node: color: '#52B4E996' id: BrickTileDarkLineE decals: - 2981: -48,2 + 2907: -48,2 - node: color: '#FFFFFF81' id: BrickTileDarkLineE decals: - 2477: -3,13 - 2478: -3,13 - 2487: -1,13 - 2488: -1,13 - 2534: -3,8 - 2535: -3,8 - 2536: -1,8 - 2537: -1,8 + 2414: -3,13 + 2415: -3,13 + 2424: -1,13 + 2425: -1,13 + 2471: -3,8 + 2472: -3,8 + 2473: -1,8 + 2474: -1,8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: 167: 4,15 168: 4,16 - 257: 34,12 - 258: 34,13 - 259: 34,14 - 260: 34,15 - 261: 34,16 - 303: 38,14 - 332: 48,11 - 333: 48,12 - 334: 48,13 - 473: 11,13 - 474: 11,14 - 533: -4,27 - 542: 22,12 - 543: 22,11 - 544: 22,10 - 1763: 1,13 - 2504: 1,8 - 2527: -3,11 - 2528: -3,10 - 2979: -48,2 - 2980: -48,1 + 257: 34,14 + 258: 34,15 + 259: 34,16 + 297: 38,14 + 323: 48,11 + 324: 48,12 + 325: 48,13 + 457: 11,13 + 458: 11,14 + 517: -4,27 + 526: 22,12 + 527: 22,11 + 528: 22,10 + 1711: 1,13 + 2441: 1,8 + 2464: -3,11 + 2465: -3,10 + 2905: -48,2 + 2906: -48,1 - node: color: '#FFFFFF81' id: BrickTileDarkLineN decals: - 2481: -2,12 - 2482: -2,12 - 2495: 0,12 - 2496: 0,12 - 2506: 0,9 - 2507: 0,9 - 2548: -1,9 - 2549: -1,9 - 2550: -2,9 - 2551: -2,9 + 2418: -2,12 + 2419: -2,12 + 2432: 0,12 + 2433: 0,12 + 2443: 0,9 + 2444: 0,9 + 2485: -1,9 + 2486: -1,9 + 2487: -2,9 + 2488: -2,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -503,59 +490,56 @@ entities: 254: 37,11 255: 36,11 256: 35,11 - 306: 37,15 - 307: 46,18 - 308: 44,18 - 309: 45,18 - 310: 43,18 - 311: 42,18 - 312: 40,18 - 313: 39,18 - 314: 38,18 - 315: 32,18 - 316: 33,18 - 317: 34,18 - 363: 41,18 - 376: 42,8 - 377: 43,8 - 378: 42,9 - 379: 43,9 - 429: 6,16 - 430: 8,16 - 433: 10,16 - 434: 11,16 - 435: 12,16 - 436: 13,16 - 437: 14,16 - 438: 15,16 - 439: 16,16 - 440: 17,16 - 465: 12,12 - 466: 13,12 - 467: 14,12 - 468: 15,12 - 499: 7,16 - 531: -5,28 - 540: 20,13 - 541: 21,13 - 615: 36,22 - 616: 37,22 - 617: 36,21 - 618: 37,21 + 300: 37,15 + 301: 46,18 + 302: 44,18 + 303: 45,18 + 304: 43,18 + 305: 42,18 + 306: 40,18 + 307: 39,18 + 308: 38,18 + 347: 41,18 + 360: 42,8 + 361: 43,8 + 362: 42,9 + 363: 43,9 + 413: 6,16 + 414: 8,16 + 417: 10,16 + 418: 11,16 + 419: 12,16 + 420: 13,16 + 421: 14,16 + 422: 15,16 + 423: 16,16 + 424: 17,16 + 449: 12,12 + 450: 13,12 + 451: 14,12 + 452: 15,12 + 483: 7,16 + 515: -5,28 + 524: 20,13 + 525: 21,13 + 596: 36,22 + 597: 37,22 + 598: 36,21 + 599: 37,21 - node: color: '#FFFFFF81' id: BrickTileDarkLineS decals: - 2497: -2,12 - 2498: -2,12 - 2499: 0,12 - 2500: 0,12 - 2501: -1,12 - 2502: -1,12 - 2512: 0,9 - 2513: 0,9 - 2544: -2,9 - 2545: -2,9 + 2434: -2,12 + 2435: -2,12 + 2436: 0,12 + 2437: 0,12 + 2438: -1,12 + 2439: -1,12 + 2449: 0,9 + 2450: 0,9 + 2481: -2,9 + 2482: -2,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -565,55 +549,53 @@ entities: 244: 37,17 245: 38,17 246: 39,17 - 304: 37,13 - 318: 33,9 - 319: 34,9 - 320: 35,9 - 321: 36,9 - 322: 37,9 - 323: 38,9 - 324: 39,9 - 325: 40,9 - 326: 43,11 - 327: 42,11 - 328: 41,11 - 352: 31,13 - 353: 32,13 - 372: 42,8 - 373: 43,8 - 374: 43,9 - 375: 42,9 - 431: 6,15 - 432: 8,15 - 441: 8,12 - 442: 9,12 - 443: 10,12 - 444: 11,12 - 445: 12,12 - 446: 13,12 - 497: 7,15 - 501: 7,18 - 502: 6,18 - 503: 8,18 - 532: -5,26 - 538: 20,9 - 539: 21,9 - 611: 36,21 - 612: 37,21 - 613: 36,22 - 614: 37,22 + 298: 37,13 + 309: 33,9 + 310: 34,9 + 311: 35,9 + 312: 36,9 + 313: 37,9 + 314: 38,9 + 315: 39,9 + 316: 40,9 + 317: 43,11 + 318: 42,11 + 319: 41,11 + 356: 42,8 + 357: 43,8 + 358: 43,9 + 359: 42,9 + 415: 6,15 + 416: 8,15 + 425: 8,12 + 426: 9,12 + 427: 10,12 + 428: 11,12 + 429: 12,12 + 430: 13,12 + 481: 7,15 + 485: 7,18 + 486: 6,18 + 487: 8,18 + 516: -5,26 + 522: 20,9 + 523: 21,9 + 592: 36,21 + 593: 37,21 + 594: 36,22 + 595: 37,22 - node: color: '#FFFFFF81' id: BrickTileDarkLineW decals: - 2485: -1,13 - 2486: -1,13 - 2493: 1,13 - 2494: 1,13 - 2508: 1,8 - 2509: 1,8 - 2538: -1,8 - 2539: -1,8 + 2422: -1,13 + 2423: -1,13 + 2430: 1,13 + 2431: 1,13 + 2445: 1,8 + 2446: 1,8 + 2475: -1,8 + 2476: -1,8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -623,439 +605,452 @@ entities: 249: 40,14 250: 40,13 251: 40,12 - 305: 36,14 - 329: 45,11 - 330: 45,12 - 331: 45,13 - 447: 8,11 - 448: 8,10 - 449: 10,11 - 450: 10,10 - 451: 12,11 - 452: 12,10 - 471: 16,13 - 472: 16,14 - 534: -6,27 - 535: 19,10 - 536: 19,11 - 537: 19,12 - 1764: -3,13 - 2525: 1,11 - 2526: 1,10 - 2553: -3,8 + 299: 36,14 + 320: 45,11 + 321: 45,12 + 322: 45,13 + 431: 8,11 + 432: 8,10 + 433: 10,11 + 434: 10,10 + 435: 12,11 + 436: 12,10 + 455: 16,13 + 456: 16,14 + 518: -6,27 + 519: 19,10 + 520: 19,11 + 521: 19,12 + 1712: -3,13 + 2462: 1,11 + 2463: 1,10 + 2490: -3,8 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 851: -48,8 + 825: -48,8 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 606: 15,21 - 607: 17,21 - 608: 19,21 - 609: 25,21 - 610: 27,21 - 1976: 23,21 - 1977: 21,21 + 587: 15,21 + 588: 17,21 + 589: 19,21 + 590: 25,21 + 591: 27,21 + 1924: 23,21 + 1925: 21,21 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2982: -48,2 - 2983: -48,1 + 2908: -48,2 + 2909: -48,1 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 846: -48,3 - 847: -48,4 - 848: -48,5 - 849: -48,6 - 850: -48,7 + 820: -48,3 + 821: -48,4 + 822: -48,5 + 823: -48,6 + 824: -48,7 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2532: 0,11 - 2533: 0,10 + 2469: 0,11 + 2470: 0,10 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 843: -48,15 - 844: -51,15 - 852: -49,8 - 853: -50,8 - 854: -51,8 - 855: -52,8 - 856: -53,8 - 857: -54,8 - 858: -55,8 - 878: -49,15 - 879: -50,15 + 817: -48,15 + 818: -51,15 + 826: -49,8 + 827: -50,8 + 828: -51,8 + 829: -52,8 + 830: -53,8 + 831: -54,8 + 832: -55,8 + 852: -49,15 + 853: -50,15 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 838: -53,18 - 839: -53,16 - 840: -53,14 - 841: -53,12 - 842: -53,11 - 874: -53,10 - 875: -53,13 - 876: -53,15 - 877: -53,17 + 812: -53,18 + 813: -53,16 + 814: -53,14 + 815: -53,12 + 816: -53,11 + 848: -53,10 + 849: -53,13 + 850: -53,15 + 851: -53,17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: 165: -3,42 - 2524: -2,10 - 2531: -2,11 + 2461: -2,10 + 2468: -2,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 199: -48,18 - 985: -44,11 + 958: -44,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 197: -50,18 - 983: -46,11 + 956: -46,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 196: -48,17 - 978: -44,8 + 951: -44,8 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2587: -3,36 + 2524: -3,36 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 198: -50,17 - 980: -46,8 + 953: -46,8 - node: color: '#52DFC4DB' id: BrickTileWhiteInnerNe decals: - 1044: -33,12 - 1046: -32,12 + 1017: -33,12 + 1019: -32,12 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: 174: 4,14 - 484: 11,12 + 468: 11,12 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 289: 34,11 + 283: 34,11 - node: color: '#52DFC4DB' id: BrickTileWhiteInnerNw decals: - 1045: -32,12 - 1047: -31,12 + 1018: -32,12 + 1020: -31,12 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 483: 16,12 + 467: 16,12 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 287: 40,11 + 282: 40,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe decals: 173: 4,17 - node: - color: '#DE3A3A96' + color: '#B02E26E5' id: BrickTileWhiteInnerSe decals: - 288: 34,17 + 2933: 34,17 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1022: -32,11 + 995: -32,11 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 286: 40,17 + 281: 40,17 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: 171: 4,15 172: 4,16 - 475: 11,14 - 476: 11,13 + 459: 11,14 + 460: 11,13 - node: zIndex: 180 color: '#A4610696' id: BrickTileWhiteLineE decals: - 2600: 8,52 - 2601: 8,51 - 2602: 8,50 - 2603: 8,49 - 2604: 8,48 - 2605: 8,47 - 2606: 8,46 - 2607: 8,45 - 2608: 8,44 - 2609: 8,43 - 2610: 8,42 - 2611: 8,41 - 2612: 8,56 - 2613: 8,57 + 2537: 8,52 + 2538: 8,51 + 2539: 8,50 + 2540: 8,49 + 2541: 8,48 + 2542: 8,47 + 2543: 8,46 + 2544: 8,45 + 2545: 8,44 + 2546: 8,43 + 2547: 8,42 + 2548: 8,41 + 2549: 8,56 + 2550: 8,57 + - node: + color: '#B02E26E5' + id: BrickTileWhiteLineE + decals: + 2940: 34,13 + 2941: 34,12 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 271: 34,12 - 272: 34,13 - 273: 34,14 - 274: 34,15 - 275: 34,16 - 335: 48,11 - 336: 48,12 - 337: 48,13 + 268: 34,14 + 269: 34,15 + 270: 34,16 + 326: 48,11 + 327: 48,12 + 328: 48,13 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1017: -32,6 - 1018: -32,7 - 1019: -32,8 - 1020: -32,9 - 1021: -32,10 + 990: -32,6 + 991: -32,7 + 992: -32,8 + 993: -32,9 + 994: -32,10 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 986: -44,10 - 987: -44,9 + 959: -44,10 + 960: -44,9 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 479: 12,12 - 480: 13,12 - 481: 14,12 - 482: 15,12 - 485: 10,16 - 486: 8,16 - 487: 6,16 - 488: 11,16 - 489: 12,16 - 490: 13,16 - 491: 14,16 - 492: 15,16 - 493: 16,16 - 494: 17,16 - 500: 7,16 + 463: 12,12 + 464: 13,12 + 465: 14,12 + 466: 15,12 + 469: 10,16 + 470: 8,16 + 471: 6,16 + 472: 11,16 + 473: 12,16 + 474: 13,16 + 475: 14,16 + 476: 15,16 + 477: 16,16 + 478: 17,16 + 484: 7,16 + - node: + color: '#B02E26E5' + id: BrickTileWhiteLineN + decals: + 2929: 32,18 + 2930: 33,18 + 2931: 34,18 + 2932: 31,18 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 266: 35,11 - 267: 36,11 - 268: 37,11 - 269: 38,11 - 270: 39,11 - 356: 32,18 - 357: 33,18 - 358: 34,18 - 359: 38,18 - 360: 39,18 - 361: 40,18 - 362: 42,18 - 364: 41,18 - 365: 43,18 - 366: 44,18 - 367: 45,18 - 368: 46,18 - 380: 42,9 - 381: 43,9 - 382: 42,8 - 383: 43,8 - 619: 36,22 - 620: 37,22 - 621: 36,21 - 622: 37,21 + 263: 35,11 + 264: 36,11 + 265: 37,11 + 266: 38,11 + 267: 39,11 + 343: 38,18 + 344: 39,18 + 345: 40,18 + 346: 42,18 + 348: 41,18 + 349: 43,18 + 350: 44,18 + 351: 45,18 + 352: 46,18 + 364: 42,9 + 365: 43,9 + 366: 42,8 + 367: 43,8 + 600: 36,22 + 601: 37,22 + 602: 36,21 + 603: 37,21 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1028: -42,12 - 1029: -41,12 - 1030: -40,12 - 1031: -39,12 - 1032: -38,12 - 1033: -37,12 - 1034: -36,12 - 1035: -35,12 - 1036: -34,12 - 1037: -32,12 - 1038: -31,12 - 1039: -30,12 - 1040: -29,12 - 1041: -28,12 - 1042: -27,12 - 1043: -33,12 + 1001: -42,12 + 1002: -41,12 + 1003: -40,12 + 1004: -39,12 + 1005: -38,12 + 1006: -37,12 + 1007: -36,12 + 1008: -35,12 + 1009: -34,12 + 1010: -32,12 + 1011: -31,12 + 1012: -30,12 + 1013: -29,12 + 1014: -28,12 + 1015: -27,12 + 1016: -33,12 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: 201: -49,18 - 984: -45,11 + 957: -45,11 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 463: 12,12 - 464: 13,12 + 447: 12,12 + 448: 13,12 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 495: 8,15 - 496: 6,15 - 498: 7,15 - 504: 6,18 - 505: 7,18 - 506: 8,18 + 479: 8,15 + 480: 6,15 + 482: 7,15 + 488: 6,18 + 489: 7,18 + 490: 8,18 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2588: -2,36 - 2589: -1,36 - 2590: 0,36 - 2591: 1,36 - 2592: 2,36 - 2593: 3,36 - 2594: 4,36 + 2525: -2,36 + 2526: -1,36 + 2527: 0,36 + 2528: 1,36 + 2529: 2,36 + 2530: 3,36 + 2531: 4,36 + - node: + color: '#B02E26E5' + id: BrickTileWhiteLineS + decals: + 2938: 31,14 + 2939: 32,14 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 281: 35,17 - 282: 36,17 - 283: 37,17 - 284: 38,17 - 285: 39,17 - 341: 43,11 - 342: 42,11 - 343: 41,11 - 344: 40,9 - 345: 39,9 - 346: 38,9 - 347: 37,9 - 348: 35,9 - 349: 36,9 - 350: 34,9 - 351: 33,9 - 354: 31,13 - 355: 32,13 - 384: 42,8 - 385: 43,8 - 386: 42,9 - 387: 43,9 - 455: 8,12 - 456: 9,12 - 623: 36,21 - 624: 37,21 - 625: 37,22 - 626: 36,22 + 276: 35,17 + 277: 36,17 + 278: 37,17 + 279: 38,17 + 280: 39,17 + 332: 43,11 + 333: 42,11 + 334: 41,11 + 335: 40,9 + 336: 39,9 + 337: 38,9 + 338: 37,9 + 339: 35,9 + 340: 36,9 + 341: 34,9 + 342: 33,9 + 368: 42,8 + 369: 43,8 + 370: 42,9 + 371: 43,9 + 439: 8,12 + 440: 9,12 + 604: 36,21 + 605: 37,21 + 606: 37,22 + 607: 36,22 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 457: 10,12 - 458: 11,12 - 1023: -31,11 - 1024: -30,11 - 1025: -29,11 - 1026: -28,11 - 1027: -27,11 + 441: 10,12 + 442: 11,12 + 996: -31,11 + 997: -30,11 + 998: -29,11 + 999: -28,11 + 1000: -27,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: 200: -49,17 - 979: -45,8 + 952: -45,8 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 461: 12,11 - 462: 12,10 + 445: 12,11 + 446: 12,10 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 477: 16,14 - 478: 16,13 + 461: 16,14 + 462: 16,13 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: 166: -3,42 - 2582: -3,41 - 2583: -3,40 - 2584: -3,39 - 2585: -3,38 - 2586: -3,37 + 2519: -3,41 + 2520: -3,40 + 2521: -3,39 + 2522: -3,38 + 2523: -3,37 - node: zIndex: 180 color: '#A4610696' id: BrickTileWhiteLineW decals: - 2614: -3,47 - 2615: -3,46 + 2551: -3,47 + 2552: -3,46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 276: 40,12 - 277: 40,13 - 278: 40,14 - 279: 40,15 - 280: 40,16 - 338: 45,11 - 339: 45,12 - 340: 45,13 - 453: 8,10 - 454: 8,11 + 271: 40,12 + 272: 40,13 + 273: 40,14 + 274: 40,15 + 275: 40,16 + 329: 45,11 + 330: 45,12 + 331: 45,13 + 437: 8,10 + 438: 8,11 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 459: 10,11 - 460: 10,10 + 443: 10,11 + 444: 10,10 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 981: -46,9 - 982: -46,10 + 954: -46,9 + 955: -46,10 - node: color: '#9FED580F' id: CheckerNESW @@ -1079,2116 +1074,2082 @@ entities: color: '#FFA5007F' id: CheckerNESW decals: - 662: 58,24 + 643: 58,24 - node: color: '#FFA5007F' id: CheckerNWSE decals: - 661: 58,25 - 663: 56,24 + 642: 58,25 + 644: 56,24 - node: zIndex: 180 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 2630: 1,48 - 2631: 3,48 + 2567: 1,48 + 2568: 3,48 - node: cleanable: True color: '#A4610696' id: Dirt decals: - 665: 9,54 - 666: 10,55 - 667: 10,54 - 668: 11,55 - 669: 7,56 - 670: 7,50 - 671: 1,46 - 672: 4,45 - 673: 3,43 - 674: -4,43 - 675: 0,43 - 676: 1,42 - 677: 3,45 - 678: 6,49 - 679: 1,45 - 680: 1,43 - 681: -2,35 - 682: 1,46 - 683: -1,35 - 684: 1,31 - 685: 9,24 - 686: 9,23 - 687: 12,23 - 688: 12,25 - 689: 38,24 - 690: 55,25 - 691: 57,23 - 692: 58,25 - 693: 57,26 - 694: 56,26 - 695: 56,24 - 696: 58,25 - 697: 55,26 - 698: 55,25 - 699: 44,22 - 700: 35,24 - 701: 17,21 - 702: 2,27 - 703: 3,14 - 704: 4,17 - 705: -6,7 - 706: -3,4 - 707: -3,3 + 646: 9,54 + 647: 10,55 + 648: 10,54 + 649: 11,55 + 650: 7,56 + 651: 7,50 + 652: 1,46 + 653: 4,45 + 654: 3,43 + 655: -4,43 + 656: 0,43 + 657: 1,42 + 658: 3,45 + 659: 6,49 + 660: 1,45 + 661: 1,43 + 662: -2,35 + 663: 1,46 + 664: -1,35 + 665: 1,31 + 666: 9,24 + 667: 9,23 + 668: 12,23 + 669: 12,25 + 670: 38,24 + 671: 55,25 + 672: 57,23 + 673: 58,25 + 674: 57,26 + 675: 56,26 + 676: 56,24 + 677: 58,25 + 678: 55,26 + 679: 55,25 + 680: 44,22 + 681: 35,24 + 682: 17,21 + 683: 2,27 + 684: 3,14 + 685: 4,17 + 686: -6,7 + 687: -3,4 + 688: -3,3 + 689: 55,3 + 690: 57,2 + 691: 59,2 + 692: 59,3 + 693: 59,1 + 694: 59,3 + 695: 56,0 + 696: 57,0 + 697: 60,2 + 698: 60,1 + 699: 60,2 + 700: 60,3 + 701: 57,1 + 702: 57,0 + 703: 56,2 + 704: 56,4 + 705: 58,1 + 706: 56,-2 + 707: 57,1 708: 55,3 - 709: 57,2 - 710: 59,2 - 711: 59,3 - 712: 59,1 - 713: 59,3 - 714: 56,0 - 715: 57,0 - 716: 60,2 - 717: 60,1 - 718: 60,2 - 719: 60,3 - 720: 57,1 - 721: 57,0 - 722: 56,2 - 723: 56,4 - 724: 58,1 - 725: 56,-2 - 726: 57,1 - 727: 55,3 - 728: 45,8 - 729: 44,8 - 730: 42,11 - 731: 43,11 - 732: 42,10 - 733: 42,9 - 734: 43,7 - 735: 42,7 - 736: 43,8 - 737: 42,9 - 738: 43,11 - 739: 42,11 - 740: 40,12 - 741: 43,12 - 742: 49,9 - 743: 43,9 - 744: 46,9 - 745: 45,7 - 746: 43,7 - 747: 26,2 - 748: 0,7 - 749: -3,6 - 750: -5,7 - 751: 18,2 - 752: 1,2 - 753: -1,2 - 754: -22,0 - 755: -42,6 - 756: -52,9 - 757: -52,9 - 758: -52,9 - 759: -52,9 - 760: -52,9 - 761: -50,9 - 762: -53,9 - 763: -57,3 - 764: -61,2 - 765: -63,3 - 766: -61,1 - 767: -61,2 - 768: -61,1 - 769: -60,0 - 770: -59,0 - 771: -59,-1 - 772: -57,-1 - 773: -56,0 - 774: -57,1 - 775: -47,1 - 776: -47,3 - 777: -31,9 - 778: -32,13 - 779: -33,13 - 780: -3,5 - 781: 4,7 - 782: 1,3 - 783: 4,13 - 784: -7,16 - 785: -12,19 - 786: -12,11 - 787: -15,13 - 788: -3,19 - 789: -7,15 - 790: 4,8 - 791: 2,7 - 792: 2,7 - 793: 2,7 - 794: 1,6 - 795: 37,8 - 796: 28,-11 - 797: -2,0 - 798: 1,0 - 799: 0,0 - 800: -2,0 - 801: -13,5 - 802: -30,-11 - 803: -29,-28 - 804: -31,-26 - 805: -30,-28 - 806: -28,-27 - 807: -29,-26 - 808: -27,-26 - 809: -27,-27 - 810: -27,-29 - 811: -30,-29 - 812: -31,-30 - 813: -32,-28 - 814: -33,-27 - 815: -33,-28 - 816: -34,5 - 817: -43,6 - 818: -47,4 - 819: -48,9 - 820: -49,9 - 821: -50,18 - 822: -50,17 - 823: -49,17 - 824: -49,18 - 825: -48,17 - 826: -49,17 - 827: -50,18 - 828: -48,18 - 829: -49,17 - 830: -50,17 - 831: -50,18 - 832: -48,18 - 833: -48,18 - 2921: 5,3 - 2922: 6,3 - 2923: 9,3 - 2924: 8,2 - 2925: 10,3 - 2926: 9,2 - 2927: 8,3 - 2928: 7,3 - 2929: 6,3 - 2930: 7,4 - 2931: 8,4 - 2932: 11,3 - 2933: 5,3 - 2934: -13,3 - 2935: -13,3 - 2936: -12,3 - 2937: -11,3 - 2938: -11,3 - 2939: -11,4 - 2940: -10,2 - 2941: -9,2 - 2942: -9,3 - 2943: -10,3 - 2944: -8,3 - 2945: -7,3 - 2946: -8,3 + 709: 45,8 + 710: 44,8 + 711: 42,11 + 712: 43,11 + 713: 42,10 + 714: 42,9 + 715: 43,7 + 716: 42,7 + 717: 43,8 + 718: 42,9 + 719: 43,11 + 720: 42,11 + 721: 40,12 + 722: 43,12 + 723: 49,9 + 724: 43,9 + 725: 46,9 + 726: 45,7 + 727: 43,7 + 728: 26,2 + 729: 0,7 + 730: -3,6 + 731: -5,7 + 732: 18,2 + 733: 1,2 + 734: -1,2 + 735: -22,0 + 736: -42,6 + 737: -52,9 + 738: -52,9 + 739: -52,9 + 740: -52,9 + 741: -52,9 + 742: -50,9 + 743: -53,9 + 744: -57,3 + 745: -61,2 + 746: -63,3 + 747: -61,1 + 748: -61,2 + 749: -61,1 + 750: -60,0 + 751: -59,0 + 752: -59,-1 + 753: -57,-1 + 754: -56,0 + 755: -57,1 + 756: -47,1 + 757: -47,3 + 758: -31,9 + 759: -32,13 + 760: -33,13 + 761: -3,5 + 762: 4,7 + 763: 1,3 + 764: 4,13 + 765: -7,16 + 766: -3,19 + 767: -7,15 + 768: 4,8 + 769: 2,7 + 770: 2,7 + 771: 2,7 + 772: 1,6 + 773: 37,8 + 774: 28,-11 + 775: -2,0 + 776: 1,0 + 777: 0,0 + 778: -2,0 + 779: -13,5 + 780: -30,-11 + 781: -29,-28 + 782: -31,-26 + 783: -30,-28 + 784: -28,-27 + 785: -29,-26 + 786: -27,-26 + 787: -27,-27 + 788: -27,-29 + 789: -30,-29 + 790: -31,-30 + 791: -32,-28 + 792: -33,-27 + 793: -33,-28 + 794: -34,5 + 795: -43,6 + 796: -47,4 + 797: -48,9 + 798: -49,9 + 799: -50,18 + 800: -50,17 + 801: -49,17 + 802: -49,18 + 803: -48,17 + 804: -49,17 + 805: -50,18 + 806: -48,18 + 807: -49,17 + 808: -50,17 + 809: -50,18 + 810: -48,18 + 811: -48,18 + 2855: 5,3 + 2856: 6,3 + 2857: 9,3 + 2858: 8,2 + 2859: 10,3 + 2860: 9,2 + 2861: 8,3 + 2862: 7,3 + 2863: 6,3 + 2864: 7,4 + 2865: 8,4 + 2866: 11,3 + 2867: 5,3 + 2868: -13,3 + 2869: -13,3 + 2870: -12,3 + 2871: -11,3 + 2872: -11,3 + 2873: -11,4 + 2874: -10,2 + 2875: -9,2 + 2876: -9,3 + 2877: -10,3 + 2878: -8,3 + 2879: -7,3 + 2880: -8,3 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 869: -60,3 - 2530: -3,10 + 843: -60,3 + 2467: -3,10 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 880: -53,14 - 881: -51,13 - 882: -52,10 - 883: -50,11 - 884: -48,11 - 885: -49,14 - 942: -52,8 - 943: -52,7 - 944: -53,6 - 945: -53,5 - 946: -50,4 - 947: -51,3 - 948: -51,3 - 949: -49,3 - 950: -49,3 - 951: -52,5 - 988: -46,11 - 989: -45,8 - 1048: -41,11 - 1049: -37,12 - 1050: -34,11 - 1051: -33,9 - 1052: -32,7 - 1053: -31,12 - 1054: -28,11 - 1064: -31,11 - 1065: -32,10 - 1066: -46,1 - 1067: -41,3 - 1068: -39,4 - 1069: -36,2 - 1070: -40,4 - 1071: -42,4 - 1072: -44,2 - 1073: -44,4 - 1074: -39,4 - 1075: -37,4 - 1076: -44,5 - 1077: -45,4 - 1078: -45,5 - 1079: -43,5 - 1080: -36,4 - 1081: -36,3 - 1082: -38,5 - 1083: -36,5 - 1084: -33,2 - 1085: -31,2 - 1086: -31,4 - 1087: -34,4 - 1088: -33,4 - 1089: -35,2 - 1090: -36,1 - 1091: -39,1 - 1092: -41,3 - 1093: -41,1 - 1094: -31,2 - 1095: -31,1 - 1096: -30,1 - 1097: -30,2 - 1098: -30,4 - 1099: -30,5 - 1100: -29,5 - 1101: -29,2 - 1142: -58,2 - 1143: -60,1 - 1144: -60,-1 - 1145: -53,7 - 1207: -31,-3 - 1208: -28,-6 - 1209: -29,-8 - 1210: -30,-10 - 1211: -31,-10 - 1212: -31,-13 - 1213: -29,-18 - 1214: -30,-17 - 1215: -4,6 - 1216: -5,6 - 1217: -8,5 - 1218: -10,5 - 1219: -10,6 - 1220: -11,5 - 1221: -12,5 - 1222: -15,2 - 1223: -16,2 - 1224: -14,1 - 1225: -10,2 - 1226: -8,1 - 1227: -7,2 - 1228: -9,1 - 1229: -5,3 - 1230: -4,4 - 1231: -4,3 - 1232: -4,2 - 1233: -16,1 - 1234: -17,2 - 1235: -17,3 - 1236: -20,1 - 1237: -20,2 - 1238: -21,3 - 1239: -23,1 - 1240: -25,2 - 1241: -25,3 - 1242: -26,3 - 1243: -27,1 - 1244: -27,3 - 1295: -2,6 - 1296: -2,4 - 1297: -1,3 - 1298: -2,3 - 1299: -2,2 - 1300: 0,3 - 1394: 6,2 - 1395: 6,2 - 1396: 5,5 - 1397: 3,6 - 1398: 3,2 - 1399: 9,2 - 1400: 8,5 - 1401: 10,5 - 1402: 12,2 - 1403: 13,3 - 1404: 14,2 - 1405: 14,2 - 1406: 14,4 - 1407: 17,2 - 1408: 18,3 - 1409: 18,3 - 1410: 20,2 - 1411: 21,1 - 1412: 24,3 - 1413: 23,3 - 1414: 22,3 - 1415: 22,2 - 1416: 22,2 - 1417: 23,2 - 1553: 52,1 - 1554: 53,2 - 1555: 52,2 - 1556: 52,3 - 1557: 55,0 - 1558: 54,1 - 1559: 47,2 - 1560: 44,3 - 1561: 44,4 - 1562: 45,3 - 1563: 42,2 - 1564: 39,1 - 1565: 38,3 - 1566: 35,3 - 1567: 35,2 - 1568: 34,4 - 1569: 33,4 - 1570: 31,2 - 1571: 29,1 - 1572: 28,3 - 1573: 28,1 - 1574: 35,5 - 1575: 45,6 - 1576: 45,5 - 1577: 48,4 - 1578: 47,4 - 1579: 34,8 - 1580: 34,7 - 1581: 35,7 - 1582: 39,7 - 1606: 41,15 - 1607: 41,14 - 1608: 41,13 - 1609: 38,10 - 1610: 36,10 - 1612: 34,15 - 1613: 31,13 - 1614: 34,12 - 1615: 33,9 - 1620: 27,-1 - 1621: 29,-3 - 1622: 28,-4 - 1623: 28,-6 - 1624: 28,-8 - 1625: 27,-6 - 1626: 27,-5 - 1627: 29,-5 - 1628: 29,-7 - 1629: 29,-8 - 1630: 29,-9 - 1631: 29,-11 - 1632: 27,-12 - 1633: 27,-13 - 1634: 28,-13 - 1635: 29,-13 - 1636: 28,-16 - 1637: 27,-18 - 1638: 28,-19 - 1639: 27,-20 - 1640: 29,-22 - 1641: 29,-23 - 1642: 29,-24 - 1683: 10,4 - 1684: -2,29 - 1685: -1,27 - 1686: -1,25 - 1687: -1,24 - 1688: 0,22 - 1689: 1,22 - 1690: 1,24 - 1691: 0,22 - 1692: -2,21 - 1693: -2,20 - 1694: 1,20 - 1695: 1,21 - 1714: -2,28 - 1715: -1,26 - 1716: -1,25 - 1734: -19,11 - 1735: -17,10 - 1736: -14,12 - 1737: -13,11 - 1738: -14,10 - 1751: -15,10 - 1789: -2,15 - 1790: -2,16 - 1791: -2,17 - 1792: -2,17 - 1793: -2,17 - 1794: 0,18 - 1803: -2,18 - 1804: -2,18 - 1811: -3,18 - 1812: -3,18 - 1833: -4,15 - 1834: -4,14 - 1841: -4,12 - 1842: -6,11 - 1843: -6,11 - 1844: -6,11 - 1867: -5,8 - 1868: -5,8 - 1869: -5,8 - 1870: 2,10 - 1871: 2,9 - 1872: 3,8 - 1918: 3,28 - 1919: 4,26 - 1920: 8,28 - 1921: 6,28 - 1922: 9,26 - 1923: 10,26 - 1924: 10,24 - 1925: 10,23 - 1926: 11,24 - 1927: 11,25 - 1928: 11,28 - 1963: 11,26 - 1982: 12,26 - 1983: 13,26 - 1984: 13,24 - 1985: 13,22 - 1986: 16,23 - 1987: 14,21 - 1988: 13,20 - 1989: 14,20 - 1990: 15,23 - 1991: 18,25 - 1992: 15,26 - 1993: 14,26 - 1994: 16,25 - 1995: 17,22 - 1996: 18,25 - 1997: 19,25 - 1998: 17,25 - 1999: 18,22 - 2000: 19,23 - 2001: 22,22 - 2002: 18,23 - 2003: 19,25 - 2004: 17,24 - 2005: 19,23 - 2006: 23,25 - 2007: 21,26 - 2008: 20,25 - 2009: 23,21 - 2010: 21,22 - 2011: 25,22 - 2012: 25,24 - 2013: 25,23 - 2014: 25,25 - 2015: 24,25 - 2016: 28,24 - 2017: 30,23 - 2018: 26,24 - 2019: 27,25 - 2020: 27,24 - 2021: 27,23 - 2022: 29,22 - 2023: 30,22 - 2024: 30,21 - 2025: 29,20 - 2026: 29,20 - 2027: 30,19 - 2028: 32,23 - 2029: 32,23 - 2030: 33,25 - 2031: 33,25 - 2032: 31,26 - 2168: 16,21 - 2169: 24,21 - 2170: 24,21 - 2171: 33,20 - 2172: 33,20 - 2173: 31,20 - 2174: 34,22 - 2175: 30,19 - 2176: 29,19 - 2177: 29,19 - 2191: 36,26 - 2192: 37,24 - 2193: 37,24 - 2225: 48,24 - 2226: 47,24 - 2227: 47,23 - 2228: 48,23 - 2229: 49,22 - 2230: 49,22 - 2231: 49,23 - 2232: 52,24 - 2233: 51,25 - 2234: 50,26 - 2235: 49,25 - 2236: 51,25 - 2237: 52,26 - 2238: 52,26 - 2239: 50,26 - 2240: 53,26 - 2241: 53,26 - 2242: 54,26 - 2301: 40,22 - 2302: 52,22 - 2303: 51,22 - 2304: 52,22 - 2305: 53,23 - 2306: 53,24 - 2307: 54,24 - 2308: 54,23 - 2309: 43,18 - 2310: 39,18 - 2311: 37,17 - 2312: 36,17 - 2313: 34,17 - 2314: 34,18 - 2315: 35,18 - 2316: 33,15 - 2317: 33,16 - 2318: 32,16 - 2319: 32,15 - 2341: 39,17 - 2342: 41,18 - 2343: 41,18 - 2344: 41,17 - 2345: 41,16 - 2346: 42,18 - 2347: 40,15 - 2348: 31,10 - 2349: 31,8 - 2350: 30,8 - 2351: 30,8 - 2352: 30,8 - 2353: 31,7 - 2354: 31,7 - 2355: 31,9 - 2356: 30,10 - 2357: 30,11 - 2398: 14,15 - 2399: 12,16 - 2400: 11,16 - 2401: 10,15 - 2402: 12,15 - 2403: 14,15 - 2404: 15,16 - 2405: 16,16 - 2406: 16,15 - 2407: 16,14 - 2408: 16,13 - 2409: 17,14 - 2410: 16,13 - 2411: 16,11 - 2412: 15,10 - 2413: 15,10 - 2414: 15,12 - 2415: 15,12 - 2416: 15,11 - 2417: 16,10 - 2418: 17,11 - 2419: 17,11 - 2420: 16,12 - 2421: 13,12 - 2422: 13,12 - 2455: -3,33 - 2456: -2,33 - 2457: -2,32 - 2458: -2,32 - 2459: -1,31 - 2460: 0,31 - 2461: 0,31 - 2903: 7,2 - 2904: 6,4 - 2905: 4,3 - 2906: 5,4 - 2907: 11,3 - 2908: 10,2 - 2947: -8,4 - 2948: -7,4 - 2985: -50,3 - 2986: -50,3 - 2987: -53,6 - 2988: -52,6 + 854: -53,14 + 855: -51,13 + 856: -52,10 + 857: -50,11 + 858: -48,11 + 859: -49,14 + 916: -52,8 + 917: -52,7 + 918: -53,6 + 919: -53,5 + 920: -50,4 + 921: -51,3 + 922: -51,3 + 923: -49,3 + 924: -49,3 + 925: -52,5 + 961: -46,11 + 962: -45,8 + 1021: -41,11 + 1022: -37,12 + 1023: -34,11 + 1024: -33,9 + 1025: -32,7 + 1026: -31,12 + 1027: -28,11 + 1037: -31,11 + 1038: -32,10 + 1039: -46,1 + 1040: -41,3 + 1041: -39,4 + 1042: -36,2 + 1043: -40,4 + 1044: -42,4 + 1045: -44,2 + 1046: -44,4 + 1047: -39,4 + 1048: -37,4 + 1049: -44,5 + 1050: -45,4 + 1051: -45,5 + 1052: -43,5 + 1053: -36,4 + 1054: -36,3 + 1055: -38,5 + 1056: -36,5 + 1057: -33,2 + 1058: -31,2 + 1059: -31,4 + 1060: -34,4 + 1061: -33,4 + 1062: -35,2 + 1063: -36,1 + 1064: -39,1 + 1065: -41,3 + 1066: -41,1 + 1067: -31,2 + 1068: -31,1 + 1069: -30,1 + 1070: -30,2 + 1071: -30,4 + 1072: -30,5 + 1073: -29,5 + 1074: -29,2 + 1115: -58,2 + 1116: -60,1 + 1117: -60,-1 + 1118: -53,7 + 1180: -31,-3 + 1181: -28,-6 + 1182: -29,-8 + 1183: -30,-10 + 1184: -31,-10 + 1185: -31,-13 + 1186: -29,-18 + 1187: -30,-17 + 1188: -4,6 + 1189: -5,6 + 1190: -8,5 + 1191: -10,5 + 1192: -10,6 + 1193: -11,5 + 1194: -12,5 + 1195: -15,2 + 1196: -16,2 + 1197: -14,1 + 1198: -10,2 + 1199: -8,1 + 1200: -7,2 + 1201: -9,1 + 1202: -5,3 + 1203: -4,4 + 1204: -4,3 + 1205: -4,2 + 1206: -16,1 + 1207: -17,2 + 1208: -17,3 + 1209: -20,1 + 1210: -20,2 + 1211: -21,3 + 1212: -23,1 + 1213: -25,2 + 1214: -25,3 + 1215: -26,3 + 1216: -27,1 + 1217: -27,3 + 1268: -2,6 + 1269: -2,4 + 1270: -1,3 + 1271: -2,3 + 1272: -2,2 + 1273: 0,3 + 1367: 6,2 + 1368: 6,2 + 1369: 5,5 + 1370: 3,6 + 1371: 3,2 + 1372: 9,2 + 1373: 8,5 + 1374: 10,5 + 1375: 12,2 + 1376: 13,3 + 1377: 14,2 + 1378: 14,2 + 1379: 14,4 + 1380: 17,2 + 1381: 18,3 + 1382: 18,3 + 1383: 20,2 + 1384: 21,1 + 1385: 24,3 + 1386: 23,3 + 1387: 22,3 + 1388: 22,2 + 1389: 22,2 + 1390: 23,2 + 1526: 52,1 + 1527: 53,2 + 1528: 52,2 + 1529: 52,3 + 1530: 55,0 + 1531: 54,1 + 1532: 47,2 + 1533: 44,3 + 1534: 44,4 + 1535: 45,3 + 1536: 42,2 + 1537: 39,1 + 1538: 38,3 + 1539: 35,3 + 1540: 35,2 + 1541: 34,4 + 1542: 33,4 + 1543: 31,2 + 1544: 29,1 + 1545: 28,3 + 1546: 28,1 + 1547: 35,5 + 1548: 45,6 + 1549: 45,5 + 1550: 48,4 + 1551: 47,4 + 1552: 34,8 + 1553: 34,7 + 1554: 35,7 + 1555: 39,7 + 1576: 41,15 + 1577: 41,14 + 1578: 41,13 + 1579: 38,10 + 1580: 36,10 + 1582: 34,15 + 1583: 33,9 + 1588: 27,-1 + 1589: 29,-3 + 1590: 28,-4 + 1591: 28,-6 + 1592: 28,-8 + 1593: 27,-6 + 1594: 27,-5 + 1595: 29,-5 + 1596: 29,-7 + 1597: 29,-8 + 1598: 29,-9 + 1599: 29,-11 + 1600: 27,-12 + 1601: 27,-13 + 1602: 28,-13 + 1603: 29,-13 + 1604: 28,-16 + 1605: 27,-18 + 1606: 28,-19 + 1607: 27,-20 + 1608: 29,-22 + 1609: 29,-23 + 1610: 29,-24 + 1651: 10,4 + 1652: -2,29 + 1653: -1,27 + 1654: -1,25 + 1655: -1,24 + 1656: 0,22 + 1657: 1,22 + 1658: 1,24 + 1659: 0,22 + 1660: -2,21 + 1661: -2,20 + 1662: 1,20 + 1663: 1,21 + 1682: -2,28 + 1683: -1,26 + 1684: -1,25 + 1700: -19,11 + 1737: -2,15 + 1738: -2,16 + 1739: -2,17 + 1740: -2,17 + 1741: -2,17 + 1742: 0,18 + 1751: -2,18 + 1752: -2,18 + 1759: -3,18 + 1760: -3,18 + 1781: -4,15 + 1782: -4,14 + 1789: -4,12 + 1790: -6,11 + 1791: -6,11 + 1792: -6,11 + 1815: -5,8 + 1816: -5,8 + 1817: -5,8 + 1818: 2,10 + 1819: 2,9 + 1820: 3,8 + 1866: 3,28 + 1867: 4,26 + 1868: 8,28 + 1869: 6,28 + 1870: 9,26 + 1871: 10,26 + 1872: 10,24 + 1873: 10,23 + 1874: 11,24 + 1875: 11,25 + 1876: 11,28 + 1911: 11,26 + 1930: 12,26 + 1931: 13,26 + 1932: 13,24 + 1933: 13,22 + 1934: 16,23 + 1935: 14,21 + 1936: 13,20 + 1937: 14,20 + 1938: 15,23 + 1939: 18,25 + 1940: 15,26 + 1941: 14,26 + 1942: 16,25 + 1943: 17,22 + 1944: 18,25 + 1945: 19,25 + 1946: 17,25 + 1947: 18,22 + 1948: 19,23 + 1949: 22,22 + 1950: 18,23 + 1951: 19,25 + 1952: 17,24 + 1953: 19,23 + 1954: 23,25 + 1955: 21,26 + 1956: 20,25 + 1957: 23,21 + 1958: 21,22 + 1959: 25,22 + 1960: 25,24 + 1961: 25,23 + 1962: 25,25 + 1963: 24,25 + 1964: 28,24 + 1965: 30,23 + 1966: 26,24 + 1967: 27,25 + 1968: 27,24 + 1969: 27,23 + 1970: 29,22 + 1971: 30,22 + 1972: 30,21 + 1973: 29,20 + 1974: 29,20 + 1975: 30,19 + 1976: 32,23 + 1977: 32,23 + 1978: 33,25 + 1979: 33,25 + 1980: 31,26 + 2115: 16,21 + 2116: 24,21 + 2117: 24,21 + 2118: 33,20 + 2119: 33,20 + 2120: 31,20 + 2121: 34,22 + 2122: 30,19 + 2136: 36,26 + 2137: 37,24 + 2138: 37,24 + 2170: 48,24 + 2171: 47,24 + 2172: 47,23 + 2173: 48,23 + 2174: 49,22 + 2175: 49,22 + 2176: 49,23 + 2177: 52,24 + 2178: 51,25 + 2179: 50,26 + 2180: 49,25 + 2181: 51,25 + 2182: 52,26 + 2183: 52,26 + 2184: 50,26 + 2185: 53,26 + 2186: 53,26 + 2187: 54,26 + 2246: 40,22 + 2247: 52,22 + 2248: 51,22 + 2249: 52,22 + 2250: 53,23 + 2251: 53,24 + 2252: 54,24 + 2253: 54,23 + 2254: 43,18 + 2255: 39,18 + 2256: 37,17 + 2257: 36,17 + 2258: 35,18 + 2278: 39,17 + 2279: 41,18 + 2280: 41,18 + 2281: 41,17 + 2282: 41,16 + 2283: 42,18 + 2284: 40,15 + 2285: 31,10 + 2286: 31,8 + 2287: 30,8 + 2288: 30,8 + 2289: 30,8 + 2290: 31,7 + 2291: 31,7 + 2292: 31,9 + 2293: 30,10 + 2294: 30,11 + 2335: 14,15 + 2336: 12,16 + 2337: 11,16 + 2338: 10,15 + 2339: 12,15 + 2340: 14,15 + 2341: 15,16 + 2342: 16,16 + 2343: 16,15 + 2344: 16,14 + 2345: 16,13 + 2346: 17,14 + 2347: 16,13 + 2348: 16,11 + 2349: 15,10 + 2350: 15,10 + 2351: 15,12 + 2352: 15,12 + 2353: 15,11 + 2354: 16,10 + 2355: 17,11 + 2356: 17,11 + 2357: 16,12 + 2358: 13,12 + 2359: 13,12 + 2392: -3,33 + 2393: -2,33 + 2394: -2,32 + 2395: -2,32 + 2396: -1,31 + 2397: 0,31 + 2398: 0,31 + 2837: 7,2 + 2838: 6,4 + 2839: 4,3 + 2840: 5,4 + 2841: 11,3 + 2842: 10,2 + 2881: -8,4 + 2882: -7,4 + 2911: -50,3 + 2912: -50,3 + 2913: -53,6 + 2914: -52,6 + 2934: 31,18 + 2935: 32,16 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtHeavy decals: - 2713: 5,48 - 2714: 5,49 - 2715: 4,49 - 2716: 5,51 - 2717: 5,53 - 2718: 5,54 - 2719: 5,55 - 2720: 6,55 - 2721: 7,57 - 2722: 6,54 - 2723: 6,54 - 2724: 8,55 - 2725: 7,50 - 2726: 8,50 - 2727: 3,50 - 2728: 2,47 - 2729: -2,45 - 2730: 4,47 - 2731: 8,45 - 2732: 7,46 - 2733: 7,43 - 2734: 8,42 - 2735: 4,41 - 2736: 2,39 - 2737: 0,39 - 2738: -1,39 - 2739: -1,38 - 2787: 8,51 - 2801: 10,53 - 2802: 10,53 - 2803: 11,55 - 2804: 11,55 - 2805: -6,44 - 2806: -6,45 - 2807: -5,44 - 2808: -6,43 - 2809: -5,43 - 2810: -5,43 - 2811: 0,40 - 2812: 4,40 - 2813: -34,8 - 2814: -33,7 - 2815: -32,8 - 2816: -33,10 - 2817: -33,10 - 2818: -34,10 - 2819: -32,11 - 2820: -36,12 - 2821: -35,11 - 2822: -39,11 - 2823: -40,12 - 2850: -53,18 - 2851: -53,16 - 2852: -52,15 - 2853: -52,14 - 2854: -51,15 - 2874: -49,5 - 2875: -49,5 - 2876: -56,2 - 2877: -46,4 - 2878: -42,3 - 2879: -42,3 + 2650: 5,48 + 2651: 5,49 + 2652: 4,49 + 2653: 5,51 + 2654: 5,53 + 2655: 5,54 + 2656: 5,55 + 2657: 6,55 + 2658: 7,57 + 2659: 6,54 + 2660: 6,54 + 2661: 8,55 + 2662: 7,50 + 2663: 8,50 + 2664: 3,50 + 2665: 2,47 + 2666: -2,45 + 2667: 4,47 + 2668: 8,45 + 2669: 7,46 + 2670: 7,43 + 2671: 8,42 + 2672: 4,41 + 2673: 2,39 + 2674: 0,39 + 2675: -1,39 + 2676: -1,38 + 2724: 8,51 + 2738: 10,53 + 2739: 10,53 + 2740: 11,55 + 2741: 11,55 + 2742: -6,44 + 2743: -6,45 + 2744: -5,44 + 2745: -6,43 + 2746: -5,43 + 2747: -5,43 + 2748: 0,40 + 2749: 4,40 + 2750: -34,8 + 2751: -33,7 + 2752: -32,8 + 2753: -33,10 + 2754: -33,10 + 2755: -34,10 + 2756: -32,11 + 2757: -36,12 + 2758: -35,11 + 2759: -39,11 + 2760: -40,12 + 2787: -53,18 + 2788: -53,16 + 2789: -52,15 + 2790: -52,14 + 2791: -51,15 + 2808: -49,5 + 2809: -49,5 + 2810: -56,2 + 2811: -46,4 + 2812: -42,3 + 2813: -42,3 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 953: -46,7 - 2529: -3,11 + 926: -46,7 + 2466: -3,11 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 990: -46,9 - 991: -44,11 - 992: -44,11 - 993: -44,8 - 994: -46,8 - 995: -45,10 - 1055: -34,6 - 1102: -46,2 - 1103: -45,1 - 1104: -45,2 - 1105: -45,4 - 1106: -39,3 - 1107: -38,2 - 1108: -37,1 - 1109: -37,3 - 1110: -40,3 - 1111: -42,2 - 1112: -34,2 - 1113: -34,3 - 1114: -36,4 - 1115: -32,3 - 1116: -32,1 - 1117: -35,1 - 1192: -31,-3 - 1193: -31,-4 - 1194: -31,-7 - 1195: -28,-9 - 1196: -29,-9 - 1197: -30,-12 - 1198: -29,-15 - 1199: -30,-12 - 1200: -30,-15 - 1201: -30,-15 - 1202: -29,-17 - 1203: -29,-16 - 1204: -30,-23 - 1205: -28,-23 - 1206: -29,-22 - 1245: -27,4 - 1246: -25,2 - 1247: -24,1 - 1248: -20,3 - 1249: -18,3 - 1250: -19,2 - 1251: -16,4 - 1252: -12,4 - 1253: -12,4 - 1254: -7,5 - 1301: 0,6 - 1302: 0,2 - 1373: 16,2 - 1374: 19,1 - 1375: 19,1 - 1376: 20,2 - 1377: 19,3 - 1378: 19,3 - 1379: 24,3 - 1380: 24,4 - 1381: 24,2 - 1382: 25,1 - 1383: 12,3 - 1384: 11,2 - 1385: 14,1 - 1386: 14,1 - 1387: 14,1 - 1388: 5,1 - 1389: 4,4 - 1390: 4,4 - 1391: 4,4 - 1392: 3,3 - 1393: 5,2 - 1480: 46,3 - 1481: 46,5 - 1482: 47,6 - 1483: 47,7 - 1484: 46,8 - 1485: 45,8 - 1486: 46,6 - 1487: 45,2 - 1488: 43,2 - 1489: 42,5 - 1490: 41,4 - 1491: 39,3 - 1492: 39,4 - 1493: 38,5 - 1494: 36,3 - 1495: 34,3 - 1496: 32,4 - 1497: 32,3 - 1498: 32,2 - 1499: 34,2 - 1500: 33,3 - 1501: 33,2 - 1502: 29,2 - 1503: 29,4 - 1504: 28,5 - 1505: 28,3 - 1506: 27,2 - 1507: 27,3 - 1508: 28,2 - 1509: 30,1 - 1510: 32,1 - 1511: 33,1 - 1611: 41,14 - 1720: -1,23 - 1721: -1,23 - 1722: -1,21 - 1723: 0,21 - 1724: 0,25 - 1725: 0,27 - 1726: 0,27 - 1727: -2,28 - 1728: -1,28 - 1729: 1,26 - 1730: -2,22 - 1731: -1,22 - 1752: -16,10 - 1753: -18,11 - 1754: -13,10 - 1755: -11,13 - 1756: -12,17 - 1795: -1,18 - 1796: 0,17 - 1805: -1,18 - 1806: -1,17 - 1813: -3,16 - 1814: -3,16 - 1815: -3,16 - 1816: -4,17 - 1817: -4,17 - 1818: -4,18 - 1819: -4,18 - 1825: -6,18 - 1826: -5,17 - 1827: -4,16 - 1835: -6,14 - 1836: -6,13 - 1837: -6,15 - 1838: -5,16 - 1839: -4,11 - 1840: -4,11 - 1852: -4,9 - 1853: -6,10 - 1854: -6,10 - 1855: -3,11 - 1856: -6,13 - 1857: -6,13 - 1858: -6,18 - 1873: 4,9 - 1874: 3,12 - 1875: 3,13 - 1876: 3,13 - 1877: 2,12 - 1878: 2,12 - 1879: 3,11 - 1880: 3,10 - 1881: 3,14 - 1882: 3,17 - 1883: 3,17 - 1929: 3,28 - 1930: 3,27 - 1931: 3,26 - 1932: 3,25 - 1933: 7,26 - 1934: 7,27 - 1935: 6,27 - 1955: 4,25 - 1956: 6,25 - 1957: 8,25 - 1958: 8,25 - 2033: 14,25 - 2034: 13,25 - 2035: 14,23 - 2036: 14,23 - 2037: 13,23 - 2038: 15,24 - 2039: 15,24 - 2040: 16,24 - 2041: 17,23 - 2042: 16,22 - 2043: 15,22 - 2044: 18,24 - 2045: 19,25 - 2046: 19,24 - 2047: 20,24 - 2048: 20,24 - 2049: 20,23 - 2050: 20,23 - 2051: 19,26 - 2052: 19,26 - 2053: 18,26 - 2054: 17,26 - 2055: 16,26 - 2056: 21,24 - 2057: 21,24 - 2058: 21,22 - 2059: 23,22 - 2060: 21,23 - 2061: 21,23 - 2062: 20,22 - 2063: 22,23 - 2064: 23,24 - 2065: 22,25 - 2066: 21,24 - 2067: 22,24 - 2068: 23,24 - 2069: 24,24 - 2070: 26,25 - 2071: 26,25 - 2072: 24,24 - 2073: 24,23 - 2074: 27,22 - 2075: 27,22 - 2076: 26,22 - 2077: 26,23 - 2078: 28,23 - 2079: 28,23 - 2080: 28,24 - 2081: 29,24 - 2082: 29,24 - 2083: 31,24 - 2084: 31,25 - 2085: 29,25 - 2086: 30,24 - 2087: 29,22 - 2088: 31,23 - 2089: 31,23 - 2090: 31,22 - 2091: 32,22 - 2092: 30,23 - 2093: 29,23 - 2094: 29,21 - 2095: 28,22 - 2096: 30,20 - 2097: 31,21 - 2098: 31,21 - 2099: 32,22 - 2100: 33,24 - 2101: 33,24 - 2102: 32,24 - 2103: 32,25 - 2104: 32,26 - 2178: 34,23 - 2179: 34,23 - 2180: 34,25 - 2181: 34,26 - 2194: 41,25 - 2195: 40,26 - 2196: 40,26 - 2197: 39,25 - 2198: 40,24 - 2199: 39,23 - 2200: 40,22 - 2201: 41,23 - 2202: 44,24 - 2203: 44,25 - 2204: 43,25 - 2205: 42,25 - 2206: 43,25 - 2207: 44,26 - 2208: 44,26 - 2209: 46,25 - 2210: 47,26 - 2211: 49,26 - 2212: 48,26 - 2213: 49,25 - 2214: 49,26 - 2215: 50,25 - 2216: 50,24 - 2217: 50,22 - 2218: 50,22 - 2219: 50,23 - 2220: 49,24 - 2221: 48,24 - 2222: 46,23 - 2223: 46,23 - 2224: 46,24 - 2290: 50,26 - 2291: 51,23 - 2292: 51,24 - 2293: 45,22 - 2294: 45,22 - 2295: 45,23 - 2296: 44,23 - 2297: 42,23 - 2298: 43,22 - 2299: 42,22 - 2300: 41,22 - 2320: 33,14 - 2321: 32,14 - 2322: 32,13 - 2323: 32,13 - 2324: 34,11 - 2325: 34,10 - 2326: 33,10 - 2327: 35,10 - 2328: 38,10 - 2329: 37,11 - 2330: 38,11 - 2366: 30,9 - 2367: 30,9 - 2368: 14,11 - 2369: 14,11 - 2370: 14,11 - 2371: 14,10 - 2372: 13,10 - 2373: 13,11 - 2374: 11,11 - 2375: 10,11 - 2376: 9,11 - 2377: 9,11 - 2378: 9,10 - 2379: 9,13 - 2380: 9,13 - 2381: 9,13 - 2382: 9,13 - 2383: 11,14 - 2384: 11,15 - 2385: 12,16 - 2386: 11,16 - 2387: 10,15 - 2388: 11,15 - 2389: 15,16 - 2390: 13,14 - 2391: 15,15 - 2392: 16,16 - 2393: 17,16 - 2394: 17,15 - 2395: 17,13 - 2396: 17,13 - 2397: 17,12 - 2423: 10,12 - 2424: 11,12 - 2425: 11,13 - 2426: 11,13 - 2427: 9,12 - 2428: 8,12 - 2429: 8,12 - 2430: 10,14 - 2462: -3,32 - 2463: -2,32 - 2464: -2,31 - 2465: -2,31 - 2466: 0,33 - 2467: 0,33 - 2562: -3,13 - 2563: -2,10 - 2564: -3,9 - 2565: -1,8 - 2566: -1,9 - 2567: 0,10 - 2571: -1,12 - 2572: -1,13 - 2573: -3,12 - 2574: 0,11 - 2575: 1,13 - 2576: 3,16 - 2577: 3,16 - 2578: 3,18 - 2579: 3,18 - 2580: 3,18 - 2581: 2,18 - 2909: 8,2 - 2910: 7,4 - 2911: 11,4 - 2912: 6,5 - 2949: -14,2 - 2950: -14,4 - 2951: -13,2 + 963: -46,9 + 964: -44,11 + 965: -44,11 + 966: -44,8 + 967: -46,8 + 968: -45,10 + 1028: -34,6 + 1075: -46,2 + 1076: -45,1 + 1077: -45,2 + 1078: -45,4 + 1079: -39,3 + 1080: -38,2 + 1081: -37,1 + 1082: -37,3 + 1083: -40,3 + 1084: -42,2 + 1085: -34,2 + 1086: -34,3 + 1087: -36,4 + 1088: -32,3 + 1089: -32,1 + 1090: -35,1 + 1165: -31,-3 + 1166: -31,-4 + 1167: -31,-7 + 1168: -28,-9 + 1169: -29,-9 + 1170: -30,-12 + 1171: -29,-15 + 1172: -30,-12 + 1173: -30,-15 + 1174: -30,-15 + 1175: -29,-17 + 1176: -29,-16 + 1177: -30,-23 + 1178: -28,-23 + 1179: -29,-22 + 1218: -27,4 + 1219: -25,2 + 1220: -24,1 + 1221: -20,3 + 1222: -18,3 + 1223: -19,2 + 1224: -16,4 + 1225: -12,4 + 1226: -12,4 + 1227: -7,5 + 1274: 0,6 + 1275: 0,2 + 1346: 16,2 + 1347: 19,1 + 1348: 19,1 + 1349: 20,2 + 1350: 19,3 + 1351: 19,3 + 1352: 24,3 + 1353: 24,4 + 1354: 24,2 + 1355: 25,1 + 1356: 12,3 + 1357: 11,2 + 1358: 14,1 + 1359: 14,1 + 1360: 14,1 + 1361: 5,1 + 1362: 4,4 + 1363: 4,4 + 1364: 4,4 + 1365: 3,3 + 1366: 5,2 + 1453: 46,3 + 1454: 46,5 + 1455: 47,6 + 1456: 47,7 + 1457: 46,8 + 1458: 45,8 + 1459: 46,6 + 1460: 45,2 + 1461: 43,2 + 1462: 42,5 + 1463: 41,4 + 1464: 39,3 + 1465: 39,4 + 1466: 38,5 + 1467: 36,3 + 1468: 34,3 + 1469: 32,4 + 1470: 32,3 + 1471: 32,2 + 1472: 34,2 + 1473: 33,3 + 1474: 33,2 + 1475: 29,2 + 1476: 29,4 + 1477: 28,5 + 1478: 28,3 + 1479: 27,2 + 1480: 27,3 + 1481: 28,2 + 1482: 30,1 + 1483: 32,1 + 1484: 33,1 + 1581: 41,14 + 1688: -1,23 + 1689: -1,23 + 1690: -1,21 + 1691: 0,21 + 1692: 0,25 + 1693: 0,27 + 1694: 0,27 + 1695: -2,28 + 1696: -1,28 + 1697: 1,26 + 1698: -2,22 + 1699: -1,22 + 1704: -18,11 + 1743: -1,18 + 1744: 0,17 + 1753: -1,18 + 1754: -1,17 + 1761: -3,16 + 1762: -3,16 + 1763: -3,16 + 1764: -4,17 + 1765: -4,17 + 1766: -4,18 + 1767: -4,18 + 1773: -6,18 + 1774: -5,17 + 1775: -4,16 + 1783: -6,14 + 1784: -6,13 + 1785: -6,15 + 1786: -5,16 + 1787: -4,11 + 1788: -4,11 + 1800: -4,9 + 1801: -6,10 + 1802: -6,10 + 1803: -3,11 + 1804: -6,13 + 1805: -6,13 + 1806: -6,18 + 1821: 4,9 + 1822: 3,12 + 1823: 3,13 + 1824: 3,13 + 1825: 2,12 + 1826: 2,12 + 1827: 3,11 + 1828: 3,10 + 1829: 3,14 + 1830: 3,17 + 1831: 3,17 + 1877: 3,28 + 1878: 3,27 + 1879: 3,26 + 1880: 3,25 + 1881: 7,26 + 1882: 7,27 + 1883: 6,27 + 1903: 4,25 + 1904: 6,25 + 1905: 8,25 + 1906: 8,25 + 1981: 14,25 + 1982: 13,25 + 1983: 14,23 + 1984: 14,23 + 1985: 13,23 + 1986: 15,24 + 1987: 15,24 + 1988: 16,24 + 1989: 17,23 + 1990: 16,22 + 1991: 15,22 + 1992: 18,24 + 1993: 19,25 + 1994: 19,24 + 1995: 20,24 + 1996: 20,24 + 1997: 20,23 + 1998: 20,23 + 1999: 19,26 + 2000: 19,26 + 2001: 18,26 + 2002: 17,26 + 2003: 16,26 + 2004: 21,24 + 2005: 21,24 + 2006: 21,22 + 2007: 23,22 + 2008: 21,23 + 2009: 21,23 + 2010: 20,22 + 2011: 22,23 + 2012: 23,24 + 2013: 22,25 + 2014: 21,24 + 2015: 22,24 + 2016: 23,24 + 2017: 24,24 + 2018: 26,25 + 2019: 26,25 + 2020: 24,24 + 2021: 24,23 + 2022: 27,22 + 2023: 27,22 + 2024: 26,22 + 2025: 26,23 + 2026: 28,23 + 2027: 28,23 + 2028: 28,24 + 2029: 29,24 + 2030: 29,24 + 2031: 31,24 + 2032: 31,25 + 2033: 29,25 + 2034: 30,24 + 2035: 29,22 + 2036: 31,23 + 2037: 31,23 + 2038: 31,22 + 2039: 32,22 + 2040: 30,23 + 2041: 29,23 + 2042: 29,21 + 2043: 28,22 + 2044: 30,20 + 2045: 31,21 + 2046: 31,21 + 2047: 32,22 + 2048: 33,24 + 2049: 33,24 + 2050: 32,24 + 2051: 32,25 + 2052: 32,26 + 2123: 34,23 + 2124: 34,23 + 2125: 34,25 + 2126: 34,26 + 2139: 41,25 + 2140: 40,26 + 2141: 40,26 + 2142: 39,25 + 2143: 40,24 + 2144: 39,23 + 2145: 40,22 + 2146: 41,23 + 2147: 44,24 + 2148: 44,25 + 2149: 43,25 + 2150: 42,25 + 2151: 43,25 + 2152: 44,26 + 2153: 44,26 + 2154: 46,25 + 2155: 47,26 + 2156: 49,26 + 2157: 48,26 + 2158: 49,25 + 2159: 49,26 + 2160: 50,25 + 2161: 50,24 + 2162: 50,22 + 2163: 50,22 + 2164: 50,23 + 2165: 49,24 + 2166: 48,24 + 2167: 46,23 + 2168: 46,23 + 2169: 46,24 + 2235: 50,26 + 2236: 51,23 + 2237: 51,24 + 2238: 45,22 + 2239: 45,22 + 2240: 45,23 + 2241: 44,23 + 2242: 42,23 + 2243: 43,22 + 2244: 42,22 + 2245: 41,22 + 2259: 33,14 + 2260: 32,14 + 2261: 34,11 + 2262: 34,10 + 2263: 33,10 + 2264: 35,10 + 2265: 38,10 + 2266: 37,11 + 2267: 38,11 + 2303: 30,9 + 2304: 30,9 + 2305: 14,11 + 2306: 14,11 + 2307: 14,11 + 2308: 14,10 + 2309: 13,10 + 2310: 13,11 + 2311: 11,11 + 2312: 10,11 + 2313: 9,11 + 2314: 9,11 + 2315: 9,10 + 2316: 9,13 + 2317: 9,13 + 2318: 9,13 + 2319: 9,13 + 2320: 11,14 + 2321: 11,15 + 2322: 12,16 + 2323: 11,16 + 2324: 10,15 + 2325: 11,15 + 2326: 15,16 + 2327: 13,14 + 2328: 15,15 + 2329: 16,16 + 2330: 17,16 + 2331: 17,15 + 2332: 17,13 + 2333: 17,13 + 2334: 17,12 + 2360: 10,12 + 2361: 11,12 + 2362: 11,13 + 2363: 11,13 + 2364: 9,12 + 2365: 8,12 + 2366: 8,12 + 2367: 10,14 + 2399: -3,32 + 2400: -2,32 + 2401: -2,31 + 2402: -2,31 + 2403: 0,33 + 2404: 0,33 + 2499: -3,13 + 2500: -2,10 + 2501: -3,9 + 2502: -1,8 + 2503: -1,9 + 2504: 0,10 + 2508: -1,12 + 2509: -1,13 + 2510: -3,12 + 2511: 0,11 + 2512: 1,13 + 2513: 3,16 + 2514: 3,16 + 2515: 3,18 + 2516: 3,18 + 2517: 3,18 + 2518: 2,18 + 2843: 8,2 + 2844: 7,4 + 2845: 11,4 + 2846: 6,5 + 2883: -14,2 + 2884: -14,4 + 2885: -13,2 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2635: 6,57 - 2636: 5,57 - 2637: 5,56 - 2638: 5,54 - 2639: 7,54 - 2640: 7,54 - 2641: 6,54 - 2642: 6,53 - 2643: 5,53 - 2644: 7,53 - 2645: 8,51 - 2646: 8,49 - 2647: 7,48 - 2648: 7,50 - 2649: 7,50 - 2650: 5,50 - 2651: 4,48 - 2652: 5,47 - 2653: 4,50 - 2654: 2,50 - 2655: 2,50 - 2656: 1,51 - 2657: 1,51 - 2658: 0,50 - 2659: 1,49 - 2660: 0,48 - 2661: 1,48 - 2662: 0,47 - 2663: 0,47 - 2664: 0,47 - 2665: -1,47 - 2666: -1,46 - 2667: -2,47 - 2668: -2,47 - 2669: -2,46 - 2670: -2,45 - 2671: -3,45 - 2672: -3,44 - 2673: -3,44 - 2674: -1,44 - 2675: -1,44 - 2676: -3,43 - 2677: -2,43 - 2678: -1,43 - 2679: -1,42 - 2680: -2,42 - 2681: 0,41 - 2682: -1,41 - 2683: -2,40 - 2684: -2,40 - 2685: -3,40 - 2686: -3,39 - 2687: -2,38 - 2688: -3,38 - 2689: -2,38 - 2690: -3,37 - 2691: -3,36 - 2692: -2,36 - 2693: 0,36 - 2694: 0,38 - 2695: 1,38 - 2696: 3,38 - 2697: 1,40 - 2698: 3,41 - 2699: 5,41 - 2700: 2,41 - 2701: 3,36 - 2702: 4,36 - 2703: 4,37 - 2704: 6,41 - 2705: 7,41 - 2706: 7,42 - 2707: 8,43 - 2708: 8,43 - 2709: 7,45 - 2710: 7,47 - 2711: 8,47 - 2712: 5,48 - 2788: 6,52 - 2789: 5,52 - 2790: 6,51 - 2791: 6,51 - 2792: 1,41 - 2793: 1,41 - 2794: 11,53 - 2795: 11,53 - 2796: 11,53 - 2797: 10,55 - 2798: 10,55 - 2799: 10,54 - 2800: 11,54 - 2824: -40,11 - 2825: -41,12 - 2826: -38,12 - 2827: -37,11 - 2828: -36,11 - 2829: -36,11 - 2830: -35,12 - 2831: -32,12 - 2832: -29,12 - 2833: -28,12 - 2834: -27,12 - 2855: -53,15 - 2856: -51,14 - 2857: -51,14 - 2858: -53,12 - 2859: -53,12 - 2860: -53,13 - 2861: -52,12 + 2572: 6,57 + 2573: 5,57 + 2574: 5,56 + 2575: 5,54 + 2576: 7,54 + 2577: 7,54 + 2578: 6,54 + 2579: 6,53 + 2580: 5,53 + 2581: 7,53 + 2582: 8,51 + 2583: 8,49 + 2584: 7,48 + 2585: 7,50 + 2586: 7,50 + 2587: 5,50 + 2588: 4,48 + 2589: 5,47 + 2590: 4,50 + 2591: 2,50 + 2592: 2,50 + 2593: 1,51 + 2594: 1,51 + 2595: 0,50 + 2596: 1,49 + 2597: 0,48 + 2598: 1,48 + 2599: 0,47 + 2600: 0,47 + 2601: 0,47 + 2602: -1,47 + 2603: -1,46 + 2604: -2,47 + 2605: -2,47 + 2606: -2,46 + 2607: -2,45 + 2608: -3,45 + 2609: -3,44 + 2610: -3,44 + 2611: -1,44 + 2612: -1,44 + 2613: -3,43 + 2614: -2,43 + 2615: -1,43 + 2616: -1,42 + 2617: -2,42 + 2618: 0,41 + 2619: -1,41 + 2620: -2,40 + 2621: -2,40 + 2622: -3,40 + 2623: -3,39 + 2624: -2,38 + 2625: -3,38 + 2626: -2,38 + 2627: -3,37 + 2628: -3,36 + 2629: -2,36 + 2630: 0,36 + 2631: 0,38 + 2632: 1,38 + 2633: 3,38 + 2634: 1,40 + 2635: 3,41 + 2636: 5,41 + 2637: 2,41 + 2638: 3,36 + 2639: 4,36 + 2640: 4,37 + 2641: 6,41 + 2642: 7,41 + 2643: 7,42 + 2644: 8,43 + 2645: 8,43 + 2646: 7,45 + 2647: 7,47 + 2648: 8,47 + 2649: 5,48 + 2725: 6,52 + 2726: 5,52 + 2727: 6,51 + 2728: 6,51 + 2729: 1,41 + 2730: 1,41 + 2731: 11,53 + 2732: 11,53 + 2733: 11,53 + 2734: 10,55 + 2735: 10,55 + 2736: 10,54 + 2737: 11,54 + 2761: -40,11 + 2762: -41,12 + 2763: -38,12 + 2764: -37,11 + 2765: -36,11 + 2766: -36,11 + 2767: -35,12 + 2768: -32,12 + 2769: -29,12 + 2770: -28,12 + 2771: -27,12 + 2792: -53,15 + 2793: -51,14 + 2794: -51,14 + 2795: -53,12 + 2796: -53,12 + 2797: -53,13 + 2798: -52,12 - node: color: '#FFFFFFFF' id: DirtLight decals: - 870: -58,3 + 844: -58,3 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 886: -52,14 - 887: -53,17 - 888: -53,11 - 889: -48,12 - 890: -45,14 - 891: -45,14 - 892: -45,14 - 893: -44,16 - 894: -44,16 - 895: -44,16 - 896: -46,18 - 897: -46,18 - 898: -44,14 - 923: -54,8 - 924: -56,5 - 925: -55,2 - 926: -56,1 - 927: -56,1 - 928: -55,1 - 929: -53,1 - 930: -51,1 - 931: -52,2 - 932: -52,2 - 933: -51,2 - 934: -49,1 - 935: -48,2 - 936: -48,3 - 937: -49,4 - 938: -49,4 - 939: -48,5 - 940: -48,5 - 941: -48,8 - 996: -46,10 - 997: -44,9 - 998: -44,9 - 999: -45,9 - 1057: -37,11 - 1058: -41,12 - 1059: -39,11 - 1060: -33,12 - 1061: -33,12 - 1062: -30,11 - 1063: -29,12 - 1125: -35,3 - 1126: -33,3 - 1127: -32,2 - 1128: -32,1 - 1129: -34,1 - 1130: -30,3 - 1131: -29,3 - 1132: -29,4 - 1133: -43,5 - 1134: -40,5 - 1135: -40,5 - 1136: -40,5 - 1137: -41,6 - 1138: -41,4 - 1139: -40,3 - 1140: -43,3 - 1141: -45,3 - 1170: -29,-24 - 1171: -30,-24 - 1172: -30,-23 - 1173: -31,-20 - 1174: -31,-20 - 1175: -30,-21 - 1176: -30,-22 - 1177: -29,-19 - 1178: -29,-17 - 1179: -29,-15 - 1180: -31,-14 - 1181: -31,-14 - 1182: -31,-15 - 1183: -31,-15 - 1184: -30,-11 - 1185: -31,-9 - 1186: -30,-8 - 1187: -31,-8 - 1188: -31,-5 - 1189: -30,-3 - 1190: -30,-2 - 1191: -30,-3 - 1264: -11,5 - 1265: -10,5 - 1266: -10,4 - 1267: -9,4 - 1268: -6,2 - 1269: -6,4 - 1270: -6,3 - 1271: -6,3 - 1272: -5,4 - 1273: -6,5 - 1274: -6,5 - 1275: -6,6 - 1276: -6,6 - 1277: -6,2 - 1278: -5,2 - 1279: -5,1 - 1280: -5,1 - 1281: -5,2 - 1282: -5,2 - 1283: -13,1 - 1284: -16,2 - 1285: -16,3 - 1286: -16,3 - 1287: -18,3 - 1288: -20,3 - 1289: -20,4 - 1290: -21,2 - 1291: -24,2 - 1292: -25,3 - 1293: -24,3 - 1294: -26,4 - 1304: -1,5 - 1305: 13,1 - 1306: 12,3 - 1307: 7,5 - 1308: 4,5 - 1309: 4,6 - 1310: 2,6 - 1311: 3,4 - 1312: 2,3 - 1313: 3,1 - 1314: 4,1 - 1315: 5,1 - 1316: 6,1 - 1317: 7,1 - 1318: 9,1 - 1319: 8,4 - 1320: 8,6 - 1321: 9,6 - 1322: 9,6 - 1323: 12,3 - 1324: 13,4 - 1325: 15,4 - 1326: 13,5 - 1327: 14,5 - 1328: 15,3 - 1329: 17,2 - 1330: 17,4 - 1331: 18,4 - 1332: 20,1 - 1333: 19,1 - 1334: 20,1 - 1335: 21,2 - 1336: 20,4 - 1337: 23,3 - 1338: 22,2 - 1339: 23,2 - 1340: 24,3 - 1341: 25,4 - 1342: 25,4 - 1343: 24,1 - 1512: 28,2 - 1513: 29,1 - 1514: 29,1 - 1515: 32,2 - 1516: 34,2 - 1517: 36,2 - 1518: 35,2 - 1519: 34,2 - 1520: 35,3 - 1521: 33,4 - 1522: 33,3 - 1523: 31,3 - 1524: 36,4 - 1525: 40,4 - 1526: 38,5 - 1527: 43,3 - 1528: 44,3 - 1529: 44,3 - 1530: 44,3 - 1531: 44,3 - 1532: 41,2 - 1533: 43,1 - 1534: 45,1 - 1535: 45,2 - 1536: 40,1 - 1537: 38,2 - 1538: 41,1 - 1539: 42,1 - 1540: 47,3 - 1541: 47,5 - 1542: 48,6 - 1543: 47,5 - 1544: 48,3 - 1545: 51,2 - 1546: 51,1 - 1547: 50,2 - 1548: 51,3 - 1549: 48,2 - 1550: 46,1 - 1551: 53,1 - 1552: 53,2 - 1583: 38,8 - 1584: 40,8 - 1585: 40,7 - 1586: 36,9 - 1587: 36,11 - 1588: 34,10 - 1589: 34,10 - 1590: 33,11 - 1591: 33,13 - 1592: 32,14 - 1593: 32,14 - 1594: 33,15 - 1595: 34,18 - 1596: 36,18 - 1597: 36,18 - 1598: 37,19 - 1599: 37,19 - 1600: 41,17 - 1601: 41,17 - 1602: 40,17 - 1603: 40,17 - 1604: 40,18 - 1605: 45,18 - 1643: 27,-24 - 1644: 28,-24 - 1645: 28,-22 - 1646: 27,-21 - 1647: 27,-19 - 1648: 29,-19 - 1649: 28,-19 - 1650: 27,-16 - 1651: 29,-14 - 1652: 28,-14 - 1653: 28,-15 - 1654: 29,-14 - 1655: 28,-10 - 1656: 29,-8 - 1657: 29,-7 - 1658: 28,-6 - 1659: 29,-6 - 1660: 28,-2 - 1661: 27,-2 - 1662: 29,-1 - 1663: 29,-2 - 1682: 9,5 - 1696: 0,20 - 1697: -1,20 - 1698: -2,21 - 1699: -2,23 - 1700: -2,24 - 1701: -2,25 - 1702: 0,25 - 1703: 0,26 - 1704: 1,25 - 1705: 1,25 - 1706: 1,27 - 1707: 1,28 - 1708: 0,28 - 1709: -1,29 - 1710: 0,29 - 1711: 0,29 - 1712: -2,26 - 1713: -2,26 - 1739: -12,12 - 1740: -11,11 - 1741: -10,15 - 1742: -11,16 - 1743: -11,17 - 1783: -2,18 - 1784: -1,17 - 1785: -1,17 - 1786: -1,15 - 1787: -1,15 - 1788: 0,15 - 1797: -1,17 - 1798: 0,16 - 1799: 0,16 - 1800: 0,16 - 1801: -1,16 - 1802: -1,18 - 1807: -1,16 - 1808: -1,16 - 1809: -3,17 - 1810: -3,17 - 1845: -6,9 - 1846: -4,8 - 1847: -4,8 - 1848: -4,8 - 1849: -4,8 - 1859: -6,17 - 1860: -6,18 - 1861: -4,16 - 1862: -6,8 - 1863: -6,8 - 1864: -6,8 - 1865: -6,8 - 1866: -6,9 - 1884: 2,17 - 1885: 2,18 - 1886: 4,18 - 1887: 4,18 - 1888: 4,17 - 1889: 4,17 - 1890: 4,16 - 1891: 4,14 - 1892: 4,13 - 1893: 4,13 - 1894: 4,14 - 1895: 4,14 - 1896: 2,16 - 1897: 2,16 - 1898: 2,16 - 1899: 2,16 - 1900: 2,11 - 1901: 2,10 - 1902: 2,9 - 1903: 3,8 - 1904: 2,8 - 1936: 4,27 - 1937: 4,27 - 1938: 5,28 - 1939: 5,28 - 1940: 5,27 - 1941: 10,27 - 1942: 10,27 - 1943: 9,27 - 1944: 11,27 - 1945: 11,26 - 1961: 9,25 - 1962: 6,26 - 2105: 33,26 - 2106: 34,26 - 2107: 34,25 - 2108: 34,24 - 2109: 33,23 - 2110: 33,23 - 2111: 31,24 - 2112: 32,24 - 2113: 33,24 - 2114: 33,24 - 2115: 32,22 - 2116: 32,21 - 2117: 34,21 - 2118: 34,22 - 2119: 33,22 - 2120: 30,21 - 2121: 30,22 - 2122: 29,21 - 2123: 28,21 - 2124: 28,23 - 2125: 27,22 - 2126: 26,22 - 2127: 28,21 - 2128: 28,22 - 2129: 25,23 - 2130: 26,23 - 2131: 26,23 - 2132: 25,21 - 2133: 26,21 - 2134: 24,23 - 2135: 23,24 - 2136: 24,23 - 2137: 23,23 - 2138: 23,23 - 2139: 24,22 - 2140: 24,24 - 2141: 23,25 - 2142: 22,24 - 2143: 22,25 - 2144: 22,26 - 2145: 25,26 - 2146: 25,26 - 2147: 20,26 - 2148: 19,26 - 2149: 20,26 - 2150: 17,26 - 2151: 18,26 - 2152: 15,26 - 2153: 15,26 - 2154: 15,25 - 2155: 15,25 - 2156: 17,24 - 2157: 16,24 - 2158: 13,24 - 2159: 14,23 - 2160: 14,22 - 2161: 15,22 - 2162: 17,23 - 2163: 19,22 - 2164: 20,22 - 2165: 20,21 - 2166: 20,21 - 2167: 18,21 - 2182: 37,26 - 2183: 37,26 - 2184: 36,25 - 2185: 36,25 - 2186: 34,26 - 2187: 33,26 - 2188: 32,26 - 2189: 31,25 - 2190: 29,25 - 2260: 39,25 - 2261: 39,24 - 2262: 39,24 - 2263: 39,23 - 2264: 41,23 - 2265: 44,24 - 2266: 44,24 - 2267: 43,24 - 2268: 43,24 - 2269: 42,23 - 2270: 43,23 - 2271: 44,23 - 2272: 45,24 - 2273: 45,25 - 2274: 45,25 - 2275: 47,26 - 2276: 47,26 - 2277: 50,25 - 2278: 50,25 - 2279: 49,24 - 2280: 51,25 - 2281: 52,25 - 2282: 51,25 - 2283: 51,25 - 2284: 53,26 - 2285: 54,26 - 2286: 53,25 - 2287: 53,25 - 2288: 54,25 - 2289: 51,26 - 2331: 38,10 - 2332: 40,10 - 2333: 40,10 - 2334: 39,10 - 2335: 40,11 - 2336: 41,11 - 2337: 41,12 - 2338: 42,12 - 2339: 43,12 - 2340: 40,14 - 2358: 31,11 - 2359: 31,11 - 2360: 31,10 - 2361: 29,8 - 2362: 30,9 - 2363: 30,8 - 2364: 31,7 - 2365: 32,7 - 2431: 10,14 - 2432: 10,14 - 2433: 10,13 - 2434: 10,13 - 2435: 14,16 - 2436: 13,16 - 2437: 13,16 - 2438: 17,15 - 2439: 17,14 - 2440: 17,15 - 2441: 17,16 - 2442: 17,13 - 2443: 15,11 - 2444: 15,10 - 2445: 14,10 - 2446: 14,12 - 2447: 14,12 - 2448: 7,15 - 2449: 8,16 - 2450: 8,16 - 2451: 7,16 - 2452: 13,21 - 2453: 13,21 - 2454: 13,21 - 2468: -3,32 - 2469: -1,33 - 2470: -1,33 - 2471: -1,32 - 2472: 0,32 - 2473: 0,32 - 2474: 0,32 - 2475: 0,32 - 2560: -1,11 - 2561: -1,13 - 2568: -2,11 - 2569: 1,11 - 2570: -5,12 - 2913: 5,4 - 2914: 5,3 - 2915: 6,2 - 2916: 4,2 - 2917: 10,2 - 2952: -13,2 - 2953: -13,4 - 2954: -11,2 - 2955: -12,2 + 860: -52,14 + 861: -53,17 + 862: -53,11 + 863: -48,12 + 864: -45,14 + 865: -45,14 + 866: -45,14 + 867: -44,16 + 868: -44,16 + 869: -44,16 + 870: -46,18 + 871: -46,18 + 872: -44,14 + 897: -54,8 + 898: -56,5 + 899: -55,2 + 900: -56,1 + 901: -56,1 + 902: -55,1 + 903: -53,1 + 904: -51,1 + 905: -52,2 + 906: -52,2 + 907: -51,2 + 908: -49,1 + 909: -48,2 + 910: -48,3 + 911: -49,4 + 912: -49,4 + 913: -48,5 + 914: -48,5 + 915: -48,8 + 969: -46,10 + 970: -44,9 + 971: -44,9 + 972: -45,9 + 1030: -37,11 + 1031: -41,12 + 1032: -39,11 + 1033: -33,12 + 1034: -33,12 + 1035: -30,11 + 1036: -29,12 + 1098: -35,3 + 1099: -33,3 + 1100: -32,2 + 1101: -32,1 + 1102: -34,1 + 1103: -30,3 + 1104: -29,3 + 1105: -29,4 + 1106: -43,5 + 1107: -40,5 + 1108: -40,5 + 1109: -40,5 + 1110: -41,6 + 1111: -41,4 + 1112: -40,3 + 1113: -43,3 + 1114: -45,3 + 1143: -29,-24 + 1144: -30,-24 + 1145: -30,-23 + 1146: -31,-20 + 1147: -31,-20 + 1148: -30,-21 + 1149: -30,-22 + 1150: -29,-19 + 1151: -29,-17 + 1152: -29,-15 + 1153: -31,-14 + 1154: -31,-14 + 1155: -31,-15 + 1156: -31,-15 + 1157: -30,-11 + 1158: -31,-9 + 1159: -30,-8 + 1160: -31,-8 + 1161: -31,-5 + 1162: -30,-3 + 1163: -30,-2 + 1164: -30,-3 + 1237: -11,5 + 1238: -10,5 + 1239: -10,4 + 1240: -9,4 + 1241: -6,2 + 1242: -6,4 + 1243: -6,3 + 1244: -6,3 + 1245: -5,4 + 1246: -6,5 + 1247: -6,5 + 1248: -6,6 + 1249: -6,6 + 1250: -6,2 + 1251: -5,2 + 1252: -5,1 + 1253: -5,1 + 1254: -5,2 + 1255: -5,2 + 1256: -13,1 + 1257: -16,2 + 1258: -16,3 + 1259: -16,3 + 1260: -18,3 + 1261: -20,3 + 1262: -20,4 + 1263: -21,2 + 1264: -24,2 + 1265: -25,3 + 1266: -24,3 + 1267: -26,4 + 1277: -1,5 + 1278: 13,1 + 1279: 12,3 + 1280: 7,5 + 1281: 4,5 + 1282: 4,6 + 1283: 2,6 + 1284: 3,4 + 1285: 2,3 + 1286: 3,1 + 1287: 4,1 + 1288: 5,1 + 1289: 6,1 + 1290: 7,1 + 1291: 9,1 + 1292: 8,4 + 1293: 8,6 + 1294: 9,6 + 1295: 9,6 + 1296: 12,3 + 1297: 13,4 + 1298: 15,4 + 1299: 13,5 + 1300: 14,5 + 1301: 15,3 + 1302: 17,2 + 1303: 17,4 + 1304: 18,4 + 1305: 20,1 + 1306: 19,1 + 1307: 20,1 + 1308: 21,2 + 1309: 20,4 + 1310: 23,3 + 1311: 22,2 + 1312: 23,2 + 1313: 24,3 + 1314: 25,4 + 1315: 25,4 + 1316: 24,1 + 1485: 28,2 + 1486: 29,1 + 1487: 29,1 + 1488: 32,2 + 1489: 34,2 + 1490: 36,2 + 1491: 35,2 + 1492: 34,2 + 1493: 35,3 + 1494: 33,4 + 1495: 33,3 + 1496: 31,3 + 1497: 36,4 + 1498: 40,4 + 1499: 38,5 + 1500: 43,3 + 1501: 44,3 + 1502: 44,3 + 1503: 44,3 + 1504: 44,3 + 1505: 41,2 + 1506: 43,1 + 1507: 45,1 + 1508: 45,2 + 1509: 40,1 + 1510: 38,2 + 1511: 41,1 + 1512: 42,1 + 1513: 47,3 + 1514: 47,5 + 1515: 48,6 + 1516: 47,5 + 1517: 48,3 + 1518: 51,2 + 1519: 51,1 + 1520: 50,2 + 1521: 51,3 + 1522: 48,2 + 1523: 46,1 + 1524: 53,1 + 1525: 53,2 + 1556: 38,8 + 1557: 40,8 + 1558: 40,7 + 1559: 36,9 + 1560: 36,11 + 1561: 34,10 + 1562: 34,10 + 1563: 33,11 + 1564: 32,14 + 1565: 32,14 + 1566: 36,18 + 1567: 36,18 + 1568: 37,19 + 1569: 37,19 + 1570: 41,17 + 1571: 41,17 + 1572: 40,17 + 1573: 40,17 + 1574: 40,18 + 1575: 45,18 + 1611: 27,-24 + 1612: 28,-24 + 1613: 28,-22 + 1614: 27,-21 + 1615: 27,-19 + 1616: 29,-19 + 1617: 28,-19 + 1618: 27,-16 + 1619: 29,-14 + 1620: 28,-14 + 1621: 28,-15 + 1622: 29,-14 + 1623: 28,-10 + 1624: 29,-8 + 1625: 29,-7 + 1626: 28,-6 + 1627: 29,-6 + 1628: 28,-2 + 1629: 27,-2 + 1630: 29,-1 + 1631: 29,-2 + 1650: 9,5 + 1664: 0,20 + 1665: -1,20 + 1666: -2,21 + 1667: -2,23 + 1668: -2,24 + 1669: -2,25 + 1670: 0,25 + 1671: 0,26 + 1672: 1,25 + 1673: 1,25 + 1674: 1,27 + 1675: 1,28 + 1676: 0,28 + 1677: -1,29 + 1678: 0,29 + 1679: 0,29 + 1680: -2,26 + 1681: -2,26 + 1731: -2,18 + 1732: -1,17 + 1733: -1,17 + 1734: -1,15 + 1735: -1,15 + 1736: 0,15 + 1745: -1,17 + 1746: 0,16 + 1747: 0,16 + 1748: 0,16 + 1749: -1,16 + 1750: -1,18 + 1755: -1,16 + 1756: -1,16 + 1757: -3,17 + 1758: -3,17 + 1793: -6,9 + 1794: -4,8 + 1795: -4,8 + 1796: -4,8 + 1797: -4,8 + 1807: -6,17 + 1808: -6,18 + 1809: -4,16 + 1810: -6,8 + 1811: -6,8 + 1812: -6,8 + 1813: -6,8 + 1814: -6,9 + 1832: 2,17 + 1833: 2,18 + 1834: 4,18 + 1835: 4,18 + 1836: 4,17 + 1837: 4,17 + 1838: 4,16 + 1839: 4,14 + 1840: 4,13 + 1841: 4,13 + 1842: 4,14 + 1843: 4,14 + 1844: 2,16 + 1845: 2,16 + 1846: 2,16 + 1847: 2,16 + 1848: 2,11 + 1849: 2,10 + 1850: 2,9 + 1851: 3,8 + 1852: 2,8 + 1884: 4,27 + 1885: 4,27 + 1886: 5,28 + 1887: 5,28 + 1888: 5,27 + 1889: 10,27 + 1890: 10,27 + 1891: 9,27 + 1892: 11,27 + 1893: 11,26 + 1909: 9,25 + 1910: 6,26 + 2053: 33,26 + 2054: 34,26 + 2055: 34,25 + 2056: 34,24 + 2057: 33,23 + 2058: 33,23 + 2059: 31,24 + 2060: 32,24 + 2061: 33,24 + 2062: 33,24 + 2063: 32,22 + 2064: 32,21 + 2065: 34,21 + 2066: 34,22 + 2067: 33,22 + 2068: 30,21 + 2069: 30,22 + 2070: 29,21 + 2071: 28,21 + 2072: 28,23 + 2073: 27,22 + 2074: 26,22 + 2075: 28,21 + 2076: 28,22 + 2077: 25,23 + 2078: 26,23 + 2079: 26,23 + 2080: 25,21 + 2081: 24,23 + 2082: 23,24 + 2083: 24,23 + 2084: 23,23 + 2085: 23,23 + 2086: 24,22 + 2087: 24,24 + 2088: 23,25 + 2089: 22,24 + 2090: 22,25 + 2091: 22,26 + 2092: 25,26 + 2093: 25,26 + 2094: 20,26 + 2095: 19,26 + 2096: 20,26 + 2097: 17,26 + 2098: 18,26 + 2099: 15,26 + 2100: 15,26 + 2101: 15,25 + 2102: 15,25 + 2103: 17,24 + 2104: 16,24 + 2105: 13,24 + 2106: 14,23 + 2107: 14,22 + 2108: 15,22 + 2109: 17,23 + 2110: 19,22 + 2111: 20,22 + 2112: 20,21 + 2113: 20,21 + 2114: 18,21 + 2127: 37,26 + 2128: 37,26 + 2129: 36,25 + 2130: 36,25 + 2131: 34,26 + 2132: 33,26 + 2133: 32,26 + 2134: 31,25 + 2135: 29,25 + 2205: 39,25 + 2206: 39,24 + 2207: 39,24 + 2208: 39,23 + 2209: 41,23 + 2210: 44,24 + 2211: 44,24 + 2212: 43,24 + 2213: 43,24 + 2214: 42,23 + 2215: 43,23 + 2216: 44,23 + 2217: 45,24 + 2218: 45,25 + 2219: 45,25 + 2220: 47,26 + 2221: 47,26 + 2222: 50,25 + 2223: 50,25 + 2224: 49,24 + 2225: 51,25 + 2226: 52,25 + 2227: 51,25 + 2228: 51,25 + 2229: 53,26 + 2230: 54,26 + 2231: 53,25 + 2232: 53,25 + 2233: 54,25 + 2234: 51,26 + 2268: 38,10 + 2269: 40,10 + 2270: 40,10 + 2271: 39,10 + 2272: 40,11 + 2273: 41,11 + 2274: 41,12 + 2275: 42,12 + 2276: 43,12 + 2277: 40,14 + 2295: 31,11 + 2296: 31,11 + 2297: 31,10 + 2298: 29,8 + 2299: 30,9 + 2300: 30,8 + 2301: 31,7 + 2302: 32,7 + 2368: 10,14 + 2369: 10,14 + 2370: 10,13 + 2371: 10,13 + 2372: 14,16 + 2373: 13,16 + 2374: 13,16 + 2375: 17,15 + 2376: 17,14 + 2377: 17,15 + 2378: 17,16 + 2379: 17,13 + 2380: 15,11 + 2381: 15,10 + 2382: 14,10 + 2383: 14,12 + 2384: 14,12 + 2385: 7,15 + 2386: 8,16 + 2387: 8,16 + 2388: 7,16 + 2389: 13,21 + 2390: 13,21 + 2391: 13,21 + 2405: -3,32 + 2406: -1,33 + 2407: -1,33 + 2408: -1,32 + 2409: 0,32 + 2410: 0,32 + 2411: 0,32 + 2412: 0,32 + 2497: -1,11 + 2498: -1,13 + 2505: -2,11 + 2506: 1,11 + 2507: -5,12 + 2847: 5,4 + 2848: 5,3 + 2849: 6,2 + 2850: 4,2 + 2851: 10,2 + 2886: -13,2 + 2887: -13,4 + 2888: -11,2 + 2889: -12,2 + 2936: 33,17 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtLight decals: - 2740: -2,39 - 2741: -2,39 - 2742: 1,37 - 2743: 1,37 - 2744: -1,37 - 2745: -1,37 - 2746: -2,37 - 2747: -2,37 - 2748: -1,41 - 2749: -1,40 - 2750: 0,40 - 2751: -2,44 - 2752: 0,48 - 2753: 0,49 - 2754: 0,49 - 2755: 0,51 - 2756: 3,51 - 2757: 6,53 - 2758: 7,53 - 2759: 8,53 - 2760: 8,54 - 2761: 8,54 - 2762: 7,55 - 2784: 1,50 - 2785: 1,50 - 2786: 7,51 - 2835: -38,11 - 2836: -38,11 - 2837: -39,12 - 2838: -39,12 - 2839: -41,10 - 2840: -38,12 - 2841: -32,12 - 2842: -34,12 - 2843: -33,11 - 2844: -34,8 - 2845: -33,8 - 2846: -29,11 - 2847: -31,12 - 2848: -30,12 - 2849: -30,12 - 2862: -52,11 - 2863: -53,10 - 2864: -49,14 - 2865: -48,14 - 2866: -48,14 - 2867: -50,5 - 2868: -51,5 - 2869: -51,6 - 2870: -51,5 + 2677: -2,39 + 2678: -2,39 + 2679: 1,37 + 2680: 1,37 + 2681: -1,37 + 2682: -1,37 + 2683: -2,37 + 2684: -2,37 + 2685: -1,41 + 2686: -1,40 + 2687: 0,40 + 2688: -2,44 + 2689: 0,48 + 2690: 0,49 + 2691: 0,49 + 2692: 0,51 + 2693: 3,51 + 2694: 6,53 + 2695: 7,53 + 2696: 8,53 + 2697: 8,54 + 2698: 8,54 + 2699: 7,55 + 2721: 1,50 + 2722: 1,50 + 2723: 7,51 + 2772: -38,11 + 2773: -38,11 + 2774: -39,12 + 2775: -39,12 + 2776: -41,10 + 2777: -38,12 + 2778: -32,12 + 2779: -34,12 + 2780: -33,11 + 2781: -34,8 + 2782: -33,8 + 2783: -29,11 + 2784: -31,12 + 2785: -30,12 + 2786: -30,12 + 2799: -52,11 + 2800: -53,10 + 2801: -49,14 + 2802: -48,14 + 2803: -48,14 + 2804: -50,5 + 2805: -51,5 + 2806: -51,6 + 2807: -51,5 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 845: -49,13 + 819: -49,13 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 899: -46,14 - 900: -45,13 - 901: -44,18 - 902: -44,18 - 903: -44,18 - 904: -52,16 - 905: -54,8 - 906: -54,7 - 907: -54,6 - 908: -51,6 - 909: -51,4 - 910: -52,3 - 911: -54,3 - 912: -54,2 - 913: -55,2 - 914: -55,3 - 915: -55,1 - 916: -52,1 - 917: -49,2 - 918: -48,3 - 919: -49,1 - 920: -49,4 - 921: -49,6 - 922: -49,7 - 1000: -45,11 - 1001: -45,11 - 1056: -34,9 - 1118: -46,3 - 1119: -46,5 - 1120: -44,3 - 1121: -43,1 - 1122: -40,2 - 1123: -37,1 - 1124: -35,4 - 1146: -50,2 - 1147: -31,-1 - 1148: -30,-2 - 1149: -29,-3 - 1150: -29,-5 - 1151: -30,-7 - 1152: -31,-8 - 1153: -31,-10 - 1154: -30,-9 - 1155: -30,-8 - 1156: -30,-11 - 1157: -29,-14 - 1158: -29,-15 - 1159: -29,-13 - 1160: -30,-13 - 1161: -31,-17 - 1162: -30,-19 - 1163: -30,-20 - 1164: -29,-19 - 1165: -29,-20 - 1166: -29,-21 - 1167: -29,-24 - 1168: -31,-23 - 1169: -31,-24 - 1255: -22,3 - 1256: -23,2 - 1257: -22,1 - 1258: -23,3 - 1259: -26,1 - 1260: -15,2 - 1261: -14,3 - 1262: -14,3 - 1263: -15,4 - 1303: -1,4 - 1344: 16,1 - 1345: 16,1 - 1346: 14,3 - 1347: 13,3 - 1348: 11,2 - 1349: 9,4 - 1350: 7,5 - 1351: 5,2 - 1352: 4,5 - 1353: 4,5 - 1354: 2,5 - 1355: 3,3 - 1356: 2,6 - 1357: 4,6 - 1358: 4,5 - 1359: 3,2 - 1360: 3,1 - 1361: 4,1 - 1362: 7,1 - 1363: 8,1 - 1364: 11,4 - 1365: 10,5 - 1366: 12,5 - 1367: 15,2 - 1368: 16,3 - 1369: 17,4 - 1370: 17,4 - 1371: 17,1 - 1372: 19,1 - 1431: 27,1 - 1432: 30,3 - 1433: 31,3 - 1434: 31,1 - 1435: 28,4 - 1436: 30,4 - 1437: 34,3 - 1438: 33,1 - 1439: 34,4 - 1440: 34,5 - 1441: 37,4 - 1442: 35,1 - 1443: 37,1 - 1444: 39,3 - 1445: 38,2 - 1446: 37,2 - 1447: 37,2 - 1448: 41,2 - 1449: 42,4 - 1450: 44,5 - 1451: 44,2 - 1452: 43,1 - 1453: 45,4 - 1454: 45,6 - 1455: 43,6 - 1456: 42,5 - 1457: 44,2 - 1458: 48,7 - 1459: 46,9 - 1460: 47,9 - 1461: 47,8 - 1462: 48,8 - 1463: 48,7 - 1464: 46,5 - 1465: 48,3 - 1466: 49,3 - 1467: 49,4 - 1468: 49,4 - 1469: 49,1 - 1470: 47,1 - 1471: 45,1 - 1472: 46,2 - 1473: 52,1 - 1474: 51,3 - 1475: 53,3 - 1476: 53,3 - 1477: 53,1 - 1478: 54,2 - 1479: 54,3 - 1616: 37,9 - 1617: 34,16 - 1618: 37,17 - 1619: 38,18 - 1664: 27,-1 - 1665: 27,-3 - 1666: 29,-4 - 1667: 28,-3 - 1668: 29,-4 - 1669: 29,-7 - 1670: 29,-9 - 1671: 28,-10 - 1672: 28,-9 - 1673: 29,-10 - 1674: 29,-10 - 1675: 28,-12 - 1676: 28,-14 - 1677: 27,-14 - 1678: 27,-14 - 1679: 29,-12 - 1680: 29,-16 - 1681: 27,-19 - 1717: -2,27 - 1718: 0,23 - 1719: 1,23 - 1744: -9,17 - 1745: -8,15 - 1746: -9,15 - 1747: -10,14 - 1748: -13,12 - 1749: -15,12 - 1750: -14,11 - 1820: -5,18 - 1821: -5,18 - 1822: -5,17 - 1823: -6,17 - 1824: -6,16 - 1828: -6,16 - 1829: -5,15 - 1830: -5,13 - 1831: -5,13 - 1832: -4,13 - 1850: -5,9 - 1851: -4,10 - 1905: 2,8 - 1906: 4,9 - 1907: 4,10 - 1908: 3,9 - 1909: 4,12 - 1910: 4,13 - 1911: 2,15 - 1912: 2,14 - 1913: 4,15 - 1946: 3,28 - 1947: 4,28 - 1948: 5,28 - 1949: 7,28 - 1950: 7,28 - 1951: 6,27 - 1952: 5,26 - 1953: 5,26 - 1954: 8,27 - 1959: 10,23 - 1960: 11,23 - 2243: 48,26 - 2244: 49,26 - 2245: 48,25 - 2246: 47,25 - 2247: 46,26 - 2248: 45,26 - 2249: 45,26 - 2250: 40,26 - 2251: 43,26 - 2252: 43,26 - 2253: 42,24 - 2254: 41,24 - 2255: 42,25 - 2256: 42,26 - 2257: 41,26 - 2258: 40,25 - 2259: 39,26 - 2476: -1,32 - 2918: 4,3 - 2919: 6,4 - 2920: 11,2 - 2956: -9,4 - 2957: -10,4 - 2958: -8,2 - 2959: -12,4 - 2960: -11,2 - 2961: -12,2 - 2962: -12,1 - 2963: -13,4 - 2964: -13,5 + 873: -46,14 + 874: -45,13 + 875: -44,18 + 876: -44,18 + 877: -44,18 + 878: -52,16 + 879: -54,8 + 880: -54,7 + 881: -54,6 + 882: -51,6 + 883: -51,4 + 884: -52,3 + 885: -54,3 + 886: -54,2 + 887: -55,2 + 888: -55,3 + 889: -55,1 + 890: -52,1 + 891: -49,2 + 892: -48,3 + 893: -49,1 + 894: -49,4 + 895: -49,6 + 896: -49,7 + 973: -45,11 + 974: -45,11 + 1029: -34,9 + 1091: -46,3 + 1092: -46,5 + 1093: -44,3 + 1094: -43,1 + 1095: -40,2 + 1096: -37,1 + 1097: -35,4 + 1119: -50,2 + 1120: -31,-1 + 1121: -30,-2 + 1122: -29,-3 + 1123: -29,-5 + 1124: -30,-7 + 1125: -31,-8 + 1126: -31,-10 + 1127: -30,-9 + 1128: -30,-8 + 1129: -30,-11 + 1130: -29,-14 + 1131: -29,-15 + 1132: -29,-13 + 1133: -30,-13 + 1134: -31,-17 + 1135: -30,-19 + 1136: -30,-20 + 1137: -29,-19 + 1138: -29,-20 + 1139: -29,-21 + 1140: -29,-24 + 1141: -31,-23 + 1142: -31,-24 + 1228: -22,3 + 1229: -23,2 + 1230: -22,1 + 1231: -23,3 + 1232: -26,1 + 1233: -15,2 + 1234: -14,3 + 1235: -14,3 + 1236: -15,4 + 1276: -1,4 + 1317: 16,1 + 1318: 16,1 + 1319: 14,3 + 1320: 13,3 + 1321: 11,2 + 1322: 9,4 + 1323: 7,5 + 1324: 5,2 + 1325: 4,5 + 1326: 4,5 + 1327: 2,5 + 1328: 3,3 + 1329: 2,6 + 1330: 4,6 + 1331: 4,5 + 1332: 3,2 + 1333: 3,1 + 1334: 4,1 + 1335: 7,1 + 1336: 8,1 + 1337: 11,4 + 1338: 10,5 + 1339: 12,5 + 1340: 15,2 + 1341: 16,3 + 1342: 17,4 + 1343: 17,4 + 1344: 17,1 + 1345: 19,1 + 1404: 27,1 + 1405: 30,3 + 1406: 31,3 + 1407: 31,1 + 1408: 28,4 + 1409: 30,4 + 1410: 34,3 + 1411: 33,1 + 1412: 34,4 + 1413: 34,5 + 1414: 37,4 + 1415: 35,1 + 1416: 37,1 + 1417: 39,3 + 1418: 38,2 + 1419: 37,2 + 1420: 37,2 + 1421: 41,2 + 1422: 42,4 + 1423: 44,5 + 1424: 44,2 + 1425: 43,1 + 1426: 45,4 + 1427: 45,6 + 1428: 43,6 + 1429: 42,5 + 1430: 44,2 + 1431: 48,7 + 1432: 46,9 + 1433: 47,9 + 1434: 47,8 + 1435: 48,8 + 1436: 48,7 + 1437: 46,5 + 1438: 48,3 + 1439: 49,3 + 1440: 49,4 + 1441: 49,4 + 1442: 49,1 + 1443: 47,1 + 1444: 45,1 + 1445: 46,2 + 1446: 52,1 + 1447: 51,3 + 1448: 53,3 + 1449: 53,3 + 1450: 53,1 + 1451: 54,2 + 1452: 54,3 + 1584: 37,9 + 1585: 34,16 + 1586: 37,17 + 1587: 38,18 + 1632: 27,-1 + 1633: 27,-3 + 1634: 29,-4 + 1635: 28,-3 + 1636: 29,-4 + 1637: 29,-7 + 1638: 29,-9 + 1639: 28,-10 + 1640: 28,-9 + 1641: 29,-10 + 1642: 29,-10 + 1643: 28,-12 + 1644: 28,-14 + 1645: 27,-14 + 1646: 27,-14 + 1647: 29,-12 + 1648: 29,-16 + 1649: 27,-19 + 1685: -2,27 + 1686: 0,23 + 1687: 1,23 + 1701: -9,17 + 1702: -8,15 + 1703: -9,15 + 1768: -5,18 + 1769: -5,18 + 1770: -5,17 + 1771: -6,17 + 1772: -6,16 + 1776: -6,16 + 1777: -5,15 + 1778: -5,13 + 1779: -5,13 + 1780: -4,13 + 1798: -5,9 + 1799: -4,10 + 1853: 2,8 + 1854: 4,9 + 1855: 4,10 + 1856: 3,9 + 1857: 4,12 + 1858: 4,13 + 1859: 2,15 + 1860: 2,14 + 1861: 4,15 + 1894: 3,28 + 1895: 4,28 + 1896: 5,28 + 1897: 7,28 + 1898: 7,28 + 1899: 6,27 + 1900: 5,26 + 1901: 5,26 + 1902: 8,27 + 1907: 10,23 + 1908: 11,23 + 2188: 48,26 + 2189: 49,26 + 2190: 48,25 + 2191: 47,25 + 2192: 46,26 + 2193: 45,26 + 2194: 45,26 + 2195: 40,26 + 2196: 43,26 + 2197: 43,26 + 2198: 42,24 + 2199: 41,24 + 2200: 42,25 + 2201: 42,26 + 2202: 41,26 + 2203: 40,25 + 2204: 39,26 + 2413: -1,32 + 2852: 4,3 + 2853: 6,4 + 2854: 11,2 + 2890: -9,4 + 2891: -10,4 + 2892: -8,2 + 2893: -12,4 + 2894: -11,2 + 2895: -12,2 + 2896: -12,1 + 2897: -13,4 + 2898: -13,5 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtMedium decals: - 2763: 7,55 - 2764: 5,56 - 2765: 5,57 - 2766: 4,50 - 2767: 7,49 - 2768: 8,48 - 2769: 8,45 - 2770: 8,44 - 2771: 7,44 - 2772: 8,41 - 2773: 5,41 - 2774: 3,41 - 2775: 3,40 - 2776: 2,40 - 2777: 1,39 - 2778: -1,36 - 2779: 0,37 - 2780: 2,37 - 2781: 2,37 - 2782: -1,40 - 2783: -3,47 + 2700: 7,55 + 2701: 5,56 + 2702: 5,57 + 2703: 4,50 + 2704: 7,49 + 2705: 8,48 + 2706: 8,45 + 2707: 8,44 + 2708: 7,44 + 2709: 8,41 + 2710: 5,41 + 2711: 3,41 + 2712: 3,40 + 2713: 2,40 + 2714: 1,39 + 2715: -1,36 + 2716: 0,37 + 2717: 2,37 + 2718: 2,37 + 2719: -1,40 + 2720: -3,47 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 2984: -50,3 + 2910: -50,3 - node: color: '#35526FFF' id: FullTileOverlayGreyscale decals: - 859: -53,7 - 860: -53,6 - 861: -54,6 - 862: -52,6 - 863: -53,5 - 864: -50,4 - 865: -50,2 - 866: -51,3 - 867: -49,3 + 833: -53,7 + 834: -53,6 + 835: -54,6 + 836: -52,6 + 837: -53,5 + 838: -50,4 + 839: -50,2 + 840: -51,3 + 841: -49,3 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 400: -30,-26 + 384: -30,-26 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 409: 28,-26 + 393: 28,-26 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 421: 57,1 - 422: 56,1 - 1426: 47,9 - 1427: 48,9 + 405: 57,1 + 406: 56,1 + 1399: 47,9 + 1400: 48,9 - node: color: '#FFA5007F' id: HalfTileOverlayGreyscale decals: - 656: 58,26 - 657: 57,26 - 659: 56,25 - 660: 57,25 + 637: 58,26 + 638: 57,26 + 640: 56,25 + 641: 57,25 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 394: -31,-28 - 395: -30,-28 - 396: -29,-28 - 399: -30,-27 + 378: -31,-28 + 379: -30,-28 + 380: -29,-28 + 383: -30,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 417: 28,-28 + 401: 28,-28 - node: color: '#FFA5007F' id: HalfTileOverlayGreyscale180 decals: - 664: 57,24 + 645: 57,24 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 423: 58,2 - 424: 58,3 + 407: 58,2 + 408: 58,3 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 392: -59,2 + 376: -59,2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3201,8 +3162,8 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 2619: -1,42 - 2620: -1,46 + 2556: -1,42 + 2557: -1,46 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3216,21 +3177,21 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 2621: 5,42 - 2622: 5,46 + 2558: 5,42 + 2559: 5,46 - node: color: '#DE3A3A96' id: MiniTileCheckerAOverlay decals: - 290: 36,13 - 291: 36,14 - 292: 36,15 - 293: 37,15 - 294: 38,15 - 295: 38,14 - 296: 38,13 - 297: 37,13 - 298: 37,14 + 284: 36,13 + 285: 36,14 + 286: 36,15 + 287: 37,15 + 288: 38,15 + 289: 38,14 + 290: 38,13 + 291: 37,13 + 292: 37,14 - node: color: '#FFFFFFFF' id: MiniTileCheckerAOverlay @@ -3256,47 +3217,47 @@ entities: color: '#52B4E9FF' id: MiniTileCheckerBOverlay decals: - 966: -46,11 - 967: -45,11 - 968: -44,11 - 969: -44,10 - 970: -45,10 - 971: -46,10 - 972: -46,9 - 973: -45,9 - 974: -44,9 - 975: -44,8 - 976: -45,8 - 977: -46,8 + 939: -46,11 + 940: -45,11 + 941: -44,11 + 942: -44,10 + 943: -45,10 + 944: -46,10 + 945: -46,9 + 946: -45,9 + 947: -44,9 + 948: -44,8 + 949: -45,8 + 950: -46,8 - node: color: '#FFFFFFFF' id: MiniTileOverlay decals: - 954: -46,11 - 955: -45,11 - 956: -44,11 - 957: -44,10 - 958: -45,10 - 959: -46,10 - 960: -46,9 - 961: -45,9 - 962: -44,9 - 963: -44,8 - 964: -45,8 - 965: -46,8 + 927: -46,11 + 928: -45,11 + 929: -44,11 + 930: -44,10 + 931: -45,10 + 932: -46,10 + 933: -46,9 + 934: -45,9 + 935: -44,9 + 936: -44,8 + 937: -45,8 + 938: -46,8 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 397: -31,-28 - 406: -29,-26 + 381: -31,-28 + 390: -29,-26 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 410: 29,-26 - 412: 29,-27 - 419: 27,-28 + 394: 29,-26 + 396: 29,-27 + 403: 27,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3316,101 +3277,101 @@ entities: 237: 45,8 238: 45,9 239: 46,9 - 426: 57,2 - 1418: 37,5 - 1419: 38,5 - 1420: 39,5 - 1421: 40,5 - 1422: 41,5 - 1423: 42,6 - 1424: 43,6 - 1425: 44,6 + 410: 57,2 + 1391: 37,5 + 1392: 38,5 + 1393: 39,5 + 1394: 40,5 + 1395: 41,5 + 1396: 42,6 + 1397: 43,6 + 1398: 44,6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 872: -60,1 + 846: -60,1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 398: -31,-27 - 403: -29,-26 + 382: -31,-27 + 387: -29,-26 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 411: 29,-26 - 414: 29,-27 - 418: 27,-28 + 395: 29,-26 + 398: 29,-27 + 402: 27,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 425: 57,3 - 427: 56,2 - 631: 31,20 - 632: 32,20 - 633: 33,20 - 634: 33,21 - 635: 34,21 - 636: 34,22 + 409: 57,3 + 411: 56,2 + 612: 31,20 + 613: 32,20 + 614: 33,20 + 615: 33,21 + 616: 34,21 + 617: 34,22 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 873: -58,1 + 847: -58,1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 401: -31,-26 - 405: -29,-27 + 385: -31,-26 + 389: -29,-27 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 407: 27,-26 - 416: 29,-28 + 391: 27,-26 + 400: 29,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 637: 39,23 - 638: 39,22 - 639: 40,22 - 640: 41,22 - 641: 42,22 - 642: 43,22 - 643: 44,22 - 644: 45,22 - 645: 46,22 - 646: 47,22 - 647: 48,22 - 648: 49,22 - 649: 50,22 - 650: 51,22 - 651: 52,22 - 652: 53,22 - 655: 54,24 + 618: 39,23 + 619: 39,22 + 620: 40,22 + 621: 41,22 + 622: 42,22 + 623: 43,22 + 624: 44,22 + 625: 45,22 + 626: 46,22 + 627: 47,22 + 628: 48,22 + 629: 49,22 + 630: 50,22 + 631: 51,22 + 632: 52,22 + 633: 53,22 + 636: 54,24 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 868: -60,2 + 842: -60,2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 402: -31,-26 - 404: -29,-27 + 386: -31,-26 + 388: -29,-27 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 408: 27,-26 - 413: 28,-27 - 415: 29,-28 + 392: 27,-26 + 397: 28,-27 + 399: 29,-28 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -3425,118 +3386,118 @@ entities: 224: 54,3 240: 46,9 241: 48,5 - 653: 53,22 - 654: 53,23 - 1428: 48,6 - 1429: 48,7 - 1430: 48,8 + 634: 53,22 + 635: 53,23 + 1401: 48,6 + 1402: 48,7 + 1403: 48,8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 1002: -46,5 - 1003: -45,5 - 1004: -44,5 - 1005: -43,5 - 1006: -42,5 - 1007: -39,5 - 1008: -38,5 - 1009: -37,5 - 1010: -36,5 + 975: -46,5 + 976: -45,5 + 977: -44,5 + 978: -43,5 + 979: -42,5 + 980: -39,5 + 981: -38,5 + 982: -37,5 + 983: -36,5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2884: -11,4 - 2899: 7,4 + 2818: -11,4 + 2833: 7,4 - node: color: '#FFFFFFFF' id: SpaceStationSign10 decals: - 2889: -10,2 - 2900: 8,2 + 2823: -10,2 + 2834: 8,2 - node: color: '#FFFFFFFF' id: SpaceStationSign11 decals: - 2890: -9,2 - 2901: 9,2 + 2824: -9,2 + 2835: 9,2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2891: -10,4 - 2902: 8,4 + 2825: -10,4 + 2836: 8,4 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2881: -13,3 - 2898: 5,3 + 2815: -13,3 + 2832: 5,3 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2882: -12,3 - 2897: 6,3 + 2816: -12,3 + 2831: 6,3 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2883: -11,3 - 2896: 7,3 + 2817: -11,3 + 2830: 7,3 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2885: -10,3 - 2895: 8,3 + 2819: -10,3 + 2829: 8,3 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2886: -9,3 - 2894: 9,3 + 2820: -9,3 + 2828: 9,3 - node: color: '#FFFFFFFF' id: SpaceStationSign8 decals: - 2887: -8,3 - 2893: 10,3 + 2821: -8,3 + 2827: 10,3 - node: color: '#FFFFFFFF' id: SpaceStationSign9 decals: - 2888: -7,3 - 2892: 11,3 + 2822: -7,3 + 2826: 11,3 - node: color: '#DE3A3A96' id: StandClear decals: - 388: 42,8 - 389: 43,8 - 390: 43,9 - 391: 42,9 - 627: 36,21 - 628: 37,21 - 629: 37,22 - 630: 36,22 + 372: 42,8 + 373: 43,8 + 374: 43,9 + 375: 42,9 + 608: 36,21 + 609: 37,21 + 610: 37,22 + 611: 36,22 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 420: 58,1 + 404: 58,1 - node: color: '#FFA5007F' id: ThreeQuarterTileOverlayGreyscale decals: - 658: 56,26 + 639: 56,26 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 393: -59,3 - 871: -59,1 + 377: -59,3 + 845: -59,1 - node: color: '#FFFFFFFF' id: WarnBox @@ -3562,12 +3523,12 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 370: 43,18 + 354: 43,18 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 371: 45,18 + 355: 45,18 - node: color: '#FFFFFFFF' id: WarnLineE @@ -3609,39 +3570,39 @@ entities: 144: -47,4 145: -57,1 146: -57,3 - 554: 2,26 - 555: 2,27 - 556: 2,28 - 570: 55,26 - 571: 55,25 - 572: 55,24 - 573: 38,24 - 574: 38,25 - 575: 38,26 - 576: 35,24 - 577: 35,25 - 578: 35,26 - 579: 12,23 - 580: 12,24 - 581: 12,25 - 582: 12,26 - 1767: 1,18 - 1768: 1,17 - 1769: 1,16 - 1770: 1,15 - 1775: -3,15 - 1776: -3,16 - 1777: -3,17 - 1778: -3,18 - 2977: -28,1 + 538: 2,26 + 539: 2,27 + 540: 2,28 + 554: 55,26 + 555: 55,25 + 556: 55,24 + 557: 38,24 + 558: 38,25 + 559: 38,26 + 560: 35,24 + 561: 35,25 + 562: 35,26 + 563: 12,23 + 564: 12,24 + 565: 12,25 + 566: 12,26 + 1715: 1,18 + 1716: 1,17 + 1717: 1,16 + 1718: 1,15 + 1723: -3,15 + 1724: -3,16 + 1725: -3,17 + 1726: -3,18 + 2903: -28,1 - node: zIndex: 180 color: '#FFFFFFFF' id: WarnLineE decals: - 2632: 8,53 - 2633: 8,54 - 2634: 8,55 + 2569: 8,53 + 2570: 8,54 + 2571: 8,55 - node: color: '#FFFFFFFF' id: WarnLineN @@ -3688,21 +3649,21 @@ entities: 156: -52,9 157: -53,9 158: -45,12 - 369: 44,18 - 583: 36,20 - 584: 37,20 - 585: 36,23 - 586: 37,23 - 592: 48,21 - 593: 30,18 - 1015: -41,8 - 1016: -40,8 - 2992: -31,0 - 2993: -30,0 - 2994: -29,0 - 2995: -31,-11 - 2996: -29,-11 - 3000: 29,-11 + 353: 44,18 + 567: 36,20 + 568: 37,20 + 569: 36,23 + 570: 37,23 + 576: 48,21 + 988: -41,8 + 989: -40,8 + 2918: -31,0 + 2919: -30,0 + 2920: -29,0 + 2921: -31,-11 + 2922: -29,-11 + 2926: 29,-11 + 2927: 29,19 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3744,39 +3705,39 @@ entities: 153: -47,14 154: -47,17 155: -51,17 - 551: 2,26 - 552: 2,27 - 553: 2,28 - 557: 12,23 - 558: 12,24 - 559: 12,25 - 560: 12,26 - 561: 35,24 - 562: 35,25 - 563: 35,26 - 564: 38,26 - 565: 38,25 - 566: 38,24 - 567: 55,24 - 568: 55,25 - 569: 55,26 - 1771: -3,18 - 1772: -3,17 - 1773: -3,16 - 1774: -3,15 - 1779: 1,15 - 1780: 1,16 - 1781: 1,17 - 1782: 1,18 - 2978: -28,1 + 535: 2,26 + 536: 2,27 + 537: 2,28 + 541: 12,23 + 542: 12,24 + 543: 12,25 + 544: 12,26 + 545: 35,24 + 546: 35,25 + 547: 35,26 + 548: 38,26 + 549: 38,25 + 550: 38,24 + 551: 55,24 + 552: 55,25 + 553: 55,26 + 1719: -3,18 + 1720: -3,17 + 1721: -3,16 + 1722: -3,15 + 1727: 1,15 + 1728: 1,16 + 1729: 1,17 + 1730: 1,18 + 2904: -28,1 - node: zIndex: 180 color: '#FFFFFFFF' id: WarnLineS decals: - 2616: -3,43 - 2617: -3,44 - 2618: -3,45 + 2553: -3,43 + 2554: -3,44 + 2555: -3,45 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3826,70 +3787,70 @@ entities: 175: -29,15 176: -28,15 177: -27,15 - 587: 37,23 - 588: 36,23 - 589: 37,20 - 590: 36,20 - 591: 48,21 - 594: 30,18 - 1011: -40,6 - 1012: -41,6 - 1013: -41,9 - 1014: -40,9 - 2989: -31,0 - 2990: -30,0 - 2991: -29,0 - 2997: -31,-11 - 2998: -29,-11 - 2999: 29,-11 + 571: 37,23 + 572: 36,23 + 573: 37,20 + 574: 36,20 + 575: 48,21 + 984: -40,6 + 985: -41,6 + 986: -41,9 + 987: -40,9 + 2915: -31,0 + 2916: -30,0 + 2917: -29,0 + 2923: -31,-11 + 2924: -29,-11 + 2925: 29,-11 + 2928: 29,19 - node: color: '#E69FAEFF' id: WoodTrimThinCornerNe decals: - 523: 26,13 + 507: 26,13 - node: color: '#E69FAEFF' id: WoodTrimThinCornerNw decals: - 522: 24,13 + 506: 24,13 - node: color: '#E69FAEFF' id: WoodTrimThinCornerSe decals: - 524: 26,12 + 508: 26,12 - node: color: '#E69FAEFF' id: WoodTrimThinCornerSw decals: - 525: 24,12 + 509: 24,12 - node: color: '#E69FAEFF' id: WoodTrimThinLineN decals: - 521: 25,13 + 505: 25,13 - node: color: '#E69FAEFF' id: WoodTrimThinLineS decals: - 526: 25,12 + 510: 25,12 - node: zIndex: 180 color: '#FF00FFFF' id: clown decals: - 2880: 6.027291,42.00365 + 2814: 6.027291,42.00365 - node: color: '#9BC516FF' id: shop decals: - 549: -13,5 - 550: 11,5 + 533: -13,5 + 534: 11,5 - node: zIndex: 180 color: '#FFFF00FF' id: trade decals: - 2599: 2,38 + 2536: 2,38 type: DecalGrid - version: 2 data: @@ -4526,9 +4487,20 @@ entities: - type: RadiationGridResistance - id: Frontier type: BecomesStation + - type: StationTransit - type: ProtectedGrid - type: StationEmpImmune - type: SpreaderGrid +- proto: ActionToggleLight + entities: + - uid: 3135 + components: + - flags: InContainer + type: MetaData + - parent: 3134 + type: Transform + - container: 3134 + type: InstantAction - proto: AirAlarm entities: - uid: 1836 @@ -4588,14 +4560,6 @@ entities: - pos: -5.5,25.5 parent: 2173 type: Transform -- proto: AirlockArmoryGlassLocked - entities: - - uid: 2384 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,14.5 - parent: 2173 - type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - uid: 4082 @@ -4610,41 +4574,97 @@ entities: - pos: 37.5,23.5 parent: 2173 type: Transform + - links: + - 4959 + type: DeviceLinkSink + - linkedPorts: + 2566: + - DoorStatus: InputB + type: DeviceLinkSource - uid: 4120 components: - pos: 36.5,23.5 parent: 2173 type: Transform + - links: + - 4959 + type: DeviceLinkSink + - linkedPorts: + 2566: + - DoorStatus: InputA + type: DeviceLinkSource - uid: 4121 components: - pos: 37.5,20.5 parent: 2173 type: Transform + - links: + - 2566 + type: DeviceLinkSink + - linkedPorts: + 4959: + - DoorStatus: InputB + type: DeviceLinkSource - uid: 4122 components: - pos: 36.5,20.5 parent: 2173 type: Transform + - links: + - 2566 + type: DeviceLinkSink + - linkedPorts: + 4959: + - DoorStatus: InputA + type: DeviceLinkSource - uid: 5743 components: - pos: 43.5,10.5 parent: 2173 type: Transform + - links: + - 4971 + type: DeviceLinkSink + - linkedPorts: + 4113: + - DoorStatus: InputB + type: DeviceLinkSource - uid: 5812 components: - pos: 42.5,10.5 parent: 2173 type: Transform + - links: + - 4971 + type: DeviceLinkSink + - linkedPorts: + 4113: + - DoorStatus: InputA + type: DeviceLinkSource - uid: 5819 components: - pos: 43.5,7.5 parent: 2173 type: Transform + - links: + - 4113 + type: DeviceLinkSink + - linkedPorts: + 4971: + - DoorStatus: InputB + type: DeviceLinkSource - uid: 5847 components: - pos: 42.5,7.5 parent: 2173 type: Transform + - links: + - 4113 + type: DeviceLinkSink + - linkedPorts: + 4971: + - DoorStatus: InputA + type: DeviceLinkSource - proto: AirlockCargoGlass entities: - uid: 4110 @@ -4691,8 +4711,28 @@ entities: - pos: -40.5,7.5 parent: 2173 type: Transform +- proto: AirlockExternal + entities: + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 2173 + type: Transform - proto: AirlockExternalGlass entities: + - uid: 950 + components: + - rot: 3.141592653589793 rad + pos: -6.5,15.5 + parent: 2173 + type: Transform + - uid: 952 + components: + - rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 2173 + type: Transform - uid: 2582 components: - pos: 56.5,27.5 @@ -4960,6 +5000,44 @@ entities: - pos: -58.5,0.5 parent: 2173 type: Transform +- proto: AirlockExternalGlassShuttleTransit + entities: + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,15.5 + parent: 2173 + type: Transform + - uid: 532 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2173 + type: Transform + - uid: 935 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2173 + type: Transform + - uid: 936 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,16.5 + parent: 2173 + type: Transform +- proto: AirlockFrontierCommandGlassLocked + entities: + - uid: 2384 + components: + - pos: 35.5,14.5 + parent: 2173 + type: Transform + - uid: 2550 + components: + - pos: 7.5,17.5 + parent: 2173 + type: Transform - proto: AirlockFrontierGlassLocked entities: - uid: 3955 @@ -4996,18 +5074,6 @@ entities: type: Transform - proto: AirlockGlass entities: - - uid: 539 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 2173 - type: Transform - - uid: 962 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2173 - type: Transform - uid: 2800 components: - rot: -1.5707963267948966 rad @@ -5483,7 +5549,7 @@ entities: pos: 56.5,29.5 parent: 2173 type: Transform - - name: 5A + - name: 5B type: Docking - uid: 2589 components: @@ -5499,7 +5565,7 @@ entities: pos: 61.5,26.5 parent: 2173 type: Transform - - name: 5B + - name: 5A type: Docking - uid: 3919 components: @@ -5507,7 +5573,7 @@ entities: pos: 58.5,29.5 parent: 2173 type: Transform - - name: 5A + - name: 5B type: Docking - uid: 3920 components: @@ -5515,7 +5581,7 @@ entities: pos: 57.5,29.5 parent: 2173 type: Transform - - name: 5A + - name: 5B type: Docking - uid: 4051 components: @@ -5531,7 +5597,7 @@ entities: pos: 61.5,24.5 parent: 2173 type: Transform - - name: 5B + - name: 5A type: Docking - uid: 4983 components: @@ -5539,7 +5605,7 @@ entities: pos: 61.5,25.5 parent: 2173 type: Transform - - name: 5B + - name: 5A type: Docking - uid: 5801 components: @@ -5555,13 +5621,6 @@ entities: type: Transform - name: 2B type: Docking -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 4113 - components: - - pos: 7.5,17.5 - parent: 2173 - type: Transform - proto: AirlockJanitorLocked entities: - uid: 2754 @@ -5600,16 +5659,16 @@ entities: - pos: -19.5,11.5 parent: 2173 type: Transform - - uid: 2214 + - uid: 2597 components: - rot: 1.5707963267948966 rad - pos: -14.5,13.5 + pos: 48.5,21.5 parent: 2173 type: Transform - - uid: 2597 + - uid: 2637 components: - - rot: 1.5707963267948966 rad - pos: 48.5,21.5 + - rot: -1.5707963267948966 rad + pos: 29.5,19.5 parent: 2173 type: Transform - uid: 4126 @@ -5627,12 +5686,6 @@ entities: - pos: 52.5,4.5 parent: 2173 type: Transform - - uid: 4365 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 2173 - type: Transform - proto: AirlockMaintSecLocked entities: - uid: 2801 @@ -5811,12 +5864,6 @@ entities: - pos: -18.5,5.5 parent: 2173 type: Transform - - uid: 2870 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 2173 - type: Transform - uid: 2871 components: - pos: -49.5,16.5 @@ -5926,6 +5973,24 @@ entities: - pos: 24.5,-25.5 parent: 2173 type: Transform + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: -16.5,15.5 + parent: 2173 + type: Transform + - uid: 428 + components: + - rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 2173 + type: Transform + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2173 + type: Transform - uid: 698 components: - pos: -6.5,42.5 @@ -5976,6 +6041,12 @@ entities: - pos: 12.5,56.5 parent: 2173 type: Transform + - uid: 970 + components: + - rot: 3.141592653589793 rad + pos: -16.5,16.5 + parent: 2173 + type: Transform - uid: 1422 components: - pos: -57.5,-1.5 @@ -6183,13 +6254,6 @@ entities: pos: 50.5,10.5 parent: 2173 type: Transform -- proto: BarSignEngineChange - entities: - - uid: 2244 - components: - - pos: -10.5,19.5 - parent: 2173 - type: Transform - proto: Bed entities: - uid: 2572 @@ -6251,71 +6315,6 @@ entities: type: Physics - fixtures: {} type: Fixtures -- proto: BenchSofaCorpCorner - entities: - - uid: 5624 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 2173 - type: Transform - - canCollide: False - bodyType: Static - type: Physics - - fixtures: {} - type: Fixtures -- proto: BenchSofaCorpLeft - entities: - - uid: 2097 - components: - - pos: -16.5,12.5 - parent: 2173 - type: Transform - - bodyType: Static - type: Physics - - uid: 2103 - components: - - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 2173 - type: Transform - - bodyType: Static - type: Physics -- proto: BenchSofaCorpMiddle - entities: - - uid: 2144 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 2173 - type: Transform - - bodyType: Static - type: Physics - - uid: 5594 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,11.5 - parent: 2173 - type: Transform - - bodyType: Static - type: Physics -- proto: BenchSofaCorpRight - entities: - - uid: 2150 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,12.5 - parent: 2173 - type: Transform - - bodyType: Static - type: Physics - - uid: 2162 - components: - - pos: -17.5,12.5 - parent: 2173 - type: Transform - - bodyType: Static - type: Physics - proto: BenchSofaLeft entities: - uid: 2522 @@ -6953,10 +6952,10 @@ entities: type: DeviceLinkSink - proto: BlockGameArcade entities: - - uid: 6030 + - uid: 2101 components: - - rot: 1.5707963267948966 rad - pos: -11.5,16.5 + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 parent: 2173 type: Transform - proto: BodyBag_Folded @@ -6980,30 +6979,16 @@ entities: type: Transform - proto: BorgCharger entities: - - uid: 2161 - components: - - pos: -13.5,14.5 - parent: 2173 - type: Transform -- proto: BorgModuleFireExtinguisher - entities: - - uid: 2151 - components: - - pos: -13.400288,15.315136 - parent: 2173 - type: Transform -- proto: BorgModuleGPS - entities: - - uid: 2215 + - uid: 530 components: - - pos: -13.61433,15.647942 + - rot: 3.141592653589793 rad + pos: -20.5,13.5 parent: 2173 type: Transform -- proto: BorgModuleRadiationDetection - entities: - - uid: 2218 + - uid: 1536 components: - - pos: -13.638113,15.50531 + - rot: -1.5707963267948966 rad + pos: 53.5,15.5 parent: 2173 type: Transform - proto: BoxBodyBag @@ -7039,6 +7024,11 @@ entities: - pos: 0.6921819,4.9265394 parent: 2173 type: Transform + - uid: 6047 + components: + - pos: 12.441788,13.714111 + parent: 2173 + type: Transform - proto: BoxFolderGrey entities: - uid: 2235 @@ -7046,6 +7036,13 @@ entities: - pos: -49.52271,7.3101997 parent: 2173 type: Transform +- proto: BoxFolderRed + entities: + - uid: 6048 + components: + - pos: 12.75118,13.469055 + parent: 2173 + type: Transform - proto: BoxFolderWhite entities: - uid: 2232 @@ -7060,9 +7057,9 @@ entities: type: Transform - proto: BoxForensicPad entities: - - uid: 2857 + - uid: 5863 components: - - pos: 33.099438,18.766659 + - pos: 32.18598,18.718346 parent: 2173 type: Transform - proto: BoxNitrileGloves @@ -7093,14 +7090,6 @@ entities: - pos: 5.3096757,22.51846 parent: 2173 type: Transform -- proto: BrokenBottle - entities: - - uid: 5456 - components: - - rot: -1.5707963267948966 rad - pos: -15.168318,17.88782 - parent: 2173 - type: Transform - proto: Bucket entities: - uid: 4188 @@ -7110,6 +7099,26 @@ entities: type: Transform - proto: CableApcExtension entities: + - uid: 355 + components: + - pos: -18.5,14.5 + parent: 2173 + type: Transform + - uid: 368 + components: + - pos: -18.5,16.5 + parent: 2173 + type: Transform + - uid: 375 + components: + - pos: -17.5,16.5 + parent: 2173 + type: Transform + - uid: 431 + components: + - pos: -18.5,15.5 + parent: 2173 + type: Transform - uid: 471 components: - pos: 9.5,26.5 @@ -7170,6 +7179,11 @@ entities: - pos: 38.5,24.5 parent: 2173 type: Transform + - uid: 568 + components: + - pos: 32.5,17.5 + parent: 2173 + type: Transform - uid: 581 components: - pos: 16.5,24.5 @@ -7470,6 +7484,36 @@ entities: - pos: 3.5,27.5 parent: 2173 type: Transform + - uid: 829 + components: + - pos: 42.5,7.5 + parent: 2173 + type: Transform + - uid: 937 + components: + - pos: -19.5,11.5 + parent: 2173 + type: Transform + - uid: 965 + components: + - pos: -18.5,11.5 + parent: 2173 + type: Transform + - uid: 966 + components: + - pos: -18.5,12.5 + parent: 2173 + type: Transform + - uid: 967 + components: + - pos: -18.5,13.5 + parent: 2173 + type: Transform + - uid: 969 + components: + - pos: -20.5,11.5 + parent: 2173 + type: Transform - uid: 1194 components: - pos: 8.5,26.5 @@ -8590,6 +8634,16 @@ entities: - pos: -0.5,30.5 parent: 2173 type: Transform + - uid: 2097 + components: + - pos: -6.5,15.5 + parent: 2173 + type: Transform + - uid: 2098 + components: + - pos: -7.5,15.5 + parent: 2173 + type: Transform - uid: 2158 components: - pos: 4.5,25.5 @@ -8720,11 +8774,31 @@ entities: - pos: 9.5,19.5 parent: 2173 type: Transform + - uid: 2857 + components: + - pos: 50.5,10.5 + parent: 2173 + type: Transform + - uid: 2858 + components: + - pos: 50.5,13.5 + parent: 2173 + type: Transform - uid: 3031 components: - pos: 30.5,23.5 parent: 2173 type: Transform + - uid: 3052 + components: + - pos: 50.5,12.5 + parent: 2173 + type: Transform + - uid: 3121 + components: + - pos: 50.5,11.5 + parent: 2173 + type: Transform - uid: 3143 components: - pos: 31.5,24.5 @@ -11415,21 +11489,6 @@ entities: - pos: 48.5,18.5 parent: 2173 type: Transform - - uid: 3715 - components: - - pos: 49.5,18.5 - parent: 2173 - type: Transform - - uid: 3716 - components: - - pos: 50.5,18.5 - parent: 2173 - type: Transform - - uid: 3717 - components: - - pos: 51.5,18.5 - parent: 2173 - type: Transform - uid: 3718 components: - pos: 51.5,13.5 @@ -11835,24 +11894,9 @@ entities: - pos: 42.5,8.5 parent: 2173 type: Transform - - uid: 3807 - components: - - pos: 43.5,8.5 - parent: 2173 - type: Transform - - uid: 3808 - components: - - pos: 43.5,9.5 - parent: 2173 - type: Transform - uid: 3809 components: - - pos: 43.5,10.5 - parent: 2173 - type: Transform - - uid: 3810 - components: - - pos: 43.5,11.5 + - pos: 31.5,11.5 parent: 2173 type: Transform - uid: 3811 @@ -12152,7 +12196,7 @@ entities: type: Transform - uid: 3870 components: - - pos: 27.5,15.5 + - pos: 28.5,16.5 parent: 2173 type: Transform - uid: 3871 @@ -12420,11 +12464,6 @@ entities: - pos: 5.5,21.5 parent: 2173 type: Transform - - uid: 3943 - components: - - pos: 5.5,20.5 - parent: 2173 - type: Transform - uid: 3944 components: - pos: 4.5,21.5 @@ -12910,286 +12949,6 @@ entities: - pos: 40.5,26.5 parent: 2173 type: Transform - - uid: 4386 - components: - - pos: -8.5,13.5 - parent: 2173 - type: Transform - - uid: 4387 - components: - - pos: -9.5,13.5 - parent: 2173 - type: Transform - - uid: 4388 - components: - - pos: -9.5,12.5 - parent: 2173 - type: Transform - - uid: 4389 - components: - - pos: -9.5,11.5 - parent: 2173 - type: Transform - - uid: 4390 - components: - - pos: -9.5,10.5 - parent: 2173 - type: Transform - - uid: 4391 - components: - - pos: -10.5,10.5 - parent: 2173 - type: Transform - - uid: 4392 - components: - - pos: -11.5,10.5 - parent: 2173 - type: Transform - - uid: 4393 - components: - - pos: -12.5,10.5 - parent: 2173 - type: Transform - - uid: 4394 - components: - - pos: -13.5,10.5 - parent: 2173 - type: Transform - - uid: 4395 - components: - - pos: -14.5,10.5 - parent: 2173 - type: Transform - - uid: 4396 - components: - - pos: -15.5,10.5 - parent: 2173 - type: Transform - - uid: 4397 - components: - - pos: -16.5,10.5 - parent: 2173 - type: Transform - - uid: 4398 - components: - - pos: -17.5,10.5 - parent: 2173 - type: Transform - - uid: 4399 - components: - - pos: -18.5,10.5 - parent: 2173 - type: Transform - - uid: 4400 - components: - - pos: -18.5,11.5 - parent: 2173 - type: Transform - - uid: 4401 - components: - - pos: -18.5,12.5 - parent: 2173 - type: Transform - - uid: 4402 - components: - - pos: -18.5,13.5 - parent: 2173 - type: Transform - - uid: 4403 - components: - - pos: -18.5,14.5 - parent: 2173 - type: Transform - - uid: 4404 - components: - - pos: -18.5,15.5 - parent: 2173 - type: Transform - - uid: 4405 - components: - - pos: -18.5,16.5 - parent: 2173 - type: Transform - - uid: 4406 - components: - - pos: -18.5,17.5 - parent: 2173 - type: Transform - - uid: 4407 - components: - - pos: -18.5,18.5 - parent: 2173 - type: Transform - - uid: 4408 - components: - - pos: -17.5,18.5 - parent: 2173 - type: Transform - - uid: 4409 - components: - - pos: -16.5,18.5 - parent: 2173 - type: Transform - - uid: 4410 - components: - - pos: -15.5,18.5 - parent: 2173 - type: Transform - - uid: 4411 - components: - - pos: -14.5,18.5 - parent: 2173 - type: Transform - - uid: 4412 - components: - - pos: -13.5,18.5 - parent: 2173 - type: Transform - - uid: 4413 - components: - - pos: -12.5,18.5 - parent: 2173 - type: Transform - - uid: 4414 - components: - - pos: -11.5,18.5 - parent: 2173 - type: Transform - - uid: 4415 - components: - - pos: -10.5,18.5 - parent: 2173 - type: Transform - - uid: 4416 - components: - - pos: -9.5,18.5 - parent: 2173 - type: Transform - - uid: 4417 - components: - - pos: -8.5,18.5 - parent: 2173 - type: Transform - - uid: 4418 - components: - - pos: -7.5,18.5 - parent: 2173 - type: Transform - - uid: 4419 - components: - - pos: -7.5,17.5 - parent: 2173 - type: Transform - - uid: 4420 - components: - - pos: -7.5,16.5 - parent: 2173 - type: Transform - - uid: 4421 - components: - - pos: -7.5,15.5 - parent: 2173 - type: Transform - - uid: 4422 - components: - - pos: -8.5,15.5 - parent: 2173 - type: Transform - - uid: 4423 - components: - - pos: -9.5,15.5 - parent: 2173 - type: Transform - - uid: 4424 - components: - - pos: -9.5,14.5 - parent: 2173 - type: Transform - - uid: 4425 - components: - - pos: -10.5,13.5 - parent: 2173 - type: Transform - - uid: 4426 - components: - - pos: -11.5,13.5 - parent: 2173 - type: Transform - - uid: 4427 - components: - - pos: -12.5,13.5 - parent: 2173 - type: Transform - - uid: 4428 - components: - - pos: -13.5,13.5 - parent: 2173 - type: Transform - - uid: 4429 - components: - - pos: -14.5,13.5 - parent: 2173 - type: Transform - - uid: 4430 - components: - - pos: -15.5,13.5 - parent: 2173 - type: Transform - - uid: 4431 - components: - - pos: -16.5,13.5 - parent: 2173 - type: Transform - - uid: 4432 - components: - - pos: -17.5,13.5 - parent: 2173 - type: Transform - - uid: 4433 - components: - - pos: -13.5,14.5 - parent: 2173 - type: Transform - - uid: 4434 - components: - - pos: -13.5,15.5 - parent: 2173 - type: Transform - - uid: 4435 - components: - - pos: -13.5,16.5 - parent: 2173 - type: Transform - - uid: 4436 - components: - - pos: -13.5,17.5 - parent: 2173 - type: Transform - - uid: 4437 - components: - - pos: -13.5,12.5 - parent: 2173 - type: Transform - - uid: 4438 - components: - - pos: -13.5,11.5 - parent: 2173 - type: Transform - - uid: 4439 - components: - - pos: -10.5,17.5 - parent: 2173 - type: Transform - - uid: 4440 - components: - - pos: -10.5,16.5 - parent: 2173 - type: Transform - - uid: 4441 - components: - - pos: -10.5,15.5 - parent: 2173 - type: Transform - uid: 4491 components: - pos: 48.5,7.5 @@ -13225,11 +12984,6 @@ entities: - pos: 42.5,25.5 parent: 2173 type: Transform - - uid: 5859 - components: - - pos: 29.5,15.5 - parent: 2173 - type: Transform - uid: 5860 components: - pos: 29.5,16.5 @@ -13240,24 +12994,14 @@ entities: - pos: 29.5,17.5 parent: 2173 type: Transform - - uid: 5862 - components: - - pos: 30.5,17.5 - parent: 2173 - type: Transform - - uid: 5863 - components: - - pos: 30.5,18.5 - parent: 2173 - type: Transform - uid: 5864 components: - - pos: 30.5,19.5 + - pos: 29.5,19.5 parent: 2173 type: Transform - uid: 5865 components: - - pos: 30.5,20.5 + - pos: 29.5,18.5 parent: 2173 type: Transform - uid: 5866 @@ -13330,6 +13074,11 @@ entities: - pos: 34.5,21.5 parent: 2173 type: Transform + - uid: 6052 + components: + - pos: 29.5,20.5 + parent: 2173 + type: Transform - proto: CableHV entities: - uid: 1599 @@ -14072,11 +13821,6 @@ entities: - pos: 28.5,15.5 parent: 2173 type: Transform - - uid: 1809 - components: - - pos: 27.5,15.5 - parent: 2173 - type: Transform - uid: 1810 components: - pos: 27.5,16.5 @@ -14327,6 +14071,11 @@ entities: - pos: -3.5,40.5 parent: 2173 type: Transform + - uid: 3716 + components: + - pos: 28.5,16.5 + parent: 2173 + type: Transform - uid: 5803 components: - pos: -3.5,41.5 @@ -14334,11 +14083,41 @@ entities: type: Transform - proto: CableMV entities: + - uid: 658 + components: + - pos: 33.5,15.5 + parent: 2173 + type: Transform + - uid: 659 + components: + - pos: 33.5,16.5 + parent: 2173 + type: Transform + - uid: 660 + components: + - pos: 33.5,17.5 + parent: 2173 + type: Transform - uid: 669 components: - pos: 9.5,24.5 parent: 2173 type: Transform + - uid: 1468 + components: + - pos: 4.5,24.5 + parent: 2173 + type: Transform + - uid: 1477 + components: + - pos: 4.5,25.5 + parent: 2173 + type: Transform + - uid: 1535 + components: + - pos: 4.5,23.5 + parent: 2173 + type: Transform - uid: 1672 components: - pos: -25.5,14.5 @@ -15129,71 +14908,6 @@ entities: - pos: -19.5,11.5 parent: 2173 type: Transform - - uid: 2976 - components: - - pos: -18.5,11.5 - parent: 2173 - type: Transform - - uid: 2977 - components: - - pos: -17.5,11.5 - parent: 2173 - type: Transform - - uid: 2978 - components: - - pos: -16.5,11.5 - parent: 2173 - type: Transform - - uid: 2979 - components: - - pos: -15.5,11.5 - parent: 2173 - type: Transform - - uid: 2980 - components: - - pos: -14.5,11.5 - parent: 2173 - type: Transform - - uid: 2981 - components: - - pos: -13.5,11.5 - parent: 2173 - type: Transform - - uid: 2982 - components: - - pos: -12.5,11.5 - parent: 2173 - type: Transform - - uid: 2983 - components: - - pos: -11.5,11.5 - parent: 2173 - type: Transform - - uid: 2984 - components: - - pos: -10.5,11.5 - parent: 2173 - type: Transform - - uid: 2985 - components: - - pos: -9.5,11.5 - parent: 2173 - type: Transform - - uid: 2986 - components: - - pos: -9.5,12.5 - parent: 2173 - type: Transform - - uid: 2987 - components: - - pos: -9.5,13.5 - parent: 2173 - type: Transform - - uid: 2988 - components: - - pos: -8.5,13.5 - parent: 2173 - type: Transform - uid: 2989 components: - pos: -28.5,4.5 @@ -15254,41 +14968,6 @@ entities: - pos: -18.5,5.5 parent: 2173 type: Transform - - uid: 3001 - components: - - pos: -9.5,14.5 - parent: 2173 - type: Transform - - uid: 3002 - components: - - pos: -9.5,15.5 - parent: 2173 - type: Transform - - uid: 3003 - components: - - pos: -9.5,16.5 - parent: 2173 - type: Transform - - uid: 3004 - components: - - pos: -8.5,16.5 - parent: 2173 - type: Transform - - uid: 3005 - components: - - pos: -7.5,16.5 - parent: 2173 - type: Transform - - uid: 3006 - components: - - pos: -6.5,16.5 - parent: 2173 - type: Transform - - uid: 3007 - components: - - pos: -5.5,16.5 - parent: 2173 - type: Transform - uid: 3008 components: - pos: -4.5,16.5 @@ -15494,11 +15173,6 @@ entities: - pos: 27.5,16.5 parent: 2173 type: Transform - - uid: 3052 - components: - - pos: 27.5,15.5 - parent: 2173 - type: Transform - uid: 3053 components: - pos: 28.5,15.5 @@ -15839,21 +15513,6 @@ entities: - pos: 33.5,14.5 parent: 2173 type: Transform - - uid: 3121 - components: - - pos: 34.5,14.5 - parent: 2173 - type: Transform - - uid: 3122 - components: - - pos: 34.5,15.5 - parent: 2173 - type: Transform - - uid: 3123 - components: - - pos: 34.5,16.5 - parent: 2173 - type: Transform - uid: 3124 components: - pos: 34.5,17.5 @@ -15899,21 +15558,6 @@ entities: - pos: 40.5,19.5 parent: 2173 type: Transform - - uid: 3133 - components: - - pos: 37.5,18.5 - parent: 2173 - type: Transform - - uid: 3134 - components: - - pos: 37.5,19.5 - parent: 2173 - type: Transform - - uid: 3135 - components: - - pos: 37.5,20.5 - parent: 2173 - type: Transform - uid: 3157 components: - pos: 28.5,2.5 @@ -16019,6 +15663,11 @@ entities: - pos: 30.5,-15.5 parent: 2173 type: Transform + - uid: 3808 + components: + - pos: 28.5,16.5 + parent: 2173 + type: Transform - uid: 3939 components: - pos: 10.5,18.5 @@ -16223,6 +15872,12 @@ entities: type: ContainerContainer - proto: Catwalk entities: + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: -18.5,11.5 + parent: 2173 + type: Transform - uid: 740 components: - rot: -1.5707963267948966 rad @@ -16343,6 +15998,30 @@ entities: pos: 3.5,42.5 parent: 2173 type: Transform + - uid: 938 + components: + - rot: 3.141592653589793 rad + pos: -18.5,12.5 + parent: 2173 + type: Transform + - uid: 942 + components: + - rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 2173 + type: Transform + - uid: 1201 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2173 + type: Transform + - uid: 1809 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2173 + type: Transform - uid: 2470 components: - pos: 28.5,7.5 @@ -16703,20 +16382,20 @@ entities: - pos: -47.5,7.5 parent: 2173 type: Transform - - uid: 2636 + - uid: 2609 components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 + - pos: -32.472733,7.011403 parent: 2173 type: Transform - uid: 2671 components: - - pos: -31.5,6.5 + - pos: -31.462313,7.0218196 parent: 2173 type: Transform - - uid: 2672 + - uid: 3133 components: - - pos: -32.5,6.5 + - rot: -1.5707963267948966 rad + pos: 32.5,17.5 parent: 2173 type: Transform - uid: 4452 @@ -16751,13 +16430,6 @@ entities: - pos: -49.5,15.5 parent: 2173 type: Transform -- proto: CigPackRed - entities: - - uid: 2223 - components: - - pos: -8.392379,18.679638 - parent: 2173 - type: Transform - proto: CloningPod entities: - uid: 1474 @@ -16772,11 +16444,34 @@ entities: - pos: 47.5,13.5 parent: 2173 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: ClosetEmergencyFilledRandom entities: - - uid: 2787 + - uid: 943 components: - - pos: 29.5,13.5 + - pos: -18.5,10.5 + parent: 2173 + type: Transform + - uid: 2631 + components: + - pos: 24.5,18.5 parent: 2173 type: Transform - uid: 2789 @@ -16810,6 +16505,13 @@ entities: - pos: 27.5,7.5 parent: 2173 type: Transform +- proto: ClosetToolFilled + entities: + - uid: 951 + components: + - pos: -20.5,12.5 + parent: 2173 + type: Transform - proto: ClothingEyesGlasses entities: - uid: 2231 @@ -16838,13 +16540,6 @@ entities: - pos: 22.458832,16.67461 parent: 2173 type: Transform -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 6022 - components: - - pos: -15.379803,15.595522 - parent: 2173 - type: Transform - proto: ClothingNeckStethoscope entities: - uid: 2437 @@ -16859,13 +16554,6 @@ entities: - pos: -44.616962,7.589852 parent: 2173 type: Transform -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 2565 - components: - - pos: 30.590927,7.5639086 - parent: 2173 - type: Transform - proto: ClothingUniformJumpskirtParamedic entities: - uid: 2448 @@ -16887,11 +16575,6 @@ entities: - pos: 14.5,5.5 parent: 2173 type: Transform - - uid: 2221 - components: - - pos: -9.5,18.5 - parent: 2173 - type: Transform - uid: 2408 components: - pos: 8.5,6.5 @@ -17058,16 +16741,15 @@ entities: type: Transform - proto: ComputerCriminalRecords entities: - - uid: 2367 + - uid: 2623 components: - - rot: -1.5707963267948966 rad - pos: 38.5,13.5 + - pos: 43.5,13.5 parent: 2173 type: Transform - - uid: 2634 + - uid: 2636 components: - rot: 1.5707963267948966 rad - pos: 32.5,16.5 + pos: 31.5,16.5 parent: 2173 type: Transform - uid: 2831 @@ -17078,6 +16760,12 @@ entities: type: Transform - proto: ComputerId entities: + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2173 + type: Transform - uid: 2654 components: - rot: -1.5707963267948966 rad @@ -17137,12 +16825,6 @@ entities: pos: 48.5,11.5 parent: 2173 type: Transform - - uid: 2368 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 2173 - type: Transform - uid: 2421 components: - pos: -54.5,4.5 @@ -17237,11 +16919,30 @@ entities: occludes: True ents: [] type: ContainerContainer +- proto: ComputerShipyardScrap + entities: + - uid: 3807 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,9.5 + parent: 2173 + type: Transform + - containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - proto: ComputerShipyardSecurity entities: - - uid: 5742 + - uid: 5581 components: - - pos: 43.5,13.5 + - rot: 1.5707963267948966 rad + pos: 45.5,11.5 parent: 2173 type: Transform - containers: @@ -17266,10 +16967,10 @@ entities: type: RadarConsole - proto: ComputerStationRecords entities: - - uid: 2633 + - uid: 2634 components: - rot: 1.5707963267948966 rad - pos: 32.5,17.5 + pos: 31.5,17.5 parent: 2173 type: Transform - uid: 2837 @@ -17307,6 +17008,21 @@ entities: type: Transform - proto: ComputerWallmountBankATM entities: + - uid: 2823 + components: + - pos: 39.5,12.5 + parent: 2173 + type: Transform + - containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - uid: 6007 components: - rot: 1.5707963267948966 rad @@ -17661,38 +17377,22 @@ entities: - links: - 2737 type: DeviceLinkSink -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 2140 + - uid: 6083 components: - - pos: -3.5,24.5 + - rot: 1.5707963267948966 rad + pos: 52.5,18.5 parent: 2173 type: Transform -- proto: Crematorium + - links: + - 6145 + type: DeviceLinkSink +- proto: CrateServiceJanitorialSupplies entities: - - uid: 1468 + - uid: 2140 components: - - pos: -44.5,18.5 + - pos: -3.5,24.5 parent: 2173 type: Transform - - air: - volume: 200 - immutable: False - temperature: 99.138466 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrewMonitoringServer entities: - uid: 2517 @@ -17750,6 +17450,11 @@ entities: type: Transform - proto: DeployableBarrier entities: + - uid: 2672 + components: + - pos: 34.5,18.5 + parent: 2173 + type: Transform - uid: 4262 components: - pos: 35.5,19.5 @@ -17757,6 +17462,12 @@ entities: type: Transform - proto: DisposalBend entities: + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 2173 + type: Transform - uid: 5352 components: - rot: 1.5707963267948966 rad @@ -17797,22 +17508,9 @@ entities: - pos: 3.5,16.5 parent: 2173 type: Transform - - uid: 5460 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 2173 - type: Transform - - uid: 5461 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 2173 - type: Transform - - uid: 5462 + - uid: 5457 components: - - rot: 1.5707963267948966 rad - pos: -18.5,11.5 + - pos: 48.5,24.5 parent: 2173 type: Transform - uid: 5525 @@ -17838,8 +17536,36 @@ entities: - pos: -45.5,14.5 parent: 2173 type: Transform + - uid: 6041 + components: + - rot: 3.141592653589793 rad + pos: 48.5,16.5 + parent: 2173 + type: Transform + - uid: 6082 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 2173 + type: Transform + - uid: 6089 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,36.5 + parent: 2173 + type: Transform + - uid: 6142 + components: + - pos: 17.5,15.5 + parent: 2173 + type: Transform - proto: DisposalJunction entities: + - uid: 4413 + components: + - pos: 48.5,22.5 + parent: 2173 + type: Transform - uid: 5520 components: - rot: 1.5707963267948966 rad @@ -17848,10 +17574,16 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 2145 + - uid: 4290 + components: + - rot: 3.141592653589793 rad + pos: 52.5,16.5 + parent: 2173 + type: Transform + - uid: 4415 components: - rot: 1.5707963267948966 rad - pos: -11.5,16.5 + pos: -0.5,16.5 parent: 2173 type: Transform - uid: 5355 @@ -17903,6 +17635,11 @@ entities: type: Transform - proto: DisposalPipe entities: + - uid: 2095 + components: + - pos: -5.5,17.5 + parent: 2173 + type: Transform - uid: 2501 components: - rot: 3.141592653589793 rad @@ -17997,12 +17734,6 @@ entities: pos: 52.5,15.5 parent: 2173 type: Transform - - uid: 5374 - components: - - rot: 3.141592653589793 rad - pos: 52.5,16.5 - parent: 2173 - type: Transform - uid: 5375 components: - rot: 3.141592653589793 rad @@ -18358,12 +18089,6 @@ entities: pos: 0.5,16.5 parent: 2173 type: Transform - - uid: 5445 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 2173 - type: Transform - uid: 5446 components: - rot: -1.5707963267948966 rad @@ -18388,90 +18113,51 @@ entities: pos: -4.5,16.5 parent: 2173 type: Transform - - uid: 5450 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 2173 - type: Transform - - uid: 5451 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,16.5 - parent: 2173 - type: Transform - - uid: 5452 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,16.5 - parent: 2173 - type: Transform - - uid: 5453 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,16.5 - parent: 2173 - type: Transform - - uid: 5454 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 2173 - type: Transform - - uid: 5455 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,16.5 - parent: 2173 - type: Transform - - uid: 5457 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,16.5 - parent: 2173 - type: Transform - uid: 5458 components: - - rot: -1.5707963267948966 rad - pos: -13.5,16.5 + - pos: 48.5,23.5 parent: 2173 type: Transform - uid: 5459 components: - rot: -1.5707963267948966 rad - pos: -14.5,16.5 + pos: 47.5,24.5 parent: 2173 type: Transform - - uid: 5464 + - uid: 5460 components: - - rot: 1.5707963267948966 rad - pos: -17.5,11.5 + - rot: -1.5707963267948966 rad + pos: 46.5,24.5 parent: 2173 type: Transform - - uid: 5465 + - uid: 5461 components: - - rot: 1.5707963267948966 rad - pos: -16.5,11.5 + - rot: -1.5707963267948966 rad + pos: 45.5,24.5 parent: 2173 type: Transform - uid: 5466 components: - - pos: -15.5,12.5 + - rot: -1.5707963267948966 rad + pos: 44.5,24.5 parent: 2173 type: Transform - uid: 5467 components: - - pos: -15.5,13.5 + - rot: -1.5707963267948966 rad + pos: 43.5,24.5 parent: 2173 type: Transform - uid: 5468 components: - - pos: -15.5,14.5 + - rot: -1.5707963267948966 rad + pos: 42.5,24.5 parent: 2173 type: Transform - uid: 5469 components: - - pos: -15.5,15.5 + - rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2173 type: Transform - uid: 5470 @@ -18972,13 +18658,481 @@ entities: pos: -46.5,14.5 parent: 2173 type: Transform - - uid: 6027 + - uid: 6011 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,22.5 + parent: 2173 + type: Transform + - uid: 6031 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2173 + type: Transform + - uid: 6032 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 2173 + type: Transform + - uid: 6033 + components: + - pos: 48.5,21.5 + parent: 2173 + type: Transform + - uid: 6034 + components: + - pos: 48.5,20.5 + parent: 2173 + type: Transform + - uid: 6035 + components: + - pos: 48.5,19.5 + parent: 2173 + type: Transform + - uid: 6036 + components: + - pos: 48.5,18.5 + parent: 2173 + type: Transform + - uid: 6037 + components: + - pos: 48.5,17.5 + parent: 2173 + type: Transform + - uid: 6038 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2173 + type: Transform + - uid: 6039 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2173 + type: Transform + - uid: 6040 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2173 + type: Transform + - uid: 6042 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2173 + type: Transform + - uid: 6053 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,24.5 + parent: 2173 + type: Transform + - uid: 6054 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2173 + type: Transform + - uid: 6055 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2173 + type: Transform + - uid: 6056 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,24.5 + parent: 2173 + type: Transform + - uid: 6057 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,24.5 + parent: 2173 + type: Transform + - uid: 6058 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,24.5 + parent: 2173 + type: Transform + - uid: 6059 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,24.5 + parent: 2173 + type: Transform + - uid: 6060 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,24.5 + parent: 2173 + type: Transform + - uid: 6061 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2173 + type: Transform + - uid: 6062 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2173 + type: Transform + - uid: 6063 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2173 + type: Transform + - uid: 6064 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2173 + type: Transform + - uid: 6065 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2173 + type: Transform + - uid: 6066 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2173 + type: Transform + - uid: 6067 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,24.5 + parent: 2173 + type: Transform + - uid: 6068 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2173 + type: Transform + - uid: 6069 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2173 + type: Transform + - uid: 6070 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 2173 + type: Transform + - uid: 6071 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,24.5 + parent: 2173 + type: Transform + - uid: 6072 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 2173 + type: Transform + - uid: 6073 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2173 + type: Transform + - uid: 6074 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 2173 + type: Transform + - uid: 6075 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,24.5 + parent: 2173 + type: Transform + - uid: 6076 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2173 + type: Transform + - uid: 6077 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2173 + type: Transform + - uid: 6078 components: - - pos: -11.5,17.5 + - rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2173 + type: Transform + - uid: 6079 + components: + - rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2173 + type: Transform + - uid: 6080 + components: + - rot: 3.141592653589793 rad + pos: 13.5,22.5 + parent: 2173 + type: Transform + - uid: 6081 + components: + - rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2173 + type: Transform + - uid: 6085 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,36.5 + parent: 2173 + type: Transform + - uid: 6086 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,36.5 + parent: 2173 + type: Transform + - uid: 6087 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,36.5 + parent: 2173 + type: Transform + - uid: 6088 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,36.5 + parent: 2173 + type: Transform + - uid: 6090 + components: + - pos: -0.5,35.5 + parent: 2173 + type: Transform + - uid: 6091 + components: + - pos: -0.5,34.5 + parent: 2173 + type: Transform + - uid: 6092 + components: + - pos: -0.5,33.5 + parent: 2173 + type: Transform + - uid: 6093 + components: + - pos: -0.5,32.5 + parent: 2173 + type: Transform + - uid: 6094 + components: + - pos: -0.5,31.5 + parent: 2173 + type: Transform + - uid: 6095 + components: + - pos: -0.5,30.5 + parent: 2173 + type: Transform + - uid: 6096 + components: + - pos: -0.5,29.5 + parent: 2173 + type: Transform + - uid: 6097 + components: + - pos: -0.5,28.5 + parent: 2173 + type: Transform + - uid: 6098 + components: + - pos: -0.5,27.5 + parent: 2173 + type: Transform + - uid: 6099 + components: + - pos: -0.5,26.5 + parent: 2173 + type: Transform + - uid: 6100 + components: + - pos: -0.5,25.5 + parent: 2173 + type: Transform + - uid: 6101 + components: + - pos: -0.5,24.5 + parent: 2173 + type: Transform + - uid: 6102 + components: + - pos: -0.5,23.5 + parent: 2173 + type: Transform + - uid: 6103 + components: + - pos: -0.5,22.5 + parent: 2173 + type: Transform + - uid: 6104 + components: + - pos: -0.5,21.5 + parent: 2173 + type: Transform + - uid: 6105 + components: + - pos: -0.5,20.5 + parent: 2173 + type: Transform + - uid: 6106 + components: + - pos: -0.5,19.5 + parent: 2173 + type: Transform + - uid: 6107 + components: + - pos: -0.5,18.5 + parent: 2173 + type: Transform + - uid: 6108 + components: + - pos: -0.5,17.5 + parent: 2173 + type: Transform + - uid: 6125 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2173 + type: Transform + - uid: 6126 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2173 + type: Transform + - uid: 6127 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2173 + type: Transform + - uid: 6128 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2173 + type: Transform + - uid: 6129 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2173 + type: Transform + - uid: 6130 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2173 + type: Transform + - uid: 6131 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 2173 + type: Transform + - uid: 6132 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2173 + type: Transform + - uid: 6133 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2173 + type: Transform + - uid: 6134 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2173 + type: Transform + - uid: 6135 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2173 + type: Transform + - uid: 6136 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2173 + type: Transform + - uid: 6137 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2173 + type: Transform + - uid: 6138 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2173 + type: Transform + - uid: 6139 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2173 + type: Transform + - uid: 6140 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2173 + type: Transform + - uid: 6141 + components: + - rot: 3.141592653589793 rad + pos: 17.5,11.5 parent: 2173 type: Transform - proto: DisposalTrunk entities: + - uid: 430 + components: + - pos: -5.5,18.5 + parent: 2173 + type: Transform + - uid: 4433 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,36.5 + parent: 2173 + type: Transform - uid: 5351 components: - rot: -1.5707963267948966 rad @@ -19000,10 +19154,10 @@ entities: - pos: 5.5,6.5 parent: 2173 type: Transform - - uid: 5463 + - uid: 5455 components: - rot: 3.141592653589793 rad - pos: -18.5,10.5 + pos: 13.5,20.5 parent: 2173 type: Transform - uid: 5526 @@ -19034,9 +19188,16 @@ entities: pos: -45.5,13.5 parent: 2173 type: Transform - - uid: 6026 + - uid: 6010 components: - - pos: -11.5,18.5 + - rot: 1.5707963267948966 rad + pos: 44.5,22.5 + parent: 2173 + type: Transform + - uid: 6143 + components: + - rot: 3.141592653589793 rad + pos: 17.5,10.5 parent: 2173 type: Transform - proto: DisposalUnit @@ -19046,9 +19207,9 @@ entities: - pos: -45.5,13.5 parent: 2173 type: Transform - - uid: 2236 + - uid: 1537 components: - - pos: -18.5,10.5 + - pos: -5.5,18.5 parent: 2173 type: Transform - uid: 2401 @@ -19091,23 +19252,23 @@ entities: - pos: 17.5,10.5 parent: 2173 type: Transform - - uid: 5810 + - uid: 4426 components: - - pos: 44.5,22.5 + - pos: 4.5,36.5 parent: 2173 type: Transform - - uid: 6025 + - uid: 5445 components: - - pos: -11.5,18.5 + - pos: 13.5,20.5 parent: 2173 type: Transform -- proto: DogBed - entities: - - uid: 2609 + - uid: 5810 components: - - pos: 3.5,21.5 + - pos: 44.5,22.5 parent: 2173 type: Transform +- proto: DogBed + entities: - uid: 5017 components: - pos: 9.5,20.5 @@ -19127,13 +19288,25 @@ entities: - pos: 20.639734,10.901373 parent: 2173 type: Transform -- proto: EmergencyLight +- proto: DrinkWaterCup entities: - - uid: 2155 + - uid: 6029 components: - - pos: -8.5,18.5 + - pos: 8.3031645,13.530552 parent: 2173 type: Transform + - uid: 6146 + components: + - pos: 8.510882,13.686802 + parent: 2173 + type: Transform + - uid: 6147 + components: + - pos: 8.698382,13.488884 + parent: 2173 + type: Transform +- proto: EmergencyLight + entities: - uid: 4324 components: - pos: 54.5,3.5 @@ -19447,9 +19620,25 @@ entities: - pos: 6.5,23.5 parent: 2173 type: Transform + - name: Frontier Outpost SR + type: FaxMachine + - uid: 5742 + components: + - pos: 48.5,13.5 + parent: 2173 + type: Transform + - name: Frontier Outpost NFSD + type: FaxMachine + - uid: 5746 + components: + - pos: 13.5,16.5 + parent: 2173 + type: Transform + - name: Frontier Outpost STC + type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 4290 + - uid: 6049 components: - pos: 22.5,9.5 parent: 2173 @@ -19645,25 +19834,6 @@ entities: - 2338 - 2339 type: DeviceList - - uid: 5581 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,12.5 - parent: 2173 - type: Transform - - devices: - - 2345 - - 2346 - - 2343 - - 2344 - - 2349 - - 2351 - - 2350 - - 2352 - - 2353 - - 2354 - - 2355 - type: DeviceList - uid: 5583 components: - pos: 13.5,17.5 @@ -19803,19 +19973,41 @@ entities: - 2320 - 2319 type: DeviceList - - uid: 5592 + - uid: 6050 components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 + - rot: 1.5707963267948966 rad + pos: 39.5,16.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 2345 + - 2346 + - 2343 + - 2344 + - 2349 + - 2351 + - 2350 + - 2352 + - 2353 + - 2354 + - 2355 + type: DeviceNetwork - devices: - - 2323 - - 2324 + - 2345 + - 2346 + - 2343 + - 2344 + - 2349 + - 2351 + - 2350 + - 2352 + - 2353 + - 2354 + - 2355 type: DeviceList -- proto: FireAxeCabinetFilled +- proto: FireAxeCabinetFilledCommand entities: - - uid: 2550 + - uid: 516 components: - pos: 9.5,14.5 parent: 2173 @@ -19827,37 +20019,55 @@ entities: - pos: 35.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2351 components: - pos: 34.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2352 components: - pos: 36.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2353 components: - pos: 38.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2354 components: - pos: 39.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2355 components: - pos: 40.5,9.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - proto: FirelockGlass entities: - - uid: 2213 + - uid: 968 components: - - rot: 1.5707963267948966 rad - pos: -14.5,13.5 + - rot: 3.141592653589793 rad + pos: -18.5,14.5 parent: 2173 type: Transform - uid: 2245 @@ -20340,21 +20550,33 @@ entities: - pos: 46.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2344 components: - pos: 47.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2345 components: - pos: 42.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2346 components: - pos: 43.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2347 components: - pos: 42.5,7.5 @@ -20370,6 +20592,9 @@ entities: - pos: 32.5,10.5 parent: 2173 type: Transform + - ShutdownSubscribers: + - 6050 + type: DeviceNetwork - uid: 2653 components: - pos: 2.5,26.5 @@ -20425,11 +20650,6 @@ entities: - pos: 12.5,23.5 parent: 2173 type: Transform - - uid: 5830 - components: - - pos: 30.5,18.5 - parent: 2173 - type: Transform - uid: 5831 components: - pos: 35.5,26.5 @@ -20511,9 +20731,13 @@ entities: entities: - uid: 2825 components: - - pos: 32.40657,7.5812006 - parent: 2173 + - flags: InContainer + type: MetaData + - parent: 4976 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: FloodlightBroken entities: - uid: 2809 @@ -20544,6 +20768,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 6084 + components: + - pos: 52.5,17.5 + parent: 2173 + type: Transform + - fixtures: {} + type: Fixtures - proto: FoodBowlBigTrash entities: - uid: 2808 @@ -20558,19 +20789,11 @@ entities: - pos: 20.420221,10.579422 parent: 2173 type: Transform -- proto: FoodPlateSmallTrash - entities: - - uid: 2136 - components: - - rot: -1.5707963267948966 rad - pos: -18.392973,16.675457 - parent: 2173 - type: Transform - proto: ForensicScanner entities: - - uid: 2858 + - uid: 3122 components: - - pos: 33.447002,18.528852 + - pos: 32.35628,18.443474 parent: 2173 type: Transform - proto: GasAnalyzer @@ -20696,6 +20919,8 @@ entities: pos: 7.5,23.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 4520 components: - rot: 3.141592653589793 rad @@ -20889,18 +21114,10 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4960 + - uid: 4962 components: - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4961 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + pos: 36.5,17.5 parent: 2173 type: Transform - color: '#0055CCFF' @@ -21057,23 +21274,31 @@ entities: - pos: 57.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5974 components: - rot: 3.141592653589793 rad pos: 10.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6002 components: - pos: 58.5,28.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6003 components: - rot: -1.5707963267948966 rad pos: 60.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeFourway entities: - uid: 4548 @@ -21106,6 +21331,14 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 1002 components: - rot: -1.5707963267948966 rad @@ -21376,6 +21609,16 @@ entities: pos: 3.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2560 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 4495 components: - rot: 3.141592653589793 rad @@ -23969,21 +24212,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4957 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,17.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 4958 components: - - rot: -1.5707963267948966 rad - pos: 37.5,17.5 + - rot: 3.141592653589793 rad + pos: 37.5,19.5 parent: 2173 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - uid: 4963 components: @@ -24041,29 +24276,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 4971 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,18.5 - parent: 2173 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4972 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,18.5 - parent: 2173 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 4974 - components: - - pos: 36.5,18.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 4975 components: - pos: 36.5,19.5 @@ -24071,20 +24283,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4976 + - uid: 4988 components: - - pos: 36.5,20.5 + - rot: 3.141592653589793 rad + pos: 37.5,20.5 parent: 2173 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 4988 + - uid: 4990 components: - rot: 3.141592653589793 rad - pos: 37.5,20.5 + pos: 36.5,18.5 parent: 2173 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 5023 components: @@ -25286,54 +25499,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5233 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5234 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5235 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,16.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 5236 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2173 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5237 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,15.5 - parent: 2173 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 5238 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 2173 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 5239 components: - pos: -4.5,20.5 @@ -25926,620 +26091,827 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 5880 - components: - - pos: 37.5,20.5 - parent: 2173 - type: Transform - uid: 5881 components: - pos: 37.5,21.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5882 components: - pos: 37.5,22.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5883 components: - pos: 37.5,23.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5884 components: - pos: 37.5,24.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5885 components: - pos: 37.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5887 components: - rot: -1.5707963267948966 rad pos: 36.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5888 components: - rot: -1.5707963267948966 rad pos: 35.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5889 components: - rot: -1.5707963267948966 rad pos: 34.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5890 components: - rot: -1.5707963267948966 rad pos: 33.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5892 components: - rot: -1.5707963267948966 rad pos: 31.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5893 components: - rot: -1.5707963267948966 rad pos: 30.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5894 components: - rot: -1.5707963267948966 rad pos: 29.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5895 components: - rot: -1.5707963267948966 rad pos: 28.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5896 components: - rot: -1.5707963267948966 rad pos: 27.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5897 components: - rot: -1.5707963267948966 rad pos: 26.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5898 components: - rot: -1.5707963267948966 rad pos: 25.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5899 components: - rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5900 components: - rot: -1.5707963267948966 rad pos: 23.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5901 components: - rot: -1.5707963267948966 rad pos: 22.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5902 components: - rot: -1.5707963267948966 rad pos: 21.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5904 components: - rot: -1.5707963267948966 rad pos: 19.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5905 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5906 components: - rot: -1.5707963267948966 rad pos: 17.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5907 components: - rot: -1.5707963267948966 rad pos: 16.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5908 components: - rot: -1.5707963267948966 rad pos: 15.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5909 components: - rot: -1.5707963267948966 rad pos: 14.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5910 components: - rot: -1.5707963267948966 rad pos: 13.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5911 components: - rot: -1.5707963267948966 rad pos: 12.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5912 components: - rot: -1.5707963267948966 rad pos: 11.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5913 components: - rot: -1.5707963267948966 rad pos: 10.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5914 components: - rot: -1.5707963267948966 rad pos: 9.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5915 components: - rot: -1.5707963267948966 rad pos: 8.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5916 components: - rot: -1.5707963267948966 rad pos: 7.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5921 components: - rot: 1.5707963267948966 rad pos: 38.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5922 components: - rot: 1.5707963267948966 rad pos: 39.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5923 components: - rot: 1.5707963267948966 rad pos: 40.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5925 components: - rot: 1.5707963267948966 rad pos: 42.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5926 components: - rot: 1.5707963267948966 rad pos: 43.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5927 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5928 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5929 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5930 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5931 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5932 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5933 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5934 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5935 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5936 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5937 components: - rot: 1.5707963267948966 rad pos: 54.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5938 components: - rot: 1.5707963267948966 rad pos: 55.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5939 components: - rot: 1.5707963267948966 rad pos: 56.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5943 components: - rot: 3.141592653589793 rad pos: 36.5,20.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5944 components: - rot: 3.141592653589793 rad pos: 36.5,21.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5945 components: - rot: 3.141592653589793 rad pos: 36.5,22.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5946 components: - rot: 3.141592653589793 rad pos: 36.5,23.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5948 components: - rot: -1.5707963267948966 rad pos: 35.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5949 components: - rot: -1.5707963267948966 rad pos: 34.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5950 components: - rot: -1.5707963267948966 rad pos: 33.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5951 components: - rot: -1.5707963267948966 rad pos: 32.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5954 components: - rot: -1.5707963267948966 rad pos: 30.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5955 components: - rot: -1.5707963267948966 rad pos: 29.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5956 components: - rot: -1.5707963267948966 rad pos: 28.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5957 components: - rot: -1.5707963267948966 rad pos: 27.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5958 components: - rot: -1.5707963267948966 rad pos: 26.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5959 components: - rot: -1.5707963267948966 rad pos: 25.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5960 components: - rot: -1.5707963267948966 rad pos: 24.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5961 components: - rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5962 components: - rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5964 components: - rot: 1.5707963267948966 rad pos: 20.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5965 components: - rot: 1.5707963267948966 rad pos: 19.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5966 components: - rot: 1.5707963267948966 rad pos: 18.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5967 components: - rot: 1.5707963267948966 rad pos: 17.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5968 components: - rot: 1.5707963267948966 rad pos: 16.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5969 components: - rot: 1.5707963267948966 rad pos: 15.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5970 components: - rot: 1.5707963267948966 rad pos: 14.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5971 components: - rot: 1.5707963267948966 rad pos: 13.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5972 components: - rot: 1.5707963267948966 rad pos: 12.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5973 components: - rot: 1.5707963267948966 rad pos: 11.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5977 components: - rot: -1.5707963267948966 rad pos: 37.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5978 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5979 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5980 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5981 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5983 components: - rot: 1.5707963267948966 rad pos: 43.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5984 components: - rot: 1.5707963267948966 rad pos: 44.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5985 components: - rot: 1.5707963267948966 rad pos: 45.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5986 components: - rot: 1.5707963267948966 rad pos: 46.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5987 components: - rot: 1.5707963267948966 rad pos: 47.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5988 components: - rot: 1.5707963267948966 rad pos: 48.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5989 components: - rot: 1.5707963267948966 rad pos: 49.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5990 components: - rot: 1.5707963267948966 rad pos: 50.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5991 components: - rot: 1.5707963267948966 rad pos: 51.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5992 components: - rot: 1.5707963267948966 rad pos: 52.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5993 components: - rot: 1.5707963267948966 rad pos: 53.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5994 components: - rot: 1.5707963267948966 rad pos: 54.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5995 components: - rot: 1.5707963267948966 rad pos: 55.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5996 components: - rot: 1.5707963267948966 rad pos: 56.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5997 components: - rot: 1.5707963267948966 rad pos: 57.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5999 components: - rot: 3.141592653589793 rad pos: 58.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6000 components: - rot: 3.141592653589793 rad pos: 58.5,26.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6001 components: - rot: 3.141592653589793 rad pos: 58.5,27.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6004 components: - rot: -1.5707963267948966 rad pos: 59.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 1111 components: - rot: 3.141592653589793 rad @@ -26609,6 +26981,15 @@ entities: pos: 6.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2561 + components: + - pos: 39.5,18.5 + parent: 2173 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 2920 components: - rot: 1.5707963267948966 rad @@ -26999,22 +27380,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4959 - components: - - rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 2173 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 4989 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,19.5 - parent: 2173 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 5031 components: - rot: -1.5707963267948966 rad @@ -27257,56 +27622,76 @@ entities: - pos: 37.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5891 components: - pos: 32.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5903 components: - pos: 20.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5917 components: - rot: 1.5707963267948966 rad pos: 6.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5924 components: - pos: 41.5,26.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5947 components: - pos: 36.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5952 components: - rot: 3.141592653589793 rad pos: 31.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5963 components: - rot: 3.141592653589793 rad pos: 21.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5982 components: - rot: 3.141592653589793 rad pos: 42.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5998 components: - rot: 3.141592653589793 rad pos: 58.5,24.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 1113 @@ -27381,6 +27766,15 @@ entities: pos: 8.5,23.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2565 + components: + - pos: 38.5,18.5 + parent: 2173 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 4494 components: - rot: 1.5707963267948966 rad @@ -27592,10 +27986,9 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 4962 + - uid: 4961 components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + - pos: 42.5,25.5 parent: 2173 type: Transform - color: '#0055CCFF' @@ -27730,32 +28123,44 @@ entities: pos: -0.5,17.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5953 components: - pos: 31.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5975 components: - pos: 10.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 5976 components: - pos: 21.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6005 components: - pos: 60.5,25.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6006 components: - rot: 1.5707963267948966 rad pos: 57.5,28.5 parent: 2173 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentScrubber entities: - uid: 4493 @@ -27967,10 +28372,10 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 4990 + - uid: 4957 components: - - rot: 1.5707963267948966 rad - pos: 36.5,19.5 + - rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2173 type: Transform - color: '#990000FF' @@ -28108,30 +28513,40 @@ entities: - pos: 6.5,27.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5919 components: - rot: 3.141592653589793 rad pos: 20.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5920 components: - rot: 3.141592653589793 rad pos: 32.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5941 components: - rot: 3.141592653589793 rad pos: 57.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 5942 components: - rot: 3.141592653589793 rad pos: 41.5,25.5 parent: 2173 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasVolumePump entities: - uid: 1109 @@ -29107,48 +29522,6 @@ entities: pos: 7.5,11.5 parent: 2173 type: Transform - - uid: 428 - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 2173 - type: Transform - - uid: 429 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 2173 - type: Transform - - uid: 430 - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 2173 - type: Transform - - uid: 431 - components: - - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 2173 - type: Transform - - uid: 432 - components: - - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 2173 - type: Transform - - uid: 433 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2173 - type: Transform - - uid: 434 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 2173 - type: Transform - uid: 435 components: - rot: 3.141592653589793 rad @@ -29215,47 +29588,6 @@ entities: pos: 42.5,21.5 parent: 2173 type: Transform - - uid: 540 - components: - - pos: -19.5,17.5 - parent: 2173 - type: Transform - - uid: 542 - components: - - rot: 3.141592653589793 rad - pos: -15.5,19.5 - parent: 2173 - type: Transform - - uid: 543 - components: - - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 2173 - type: Transform - - uid: 544 - components: - - rot: 3.141592653589793 rad - pos: -17.5,19.5 - parent: 2173 - type: Transform - - uid: 545 - components: - - rot: 3.141592653589793 rad - pos: -11.5,19.5 - parent: 2173 - type: Transform - - uid: 546 - components: - - rot: 3.141592653589793 rad - pos: -10.5,19.5 - parent: 2173 - type: Transform - - uid: 547 - components: - - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 2173 - type: Transform - uid: 551 components: - rot: 3.141592653589793 rad @@ -29556,6 +29888,12 @@ entities: - pos: 36.5,6.5 parent: 2173 type: Transform + - uid: 836 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2173 + type: Transform - uid: 858 components: - pos: -19.5,16.5 @@ -29585,10 +29923,10 @@ entities: pos: -25.5,17.5 parent: 2173 type: Transform - - uid: 938 + - uid: 962 components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 + - rot: 1.5707963267948966 rad + pos: -7.5,17.5 parent: 2173 type: Transform - uid: 963 @@ -29888,11 +30226,6 @@ entities: - pos: -42.5,19.5 parent: 2173 type: Transform - - uid: 1477 - components: - - pos: -46.5,15.5 - parent: 2173 - type: Transform - uid: 1478 components: - pos: -46.5,18.5 @@ -30311,6 +30644,12 @@ entities: - pos: 41.5,19.5 parent: 2173 type: Transform + - uid: 5859 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2173 + type: Transform - proto: GrilleBroken entities: - uid: 2786 @@ -30319,6 +30658,78 @@ entities: pos: 26.5,16.5 parent: 2173 type: Transform +- proto: GunSafe + entities: + - uid: 4274 + components: + - pos: 8.5,19.5 + parent: 2173 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4380 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 4976 + components: + - pos: 32.5,7.5 + parent: 2173 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2825 + - 2562 + - 2563 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer - proto: HandheldCrewMonitor entities: - uid: 2453 @@ -30396,12 +30807,6 @@ entities: - pos: -53.5,10.5 parent: 2173 type: Transform - - uid: 2241 - components: - - rot: 3.141592653589793 rad - pos: -18.5,14.5 - parent: 2173 - type: Transform - uid: 4277 components: - pos: -5.5,28.5 @@ -30419,6 +30824,18 @@ entities: - pos: -49.177635,6.6028957 parent: 2173 type: Transform +- proto: Implanter + entities: + - uid: 6148 + components: + - pos: 31.54015,18.498941 + parent: 2173 + type: Transform + - uid: 6149 + components: + - pos: 31.654732,18.769773 + parent: 2173 + type: Transform - proto: IngotGold1 entities: - uid: 2772 @@ -30536,19 +30953,34 @@ entities: pos: -3.5,20.5 parent: 2173 type: Transform -- proto: JetpackSecurityFilled +- proto: LampGold entities: - - uid: 2566 + - uid: 3134 components: - - pos: 30.353123,7.600494 + - pos: 32.68497,18.905191 parent: 2173 type: Transform -- proto: LampGold + - toggleActionEntity: 3135 + type: HandheldLight + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 3135 + type: ContainerContainer + - canCollide: True + type: Physics + - type: ActionsContainer +- proto: LessLethalVendingMachine entities: - - uid: 2856 + - uid: 4293 components: - - rot: -1.5707963267948966 rad - pos: 33.72139,18.78495 + - pos: 6.5,6.5 parent: 2173 type: Transform - proto: LockerEvidence @@ -30558,14 +30990,32 @@ entities: - pos: 46.5,13.5 parent: 2173 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 2822 components: - - pos: 39.5,11.5 + - pos: 33.5,9.5 parent: 2173 type: Transform - - uid: 2823 + - uid: 6051 components: - - pos: 35.5,11.5 + - pos: 37.5,9.5 parent: 2173 type: Transform - proto: LockerHeadOfPersonnelFilled @@ -30596,6 +31046,11 @@ entities: type: Transform - proto: LockerSecurityFilled entities: + - uid: 2556 + components: + - pos: 30.5,10.5 + parent: 2173 + type: Transform - uid: 2558 components: - pos: 30.5,9.5 @@ -30606,15 +31061,104 @@ entities: - pos: 30.5,8.5 parent: 2173 type: Transform -- proto: LockerWeldingSuppliesFilled + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LogicGate entities: - - uid: 6021 + - uid: 2566 + components: + - anchored: True + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2173 + type: Transform + - links: + - 4120 + - 4119 + type: DeviceLinkSink + - linkedPorts: + 4122: + - Output: DoorBolt + 4121: + - Output: DoorBolt + type: DeviceLinkSource + - canCollide: False + bodyType: Static + type: Physics + - uid: 4113 components: - - pos: -15.5,14.5 + - anchored: True + pos: 42.5,11.5 parent: 2173 type: Transform - - locked: False - type: Lock + - links: + - 5812 + - 5743 + type: DeviceLinkSink + - linkedPorts: + 5847: + - Output: DoorBolt + 5819: + - Output: DoorBolt + type: DeviceLinkSource + - canCollide: False + bodyType: Static + type: Physics + - uid: 4959 + components: + - anchored: True + pos: 36.5,19.5 + parent: 2173 + type: Transform + - links: + - 4122 + - 4121 + type: DeviceLinkSink + - linkedPorts: + 4120: + - Output: DoorBolt + 4119: + - Output: DoorBolt + type: DeviceLinkSource + - canCollide: False + bodyType: Static + type: Physics + - uid: 4971 + components: + - anchored: True + rot: 3.141592653589793 rad + pos: 43.5,11.5 + parent: 2173 + type: Transform + - links: + - 5847 + - 5819 + type: DeviceLinkSink + - linkedPorts: + 5812: + - Output: DoorBolt + 5743: + - Output: DoorBolt + type: DeviceLinkSource + - canCollide: False + bodyType: Static + type: Physics - proto: MachineCryoSleepPod entities: - uid: 1394 @@ -30656,13 +31200,6 @@ entities: - pos: 12.5,21.5 parent: 2173 type: Transform -- proto: Matchbox - entities: - - uid: 2224 - components: - - pos: -8.61189,18.533297 - parent: 2173 - type: Transform - proto: MaterialBiomass entities: - uid: 346 @@ -30670,33 +31207,19 @@ entities: - pos: -43.42814,10.691803 parent: 2173 type: Transform - - uid: 2679 - components: - - pos: -48.410625,6.81355 - parent: 2173 - type: Transform -- proto: MaterialBiomass1 - entities: - - uid: 2394 - components: - - pos: -48.735626,6.8385496 - parent: 2173 - type: Transform - - uid: 4479 + - uid: 4428 components: - - pos: -48.610626,6.68855 + - pos: -48.5437,6.7244673 parent: 2173 type: Transform - - uid: 4480 + - uid: 4431 components: - - pos: -48.635624,6.86355 + - pos: -48.71129,6.814751 parent: 2173 type: Transform -- proto: MaterialCardboard1 - entities: - - uid: 2153 + - uid: 4432 components: - - pos: -18.187946,18.2905 + - pos: -48.389004,6.840546 parent: 2173 type: Transform - proto: MaterialCloth @@ -30713,6 +31236,13 @@ entities: - pos: 6.6530757,18.317799 parent: 2173 type: Transform +- proto: MaterialReclaimer + entities: + - uid: 6144 + components: + - pos: 53.5,18.5 + parent: 2173 + type: Transform - proto: MedicalScanner entities: - uid: 1475 @@ -30791,12 +31321,6 @@ entities: pos: 23.5,9.5 parent: 2173 type: Transform - - uid: 4442 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 2173 - type: Transform - proto: MopItem entities: - uid: 4189 @@ -30854,6 +31378,16 @@ entities: pos: -42.5,16.5 parent: 2173 type: Transform + - uid: 4401 + components: + - pos: -45.5,18.5 + parent: 2173 + type: Transform + - uid: 6110 + components: + - pos: -44.5,18.5 + parent: 2173 + type: Transform - proto: Multitool entities: - uid: 2744 @@ -30889,46 +31423,46 @@ entities: - pos: -38.5,16.5 parent: 2173 type: Transform -- proto: PaperBin10 +- proto: Paper entities: - - uid: 2611 + - uid: 6043 components: - - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + - pos: 14.09188,16.706373 parent: 2173 type: Transform - - uid: 4454 + - uid: 6044 components: - - pos: -1.5,5.5 + - pos: 14.207902,16.500011 parent: 2173 type: Transform -- proto: PaperDoor - entities: - - uid: 4140 + - uid: 6045 components: - - pos: 24.5,11.5 + - pos: 14.349708,16.680578 parent: 2173 type: Transform -- proto: PaperOffice - entities: - - uid: 4291 + - uid: 6046 components: - - pos: 22.391647,10.582071 + - pos: 14.568859,16.461319 parent: 2173 type: Transform - - uid: 4292 +- proto: PaperBin10 + entities: + - uid: 2611 components: - - pos: 22.50872,10.450363 + - rot: 1.5707963267948966 rad + pos: 5.5,22.5 parent: 2173 type: Transform - - uid: 4293 + - uid: 4454 components: - - pos: 22.669697,10.567436 + - pos: -1.5,5.5 parent: 2173 type: Transform - - uid: 4294 +- proto: PaperDoor + entities: + - uid: 4140 components: - - pos: 22.596525,10.230852 + - pos: 24.5,11.5 parent: 2173 type: Transform - proto: PillCanister @@ -31052,16 +31586,18 @@ entities: - pos: -47.5,16.5 parent: 2173 type: Transform -- proto: PottedPlantRandom +- proto: PosterLegitWorkForAFuture entities: - - uid: 268 + - uid: 4960 components: - - pos: -0.5,13.5 + - pos: 4.5,19.5 parent: 2173 type: Transform - - uid: 2237 +- proto: PottedPlantRandom + entities: + - uid: 268 components: - - pos: -17.5,10.5 + - pos: -0.5,13.5 parent: 2173 type: Transform - uid: 2400 @@ -31309,14 +31845,18 @@ entities: pos: 9.5,25.5 parent: 2173 type: Transform - - uid: 2681 + - uid: 3715 components: - rot: -1.5707963267948966 rad - pos: -42.5,16.5 + pos: 32.5,7.5 + parent: 2173 + type: Transform + - uid: 3717 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,12.5 parent: 2173 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4043 components: - rot: 1.5707963267948966 rad @@ -31338,14 +31878,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4195 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,10.5 - parent: 2173 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4196 components: - rot: -1.5707963267948966 rad @@ -31710,14 +32242,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4247 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 2173 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 4248 components: - rot: 3.141592653589793 rad @@ -31740,6 +32264,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 4291 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,10.5 + parent: 2173 + type: Transform - uid: 4312 components: - pos: -3.5,34.5 @@ -31846,23 +32376,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 4443 + - uid: 4434 components: - - rot: 3.141592653589793 rad - pos: -12.5,10.5 + - rot: -1.5707963267948966 rad + pos: -43.5,9.5 parent: 2173 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5011 + - uid: 4437 components: - - pos: 47.5,26.5 + - rot: 1.5707963267948966 rad + pos: -45.5,15.5 parent: 2173 type: Transform - - uid: 6024 + - uid: 5011 components: - - rot: 1.5707963267948966 rad - pos: -11.5,16.5 + - pos: 47.5,26.5 parent: 2173 type: Transform - proto: PoweredlightLED @@ -31877,10 +32405,15 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 2101 + - uid: 269 components: - - rot: 1.5707963267948966 rad - pos: -18.5,14.5 + - pos: -18.5,16.5 + parent: 2173 + type: Transform + - uid: 1545 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,15.5 parent: 2173 type: Transform - uid: 2613 @@ -31962,12 +32495,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 5704 - components: - - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 2173 - type: Transform - uid: 5796 components: - pos: -54.5,18.5 @@ -31995,11 +32522,6 @@ entities: - pos: -36.5,6.5 parent: 2173 type: Transform - - uid: 6023 - components: - - pos: -13.5,15.5 - parent: 2173 - type: Transform - proto: Rack entities: - uid: 2387 @@ -32022,27 +32544,11 @@ entities: - pos: -43.5,11.5 parent: 2173 type: Transform - - uid: 2560 - components: - - pos: 30.5,7.5 - parent: 2173 - type: Transform - - uid: 2561 - components: - - pos: 32.5,7.5 - parent: 2173 - type: Transform - uid: 4158 components: - pos: -28.5,14.5 parent: 2173 type: Transform - - uid: 4379 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 2173 - type: Transform - proto: RadioHandheld entities: - uid: 4456 @@ -32201,6 +32707,13 @@ entities: pos: -49.5,11.5 parent: 2173 type: Transform +- proto: RandomFoodMeal + entities: + - uid: 4292 + components: + - pos: 22.5,10.5 + parent: 2173 + type: Transform - proto: RandomInstruments entities: - uid: 4375 @@ -32215,11 +32728,6 @@ entities: - pos: -3.5,28.5 parent: 2173 type: Transform - - uid: 4374 - components: - - pos: 51.5,9.5 - parent: 2173 - type: Transform - proto: RandomPosterContraband entities: - uid: 4492 @@ -32237,16 +32745,6 @@ entities: - pos: -41.5,17.5 parent: 2173 type: Transform - - uid: 5654 - components: - - pos: -19.5,18.5 - parent: 2173 - type: Transform - - uid: 5655 - components: - - pos: 23.5,12.5 - parent: 2173 - type: Transform - uid: 5656 components: - pos: 50.5,14.5 @@ -32275,16 +32773,6 @@ entities: pos: 55.5,27.5 parent: 2173 type: Transform - - uid: 2095 - components: - - pos: -16.5,13.5 - parent: 2173 - type: Transform - - uid: 2210 - components: - - pos: -12.5,16.5 - parent: 2173 - type: Transform - uid: 2612 components: - rot: 3.141592653589793 rad @@ -32396,14 +32884,9 @@ entities: - pos: 9.5,45.5 parent: 2173 type: Transform - - uid: 5650 - components: - - pos: -12.5,9.5 - parent: 2173 - type: Transform - - uid: 5651 + - uid: 5655 components: - - pos: -13.5,19.5 + - pos: 23.5,12.5 parent: 2173 type: Transform - proto: RandomSoap @@ -32418,40 +32901,8 @@ entities: - pos: 26.5,9.5 parent: 2173 type: Transform -- proto: RandomSpawner - entities: - - uid: 2096 - components: - - pos: -15.5,17.5 - parent: 2173 - type: Transform - - uid: 2098 - components: - - pos: -13.5,17.5 - parent: 2173 - type: Transform - - uid: 2100 - components: - - pos: -17.5,16.5 - parent: 2173 - type: Transform - - uid: 2102 - components: - - pos: -16.5,18.5 - parent: 2173 - type: Transform - proto: RandomVending entities: - - uid: 2423 - components: - - pos: -5.5,13.5 - parent: 2173 - type: Transform - - uid: 2658 - components: - - pos: 4.5,13.5 - parent: 2173 - type: Transform - uid: 5823 components: - pos: 40.5,22.5 @@ -32471,11 +32922,6 @@ entities: type: Transform - proto: RandomVendingSnacks entities: - - uid: 2219 - components: - - pos: -10.5,18.5 - parent: 2173 - type: Transform - uid: 2523 components: - pos: 3.5,51.5 @@ -32528,6 +32974,18 @@ entities: pos: 50.5,27.5 parent: 2173 type: Transform + - uid: 531 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2173 + type: Transform + - uid: 547 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2173 + type: Transform - uid: 572 components: - rot: -1.5707963267948966 rad @@ -32580,12 +33038,6 @@ entities: - pos: 41.5,19.5 parent: 2173 type: Transform - - uid: 623 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,21.5 - parent: 2173 - type: Transform - uid: 666 components: - rot: -1.5707963267948966 rad @@ -32604,11 +33056,6 @@ entities: pos: 34.5,27.5 parent: 2173 type: Transform - - uid: 836 - components: - - pos: -19.5,17.5 - parent: 2173 - type: Transform - uid: 864 components: - rot: 3.141592653589793 rad @@ -33035,24 +33482,6 @@ entities: pos: 11.5,57.5 parent: 2173 type: Transform - - uid: 935 - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 2173 - type: Transform - - uid: 936 - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 2173 - type: Transform - - uid: 937 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 2173 - type: Transform - uid: 939 components: - rot: 3.141592653589793 rad @@ -33071,18 +33500,6 @@ entities: pos: -6.5,10.5 parent: 2173 type: Transform - - uid: 942 - components: - - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 2173 - type: Transform - - uid: 943 - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 2173 - type: Transform - uid: 944 components: - rot: 3.141592653589793 rad @@ -33119,24 +33536,6 @@ entities: pos: -16.5,6.5 parent: 2173 type: Transform - - uid: 950 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 2173 - type: Transform - - uid: 951 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2173 - type: Transform - - uid: 952 - components: - - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 2173 - type: Transform - uid: 953 components: - rot: 3.141592653589793 rad @@ -33184,42 +33583,6 @@ entities: - pos: -19.5,16.5 parent: 2173 type: Transform - - uid: 965 - components: - - rot: 3.141592653589793 rad - pos: -17.5,19.5 - parent: 2173 - type: Transform - - uid: 966 - components: - - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 2173 - type: Transform - - uid: 967 - components: - - rot: 3.141592653589793 rad - pos: -15.5,19.5 - parent: 2173 - type: Transform - - uid: 968 - components: - - rot: 3.141592653589793 rad - pos: -11.5,19.5 - parent: 2173 - type: Transform - - uid: 969 - components: - - rot: 3.141592653589793 rad - pos: -10.5,19.5 - parent: 2173 - type: Transform - - uid: 970 - components: - - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 2173 - type: Transform - uid: 971 components: - rot: 3.141592653589793 rad @@ -34452,6 +34815,12 @@ entities: pos: 18.5,27.5 parent: 2173 type: Transform + - uid: 3943 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2173 + type: Transform - uid: 4040 components: - rot: 1.5707963267948966 rad @@ -34512,6 +34881,11 @@ entities: pos: 22.5,27.5 parent: 2173 type: Transform + - uid: 4989 + components: + - pos: 39.5,21.5 + parent: 2173 + type: Transform - uid: 4994 components: - rot: 1.5707963267948966 rad @@ -34572,13 +34946,6 @@ entities: - pos: -43.34098,13.453728 parent: 2173 type: Transform -- proto: ShowcaseRobot - entities: - - uid: 2569 - components: - - pos: 37.5,5.5 - parent: 2173 - type: Transform - proto: SignalButton entities: - uid: 2734 @@ -34869,14 +35236,6 @@ entities: pos: 1.5,19.5 parent: 2173 type: Transform -- proto: SignDrones - entities: - - uid: 2212 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 2173 - type: Transform - proto: SignEngineering entities: - uid: 5698 @@ -35034,6 +35393,16 @@ entities: pos: 61.5,23.5 parent: 2173 type: Transform + - uid: 2096 + components: + - pos: -16.5,17.5 + parent: 2173 + type: Transform + - uid: 2100 + components: + - pos: -8.5,17.5 + parent: 2173 + type: Transform - uid: 2579 components: - rot: 1.5707963267948966 rad @@ -35193,13 +35562,6 @@ entities: - pos: -26.5,14.5 parent: 2173 type: Transform -- proto: SolidSecretDoor - entities: - - uid: 960 - components: - - pos: -14.5,16.5 - parent: 2173 - type: Transform - proto: SpaceCash entities: - uid: 2775 @@ -35234,16 +35596,16 @@ entities: type: Transform - proto: SpaceVillainArcadeFilled entities: - - uid: 2514 + - uid: 1420 components: - - rot: 1.5707963267948966 rad - pos: 50.5,7.5 + - rot: -1.5707963267948966 rad + pos: 34.5,21.5 parent: 2173 type: Transform - - uid: 6028 + - uid: 2514 components: - rot: 1.5707963267948966 rad - pos: -11.5,15.5 + pos: 50.5,7.5 parent: 2173 type: Transform - proto: SpawnPointAssistant @@ -35273,13 +35635,6 @@ entities: - pos: -5.5,1.5 parent: 2173 type: Transform -- proto: SpawnPointBorg - entities: - - uid: 2148 - components: - - pos: -14.5,14.5 - parent: 2173 - type: Transform - proto: SpawnPointHeadOfPersonnel entities: - uid: 5771 @@ -35294,6 +35649,13 @@ entities: - pos: 37.5,14.5 parent: 2173 type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 2099 + components: + - pos: -4.5,24.5 + parent: 2173 + type: Transform - proto: SpawnPointLatejoin entities: - uid: 4481 @@ -35364,21 +35726,21 @@ entities: type: Transform - proto: StationAdminBankATM entities: - - uid: 2623 + - uid: 2367 components: - - rot: 1.5707963267948966 rad - pos: 45.5,11.5 + - rot: -1.5707963267948966 rad + pos: 38.5,13.5 parent: 2173 type: Transform - containers: - board: !type:Container - showEnts: False - occludes: True - ents: [] station-bank-ATM-cashSlot: !type:ContainerSlot showEnts: False occludes: True ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] type: ContainerContainer - uid: 5749 components: @@ -35441,6 +35803,31 @@ entities: pos: -3.5,36.5 parent: 2173 type: Transform +- proto: SuitStorageSec + entities: + - uid: 4972 + components: + - pos: 30.5,7.5 + parent: 2173 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: SurveillanceCameraRouterGeneral entities: - uid: 2365 @@ -35455,19 +35842,6 @@ entities: - pos: 45.5,15.5 parent: 2173 type: Transform -- proto: Table - entities: - - uid: 2137 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 2173 - type: Transform - - uid: 2217 - components: - - pos: -13.5,15.5 - parent: 2173 - type: Transform - proto: TableCarpet entities: - uid: 2759 @@ -35539,17 +35913,6 @@ entities: - pos: -45.5,16.5 parent: 2173 type: Transform - - uid: 2152 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,13.5 - parent: 2173 - type: Transform - - uid: 2222 - components: - - pos: -8.5,18.5 - parent: 2173 - type: Transform - uid: 2393 components: - pos: -47.5,15.5 @@ -35694,16 +36057,16 @@ entities: pos: 48.5,13.5 parent: 2173 type: Transform - - uid: 2631 + - uid: 2632 components: - rot: -1.5707963267948966 rad - pos: 33.5,18.5 + pos: 32.5,18.5 parent: 2173 type: Transform - - uid: 2632 + - uid: 2633 components: - - rot: -1.5707963267948966 rad - pos: 32.5,18.5 + - rot: 1.5707963267948966 rad + pos: 31.5,18.5 parent: 2173 type: Transform - uid: 2739 @@ -35763,6 +36126,11 @@ entities: - pos: -5.5,21.5 parent: 2173 type: Transform + - uid: 4379 + components: + - pos: 8.5,13.5 + parent: 2173 + type: Transform - uid: 5197 components: - rot: 3.141592653589793 rad @@ -35793,6 +36161,16 @@ entities: pos: 22.5,9.5 parent: 2173 type: Transform + - uid: 5374 + components: + - pos: 13.5,16.5 + parent: 2173 + type: Transform + - uid: 5723 + components: + - pos: 14.5,16.5 + parent: 2173 + type: Transform - proto: TelecomServerFilled entities: - uid: 2516 @@ -35847,11 +36225,6 @@ entities: - pos: -46.5,18.5 parent: 2173 type: Transform - - uid: 1420 - components: - - pos: -46.5,15.5 - parent: 2173 - type: Transform - uid: 1652 components: - rot: -1.5707963267948966 rad @@ -35870,12 +36243,6 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 2243 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,14.5 - parent: 2173 - type: Transform - uid: 4302 components: - pos: 26.5,10.5 @@ -36043,6 +36410,17 @@ entities: - Right: Reverse - Middle: Off type: DeviceLinkSource + - uid: 6145 + components: + - pos: 51.5,18.5 + parent: 2173 + type: Transform + - linkedPorts: + 6083: + - Left: Forward + - Right: Forward + - Middle: Off + type: DeviceLinkSource - proto: UniformPrinter entities: - uid: 514 @@ -36079,29 +36457,25 @@ entities: - pos: 4.5,51.5 parent: 2173 type: Transform -- proto: VendingMachineCargoDrobe +- proto: VendingMachineAutoTuneVend entities: - - uid: 5746 + - uid: 545 components: - - pos: 6.5,6.5 + - pos: 37.5,5.5 parent: 2173 type: Transform - proto: VendingMachineCart entities: - - uid: 1211 + - uid: 657 components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,20.5 + - pos: 33.5,18.5 parent: 2173 type: Transform -- proto: VendingMachineChapel - entities: - - uid: 5723 + - uid: 1211 components: - flags: SessionSpecific type: MetaData - - pos: -17.5,5.5 + - pos: 3.5,20.5 parent: 2173 type: Transform - proto: VendingMachineCigs @@ -36111,13 +36485,6 @@ entities: - pos: 49.5,4.5 parent: 2173 type: Transform - - uid: 5705 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,18.5 - parent: 2173 - type: Transform - proto: VendingMachineCircuitVend entities: - uid: 4469 @@ -36138,11 +36505,9 @@ entities: type: Transform - proto: VendingMachineCuddlyCritterVend entities: - - uid: 2099 + - uid: 544 components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,12.5 + - pos: -5.5,13.5 parent: 2173 type: Transform - proto: VendingMachineCuraDrobe @@ -36214,6 +36579,13 @@ entities: - pos: -45.5,10.5 parent: 2173 type: Transform +- proto: VendingMachinePride + entities: + - uid: 4294 + components: + - pos: -17.5,5.5 + parent: 2173 + type: Transform - proto: VendingMachineRepDrobe entities: - uid: 5748 @@ -36239,19 +36611,15 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 2557 + - uid: 2787 components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,10.5 + - pos: 30.5,12.5 parent: 2173 type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 2556 + - uid: 3810 components: - - flags: SessionSpecific - type: MetaData - pos: 30.5,11.5 parent: 2173 type: Transform @@ -36264,15 +36632,6 @@ entities: - pos: 25.5,18.5 parent: 2173 type: Transform -- proto: VendingMachineSustenance - entities: - - uid: 6029 - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,12.5 - parent: 2173 - type: Transform - proto: VendingMachineTheater entities: - uid: 2434 @@ -36954,11 +37313,6 @@ entities: - pos: -6.5,8.5 parent: 2173 type: Transform - - uid: 269 - components: - - pos: -7.5,14.5 - parent: 2173 - type: Transform - uid: 270 components: - pos: -6.5,14.5 @@ -37141,12 +37495,6 @@ entities: - pos: 6.5,7.5 parent: 2173 type: Transform - - uid: 355 - components: - - rot: 3.141592653589793 rad - pos: -8.5,9.5 - parent: 2173 - type: Transform - uid: 356 components: - rot: 3.141592653589793 rad @@ -37166,13 +37514,7 @@ entities: - uid: 359 components: - rot: 3.141592653589793 rad - pos: -8.5,13.5 - parent: 2173 - type: Transform - - uid: 360 - components: - - rot: 3.141592653589793 rad - pos: -8.5,14.5 + pos: -17.5,14.5 parent: 2173 type: Transform - uid: 361 @@ -37205,22 +37547,10 @@ entities: pos: 12.5,9.5 parent: 2173 type: Transform - - uid: 366 - components: - - rot: 3.141592653589793 rad - pos: -11.5,9.5 - parent: 2173 - type: Transform - uid: 367 components: - rot: 3.141592653589793 rad - pos: -12.5,9.5 - parent: 2173 - type: Transform - - uid: 368 - components: - - rot: 3.141592653589793 rad - pos: -13.5,9.5 + pos: -8.5,17.5 parent: 2173 type: Transform - uid: 370 @@ -37253,18 +37583,6 @@ entities: pos: 23.5,8.5 parent: 2173 type: Transform - - uid: 375 - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 2173 - type: Transform - - uid: 376 - components: - - rot: 3.141592653589793 rad - pos: -18.5,9.5 - parent: 2173 - type: Transform - uid: 377 components: - rot: 3.141592653589793 rad @@ -37289,6 +37607,12 @@ entities: pos: -24.5,8.5 parent: 2173 type: Transform + - uid: 382 + components: + - rot: 3.141592653589793 rad + pos: -8.5,14.5 + parent: 2173 + type: Transform - uid: 396 components: - rot: 3.141592653589793 rad @@ -37427,10 +37751,28 @@ entities: pos: 14.5,9.5 parent: 2173 type: Transform - - uid: 439 + - uid: 429 components: - rot: 3.141592653589793 rad - pos: -6.5,19.5 + pos: -16.5,17.5 + parent: 2173 + type: Transform + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: -16.5,14.5 + parent: 2173 + type: Transform + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 2173 + type: Transform + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: -19.5,17.5 parent: 2173 type: Transform - uid: 444 @@ -37610,11 +37952,6 @@ entities: - pos: 12.5,19.5 parent: 2173 type: Transform - - uid: 516 - components: - - pos: 38.5,21.5 - parent: 2173 - type: Transform - uid: 517 components: - pos: 12.5,28.5 @@ -37645,11 +37982,6 @@ entities: - pos: 35.5,20.5 parent: 2173 type: Transform - - uid: 525 - components: - - pos: 35.5,21.5 - parent: 2173 - type: Transform - uid: 526 components: - pos: 35.5,22.5 @@ -37671,63 +38003,69 @@ entities: pos: 30.5,15.5 parent: 2173 type: Transform - - uid: 530 + - uid: 533 components: - rot: 3.141592653589793 rad - pos: -7.5,19.5 + pos: -18.5,17.5 parent: 2173 type: Transform - - uid: 531 + - uid: 534 components: - rot: 3.141592653589793 rad - pos: -8.5,19.5 + pos: -17.5,11.5 parent: 2173 type: Transform - - uid: 532 + - uid: 536 components: - rot: 3.141592653589793 rad - pos: -12.5,19.5 + pos: -17.5,9.5 parent: 2173 type: Transform - - uid: 533 + - uid: 537 components: - rot: 3.141592653589793 rad - pos: -13.5,19.5 + pos: -6.5,19.5 parent: 2173 type: Transform - - uid: 534 + - uid: 538 components: - rot: 3.141592653589793 rad - pos: -14.5,19.5 + pos: -19.5,14.5 parent: 2173 type: Transform - - uid: 535 + - uid: 539 components: - rot: 3.141592653589793 rad - pos: -18.5,19.5 + pos: -17.5,13.5 parent: 2173 type: Transform - - uid: 536 + - uid: 540 components: - rot: 3.141592653589793 rad - pos: -19.5,19.5 + pos: -17.5,10.5 parent: 2173 type: Transform - - uid: 537 + - uid: 541 + components: + - pos: -22.5,14.5 + parent: 2173 + type: Transform + - uid: 542 components: - rot: 3.141592653589793 rad - pos: -19.5,18.5 + pos: -17.5,12.5 parent: 2173 type: Transform - - uid: 538 + - uid: 543 components: - rot: 3.141592653589793 rad - pos: -19.5,14.5 + pos: -6.5,18.5 parent: 2173 type: Transform - - uid: 541 + - uid: 546 components: - - pos: -22.5,14.5 + - rot: 3.141592653589793 rad + pos: -18.5,9.5 parent: 2173 type: Transform - uid: 548 @@ -37838,12 +38176,6 @@ entities: pos: 28.5,17.5 parent: 2173 type: Transform - - uid: 568 - components: - - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 2173 - type: Transform - uid: 569 components: - pos: 35.5,23.5 @@ -37891,26 +38223,6 @@ entities: - pos: 34.5,19.5 parent: 2173 type: Transform - - uid: 657 - components: - - pos: 31.5,19.5 - parent: 2173 - type: Transform - - uid: 658 - components: - - pos: 31.5,18.5 - parent: 2173 - type: Transform - - uid: 659 - components: - - pos: 31.5,17.5 - parent: 2173 - type: Transform - - uid: 660 - components: - - pos: 31.5,16.5 - parent: 2173 - type: Transform - uid: 664 components: - pos: 46.5,19.5 @@ -38162,12 +38474,6 @@ entities: pos: 29.5,12.5 parent: 2173 type: Transform - - uid: 829 - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 2173 - type: Transform - uid: 830 components: - rot: 3.141592653589793 rad @@ -38226,6 +38532,12 @@ entities: - pos: -21.5,14.5 parent: 2173 type: Transform + - uid: 960 + components: + - rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 2173 + type: Transform - uid: 982 components: - pos: -28.5,19.5 @@ -38446,12 +38758,6 @@ entities: - pos: -41.5,14.5 parent: 2173 type: Transform - - uid: 1201 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 2173 - type: Transform - uid: 1205 components: - rot: 1.5707963267948966 rad @@ -38768,24 +39074,6 @@ entities: pos: 45.5,17.5 parent: 2173 type: Transform - - uid: 1535 - components: - - rot: 3.141592653589793 rad - pos: 47.5,17.5 - parent: 2173 - type: Transform - - uid: 1536 - components: - - rot: 3.141592653589793 rad - pos: 47.5,16.5 - parent: 2173 - type: Transform - - uid: 1537 - components: - - rot: 3.141592653589793 rad - pos: 47.5,15.5 - parent: 2173 - type: Transform - uid: 1543 components: - rot: 3.141592653589793 rad @@ -38798,12 +39086,6 @@ entities: pos: 32.5,12.5 parent: 2173 type: Transform - - uid: 1545 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 2173 - type: Transform - uid: 1546 components: - rot: 3.141592653589793 rad @@ -38949,6 +39231,12 @@ entities: pos: 30.5,27.5 parent: 2173 type: Transform + - uid: 3123 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2173 + type: Transform - uid: 3142 components: - pos: 9.5,22.5 @@ -39025,6 +39313,12 @@ entities: pos: 47.5,20.5 parent: 2173 type: Transform + - uid: 4247 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2173 + type: Transform - uid: 4250 components: - rot: 3.141592653589793 rad @@ -39047,6 +39341,33 @@ entities: - pos: 17.5,27.5 parent: 2173 type: Transform + - uid: 4365 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 2173 + type: Transform + - uid: 4374 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2173 + type: Transform + - uid: 4443 + components: + - pos: 47.5,16.5 + parent: 2173 + type: Transform + - uid: 4479 + components: + - pos: 47.5,17.5 + parent: 2173 + type: Transform + - uid: 4480 + components: + - pos: 47.5,15.5 + parent: 2173 + type: Transform - uid: 4980 components: - rot: 1.5707963267948966 rad @@ -39075,6 +39396,28 @@ entities: - pos: 10.5,22.5 parent: 2173 type: Transform + - uid: 5830 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2173 + type: Transform + - uid: 5862 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2173 + type: Transform + - uid: 5880 + components: + - pos: 35.5,21.5 + parent: 2173 + type: Transform + - uid: 6124 + components: + - pos: 38.5,21.5 + parent: 2173 + type: Transform - proto: WallSolid entities: - uid: 256 @@ -39113,12 +39456,6 @@ entities: pos: 5.5,17.5 parent: 2173 type: Transform - - uid: 382 - components: - - rot: 3.141592653589793 rad - pos: -6.5,17.5 - parent: 2173 - type: Transform - uid: 383 components: - rot: 3.141592653589793 rad @@ -39191,12 +39528,6 @@ entities: pos: 17.5,17.5 parent: 2173 type: Transform - - uid: 438 - components: - - rot: 3.141592653589793 rad - pos: -6.5,18.5 - parent: 2173 - type: Transform - uid: 440 components: - rot: 3.141592653589793 rad @@ -39735,81 +40066,6 @@ entities: - pos: 26.5,11.5 parent: 2173 type: Transform - - uid: 2146 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 2173 - type: Transform - - uid: 2147 - components: - - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 2173 - type: Transform - - uid: 2154 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,18.5 - parent: 2173 - type: Transform - - uid: 2156 - components: - - pos: -12.5,15.5 - parent: 2173 - type: Transform - - uid: 2157 - components: - - pos: -12.5,14.5 - parent: 2173 - type: Transform - - uid: 2159 - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 2173 - type: Transform - - uid: 2160 - components: - - pos: -12.5,17.5 - parent: 2173 - type: Transform - - uid: 2163 - components: - - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 2173 - type: Transform - - uid: 2211 - components: - - rot: 3.141592653589793 rad - pos: -16.5,15.5 - parent: 2173 - type: Transform - - uid: 2216 - components: - - rot: 3.141592653589793 rad - pos: -12.5,16.5 - parent: 2173 - type: Transform - - uid: 2220 - components: - - rot: 3.141592653589793 rad - pos: -15.5,13.5 - parent: 2173 - type: Transform - - uid: 2238 - components: - - rot: 3.141592653589793 rad - pos: -13.5,16.5 - parent: 2173 - type: Transform - - uid: 2239 - components: - - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 2173 - type: Transform - uid: 2507 components: - pos: 52.5,6.5 @@ -39880,22 +40136,10 @@ entities: pos: 51.5,14.5 parent: 2173 type: Transform - - uid: 4349 + - uid: 4427 components: - rot: 1.5707963267948966 rad - pos: -16.5,14.5 - parent: 2173 - type: Transform - - uid: 5706 - components: - - rot: 3.141592653589793 rad - pos: -12.5,13.5 - parent: 2173 - type: Transform - - uid: 5707 - components: - - rot: 3.141592653589793 rad - pos: -13.5,13.5 + pos: -46.5,15.5 parent: 2173 type: Transform - proto: WardrobeGreyFilled @@ -39929,9 +40173,9 @@ entities: type: WarpPoint - proto: WaterCooler entities: - - uid: 4274 + - uid: 4381 components: - - pos: 8.5,13.5 + - pos: 8.5,12.5 parent: 2173 type: Transform - proto: WaterTankHighCapacity @@ -39955,48 +40199,42 @@ entities: pos: 45.5,13.5 parent: 2173 type: Transform - - uid: 2637 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,18.5 - parent: 2173 - type: Transform - proto: WeaponDisabler entities: - uid: 2562 components: - - pos: 32.251442,7.68249 - parent: 2173 + - flags: InContainer + type: MetaData + - parent: 4976 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - uid: 2563 components: - - pos: 32.489246,7.5361485 - parent: 2173 + - flags: InContainer + type: MetaData + - parent: 4976 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - uid: 2564 components: - pos: 38.46429,14.810719 parent: 2173 type: Transform - - uid: 4381 - components: - - pos: 8.503672,19.54045 - parent: 2173 - type: Transform - proto: WeaponPistolMk58 entities: - uid: 4380 components: - - pos: 8.430501,19.657524 - parent: 2173 - type: Transform -- proto: WelderMini - entities: - - uid: 5855 - components: - - pos: -15.546281,15.690609 - parent: 2173 + - flags: InContainer + type: MetaData + - parent: 4274 type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage - proto: WetFloorSign entities: - uid: 4184 @@ -40009,14 +40247,6 @@ entities: - pos: -5.4562674,22.569525 parent: 2173 type: Transform -- proto: Windoor - entities: - - uid: 2242 - components: - - rot: 3.141592653589793 rad - pos: -17.5,14.5 - parent: 2173 - type: Transform - proto: WindoorSecure entities: - uid: 2132 @@ -40040,6 +40270,13 @@ entities: pos: 4.5,24.5 parent: 2173 type: Transform + - links: + - 2642 + type: DeviceLinkSink + - linkedPorts: + 2642: + - DoorStatus: Close + type: DeviceLinkSource - uid: 2803 components: - rot: 3.141592653589793 rad @@ -40113,6 +40350,13 @@ entities: - pos: 4.5,24.5 parent: 2173 type: Transform + - links: + - 2643 + type: DeviceLinkSink + - linkedPorts: + 2643: + - DoorStatus: Close + type: DeviceLinkSource - uid: 4056 components: - rot: -1.5707963267948966 rad @@ -40319,12 +40563,6 @@ entities: type: Transform - proto: WindowFrostedDirectional entities: - - uid: 2240 - components: - - rot: 3.141592653589793 rad - pos: -18.5,14.5 - parent: 2173 - type: Transform - uid: 2425 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/anomalouslab.yml b/Resources/Maps/_NF/POI/anomalouslab.yml similarity index 87% rename from Resources/Maps/anomalouslab.yml rename to Resources/Maps/_NF/POI/anomalouslab.yml index 97f2058deda..820482be0be 100644 --- a/Resources/Maps/anomalouslab.yml +++ b/Resources/Maps/_NF/POI/anomalouslab.yml @@ -4,13 +4,13 @@ meta: tilemap: 0: Space 12: FloorBar - 27: FloorDark - 72: FloorReinforced - 84: FloorSteel - 100: FloorWhite - 110: FloorWood - 112: Lattice - 113: Plating + 28: FloorDark + 73: FloorReinforced + 85: FloorSteel + 101: FloorWhite + 111: FloorWood + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -24,59 +24,59 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: VAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADZAAAAAACZAAAAAAAZAAAAAACZAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAACVQAAAAADcgAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADZQAAAAACZQAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAcgAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAZQAAAAADZQAAAAADZQAAAAAAZQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAADcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAADZQAAAAABZQAAAAAAZQAAAAAAZQAAAAADVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAAAZQAAAAABZQAAAAACZQAAAAAAZQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAABZQAAAAADZQAAAAACZQAAAAADZQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADZQAAAAADZQAAAAAAZQAAAAACZQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACZQAAAAAAZQAAAAADZQAAAAABZQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABSQAAAAAASQAAAAAASQAAAAAASQAAAAAAVQAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: VAAAAAACVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAZAAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABSAAAAAAAZAAAAAABZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAACVQAAAAAAVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAAAZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAADZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAAAZQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAADZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAADZQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAAAZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABSQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: VAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAABSAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADSAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABSAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAGwAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAABVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAADVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAADVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAC + tiles: VQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAASQAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAASQAAAAAASQAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAASQAAAAAASQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAASQAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAHAAAAAACVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAABVQAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAADVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAAC version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: VAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAABbgAAAAACbgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAABbgAAAAAAbgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAADbgAAAAADbgAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAADbgAAAAACbgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAAAbgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAABbgAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAABbgAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADbgAAAAABbgAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAADbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAACbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAACbwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAbwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAADbwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAADbwAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAACbwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAbwAAAAABVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAADcgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAbwAAAAABbwAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAABcgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADcgAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAADbwAAAAABbwAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAABbgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: bgAAAAABbgAAAAADVAAAAAABAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACVAAAAAADcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADVAAAAAADAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAABVAAAAAABAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACVAAAAAADAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAACVAAAAAACcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACVAAAAAADAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADVAAAAAADAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACVAAAAAABAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAAASAAAAAAASAAAAAAAbgAAAAADbgAAAAACVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAADbgAAAAACVAAAAAACVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAADGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAVAAAAAADZAAAAAACZAAAAAABVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADZAAAAAADZAAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAZAAAAAAAZAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADSAAAAAAASAAAAAAAGwAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAA + tiles: bwAAAAABbwAAAAADcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAACcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAADcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAABcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAACcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAACcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAACcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAADbwAAAAACcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAbwAAAAADbwAAAAACcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAACZQAAAAABVQAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADZQAAAAADZQAAAAABVQAAAAABSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADSQAAAAAASQAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: bgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAACDAAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAADAAAAAACbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABDAAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAADAAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABDAAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAABDAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAADbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAABbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAABbwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAADbwAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAABbwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAACDAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAADAAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABDAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAADAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABDAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAABDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAADbwAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAbgAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADbgAAAAADbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAbgAAAAADbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAbgAAAAABbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAZAAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABcgAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADcgAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADcgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABcgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABcgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADbwAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADcgAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADcgAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -174,88 +174,84 @@ entities: 125: 17,10 126: 17,10 127: 16,10 - 128: 19,11 - 129: 19,12 - 130: 19,12 - 131: 8,10 - 132: 7,9 - 133: 8,6 - 134: 5,7 - 135: 3,-2 - 136: 1,-3 - 137: -2,-2 - 138: -5,-1 - 139: -1,-3 - 140: -1,-3 - 141: -3,-4 - 142: 1,-4 - 143: 1,-2 - 144: -1,-1 - 145: 2,-1 - 146: 5,-1 + 128: 8,10 + 129: 7,9 + 130: 8,6 + 131: 5,7 + 132: 3,-2 + 133: 1,-3 + 134: -2,-2 + 135: -5,-1 + 136: -1,-3 + 137: -1,-3 + 138: -3,-4 + 139: 1,-4 + 140: 1,-2 + 141: -1,-1 + 142: 2,-1 + 143: 5,-1 + 144: 10,0 + 145: 12,0 + 146: 11,-2 147: 10,0 - 148: 12,0 - 149: 11,-2 - 150: 10,0 - 151: 13,0 - 152: 12,-4 - 153: 10,-4 - 154: 11,-3 - 155: 9,-4 - 156: 5,-5 - 157: 6,-6 - 158: 6,-7 - 159: 3,-7 - 160: 0,-7 - 161: -2,-6 - 162: -2,-6 - 163: -6,-7 - 164: -7,-5 - 165: -8,-3 - 166: -11,-3 - 167: -12,-4 - 168: -12,-4 - 169: -17,-3 - 170: -15,0 - 171: -13,1 - 172: -6,4 - 173: -7,8 - 174: -5,8 - 175: -2,10 - 176: -6,12 - 177: -7,10 - 178: -9,9 - 179: -8,8 - 180: -6,11 - 181: -1,11 - 182: -2,8 - 183: -3,7 - 184: -4,9 - 185: -4,11 - 186: -5,10 - 187: -5,9 - 188: 0,8 - 189: -1,9 - 190: -1,7 - 191: 17,0 - 192: 17,-7 - 193: 17,-7 - 194: 16,-11 - 195: 16,-13 - 196: 16,-15 - 197: 15,-16 - 198: 13,-15 - 199: 15,-13 - 200: 17,-12 - 201: 18,-13 - 202: 15,-11 - 203: 15,-10 - 204: 15,-8 - 205: 15,-6 - 206: 15,-5 - 207: 16,-5 - 208: 14,-11 - 209: 14,-8 + 148: 13,0 + 149: 12,-4 + 150: 10,-4 + 151: 11,-3 + 152: 9,-4 + 153: 5,-5 + 154: 6,-6 + 155: 6,-7 + 156: 3,-7 + 157: 0,-7 + 158: -2,-6 + 159: -2,-6 + 160: -6,-7 + 161: -7,-5 + 162: -8,-3 + 163: -11,-3 + 164: -12,-4 + 165: -12,-4 + 166: -17,-3 + 167: -15,0 + 168: -13,1 + 169: -6,4 + 170: -7,8 + 171: -5,8 + 172: -2,10 + 173: -6,12 + 174: -7,10 + 175: -9,9 + 176: -8,8 + 177: -6,11 + 178: -1,11 + 179: -2,8 + 180: -3,7 + 181: -4,9 + 182: -4,11 + 183: -5,10 + 184: -5,9 + 185: 0,8 + 186: -1,9 + 187: -1,7 + 188: 17,0 + 189: 17,-7 + 190: 17,-7 + 191: 16,-11 + 192: 16,-13 + 193: 16,-15 + 194: 15,-16 + 195: 15,-13 + 196: 17,-12 + 197: 18,-13 + 198: 15,-11 + 199: 15,-10 + 200: 15,-8 + 201: 15,-6 + 202: 15,-5 + 203: 16,-5 + 204: 14,-11 + 205: 14,-8 - node: cleanable: True color: '#FFFFFFFF' @@ -315,97 +311,97 @@ entities: 69: -19,-15 70: -19,-15 71: -19,-8 - 210: 15,-12 - 211: 15,-10 - 212: 15,-8 - 213: 15,-5 - 214: 16,-3 - 215: 17,-1 - 216: 16,0 - 217: 12,-1 - 218: 9,-1 - 219: 11,0 - 220: 11,0 - 221: 12,1 - 222: 14,1 - 223: 8,-1 - 224: 7,0 - 225: 4,-1 - 226: 2,-1 - 227: 3,1 - 228: 1,3 - 229: -1,4 - 230: -3,0 - 231: -3,-1 - 232: -3,-3 - 233: 1,-3 - 234: 1,-1 - 235: -1,-1 - 236: -1,-2 - 237: -5,-1 - 238: -4,1 - 239: -3,1 - 240: -1,3 - 241: -3,3 - 242: -6,0 - 243: -7,1 - 244: -7,1 - 245: -9,-1 - 246: -11,-1 - 247: -12,1 - 248: -14,1 - 249: -17,1 - 250: -18,1 - 251: -18,1 - 252: -19,0 - 253: -19,-4 - 254: -19,-6 - 255: -19,-8 - 256: -19,-10 - 257: -19,-12 - 258: -16,-7 - 259: -15,-3 - 260: -17,-4 - 261: -16,-3 - 262: -17,-3 - 263: -7,4 - 264: -5,9 - 265: -4,9 - 266: -3,11 - 267: -5,11 + 206: 15,-12 + 207: 15,-10 + 208: 15,-8 + 209: 15,-5 + 210: 16,-3 + 211: 17,-1 + 212: 16,0 + 213: 12,-1 + 214: 9,-1 + 215: 11,0 + 216: 11,0 + 217: 12,1 + 218: 14,1 + 219: 8,-1 + 220: 7,0 + 221: 4,-1 + 222: 2,-1 + 223: 3,1 + 224: 1,3 + 225: -1,4 + 226: -3,0 + 227: -3,-1 + 228: -3,-3 + 229: 1,-3 + 230: 1,-1 + 231: -1,-1 + 232: -1,-2 + 233: -5,-1 + 234: -4,1 + 235: -3,1 + 236: -1,3 + 237: -3,3 + 238: -6,0 + 239: -7,1 + 240: -7,1 + 241: -9,-1 + 242: -11,-1 + 243: -12,1 + 244: -14,1 + 245: -17,1 + 246: -18,1 + 247: -18,1 + 248: -19,0 + 249: -19,-4 + 250: -19,-6 + 251: -19,-8 + 252: -19,-10 + 253: -19,-12 + 254: -16,-7 + 255: -15,-3 + 256: -17,-4 + 257: -16,-3 + 258: -17,-3 + 259: -7,4 + 260: -5,9 + 261: -4,9 + 262: -3,11 + 263: -5,11 + 264: -6,10 + 265: -6,8 + 266: -6,7 + 267: -3,8 268: -6,10 - 269: -6,8 - 270: -6,7 - 271: -3,8 - 272: -6,10 - 273: -6,10 - 274: -6,14 - 275: -8,14 - 276: -5,16 - 277: 0,17 - 278: 0,18 - 279: 0,10 - 280: -1,9 - 281: 4,6 - 282: 6,6 - 283: 7,6 - 284: 6,8 - 285: 8,9 - 286: 9,10 - 287: 10,10 - 288: 14,5 - 289: 13,6 - 290: 13,7 - 291: 16,7 - 292: 17,6 - 293: 17,6 - 294: 15,6 - 295: 15,6 - 296: 14,6 - 297: 17,0 - 298: 17,1 - 299: 15,1 - 300: 13,0 + 269: -6,10 + 270: -6,14 + 271: -8,14 + 272: -5,16 + 273: 0,17 + 274: 0,18 + 275: 0,10 + 276: -1,9 + 277: 4,6 + 278: 6,6 + 279: 7,6 + 280: 6,8 + 281: 8,9 + 282: 9,10 + 283: 10,10 + 284: 14,5 + 285: 13,6 + 286: 13,7 + 287: 16,7 + 288: 17,6 + 289: 17,6 + 290: 15,6 + 291: 15,6 + 292: 14,6 + 293: 17,0 + 294: 17,1 + 295: 15,1 + 296: 13,0 - node: cleanable: True color: '#FFFFFFFF' @@ -414,33 +410,33 @@ entities: 20: -5,17 21: -1,15 22: 0,16 - 301: 14,-8 - 302: 14,-10 - 303: 17,-10 - 304: 17,-8 - 305: 17,-7 - 306: 17,-5 - 307: 18,-5 - 308: 18,-5 - 309: 17,-8 - 310: 17,-9 - 311: 17,-10 - 312: 18,0 - 313: 18,1 - 314: 16,0 - 315: 14,-1 - 316: 12,-1 - 317: 9,-1 - 318: 7,-1 - 319: 4,-1 - 320: 2,-1 + 297: 14,-8 + 298: 14,-10 + 299: 17,-10 + 300: 17,-8 + 301: 17,-7 + 302: 17,-5 + 303: 18,-5 + 304: 18,-5 + 305: 17,-8 + 306: 17,-9 + 307: 17,-10 + 308: 18,0 + 309: 18,1 + 310: 16,0 + 311: 14,-1 + 312: 12,-1 + 313: 9,-1 + 314: 7,-1 + 315: 4,-1 + 316: 2,-1 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 321: 0,6 - 322: -1,6 + 317: 0,6 + 318: -1,6 type: DecalGrid - version: 2 data: @@ -455,7 +451,8 @@ entities: 0,3: 0: 30591 1,0: - 0: 65535 + 0: 49151 + 2: 16384 2,0: 0: 65535 3,0: @@ -479,7 +476,8 @@ entities: 0,-3: 0: 16159 0,-2: - 0: 65535 + 0: 63487 + 2: 2048 0,-1: 0: 65535 0,-5: @@ -488,7 +486,7 @@ entities: 0: 65535 1,2: 0: 57343 - 2: 8192 + 3: 8192 1,3: 0: 143 2,1: @@ -530,7 +528,8 @@ entities: 2,-2: 0: 65527 2,-1: - 0: 65535 + 0: 65503 + 2: 32 3,-4: 0: 65535 3,-3: @@ -552,7 +551,8 @@ entities: -3,-2: 0: 65525 -3,-1: - 0: 65535 + 0: 65327 + 2: 208 -2,-4: 0: 7951 -2,-3: @@ -566,7 +566,8 @@ entities: -1,-3: 0: 40719 -1,-2: - 0: 65535 + 0: 65023 + 2: 512 -1,-1: 0: 65535 -3,4: @@ -586,7 +587,8 @@ entities: 3,1: 0: 65535 3,2: - 0: 65535 + 0: 61439 + 2: 4096 3,3: 0: 255 4,1: @@ -608,15 +610,19 @@ entities: 4,-4: 0: 65535 4,-3: - 0: 65535 + 0: 49151 + 2: 16384 4,-2: 0: 65535 -5,-4: - 0: 65535 + 0: 65527 + 2: 8 -5,-3: - 0: 65535 + 0: 65527 + 2: 8 -5,-2: - 0: 65535 + 0: 65527 + 2: 8 -5,-1: 0: 65535 -5,-5: @@ -662,6 +668,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -1130,6 +1151,12 @@ entities: type: Transform - proto: AirlockExternalGlass entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform - uid: 119 components: - pos: 0.5,-7.5 @@ -1140,14 +1167,21 @@ entities: - pos: 11.5,-4.5 parent: 1 type: Transform - - uid: 394 + - uid: 442 components: - - pos: -10.5,-4.5 + - pos: 18.5,11.5 parent: 1 type: Transform - - uid: 442 + - uid: 1724 components: - - pos: 18.5,11.5 + - rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - uid: 1725 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-0.5 parent: 1 type: Transform - proto: AirlockGlass @@ -1293,6 +1327,30 @@ entities: - pos: -12.5,-1.5 parent: 1 type: Transform + - uid: 1600 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 1601 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 1602 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 1603 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform - proto: AirlockMaint entities: - uid: 50 @@ -1511,6 +1569,12 @@ entities: type: Transform - proto: AtmosDeviceFanTiny entities: + - uid: 7 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform - uid: 439 components: - pos: -9.5,7.5 @@ -1561,11 +1625,6 @@ entities: - pos: 11.5,-4.5 parent: 1 type: Transform - - uid: 1612 - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform - uid: 1631 components: - pos: -9.5,18.5 @@ -1608,43 +1667,6 @@ entities: pos: 19.5,-0.5 parent: 1 type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 1609 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 1608 - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform -- proto: Autolathe - entities: - - uid: 154 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - delay: 999999 - type: Anchorable -- proto: BarSign - entities: - - uid: 1714 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 1715 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 1 - type: Transform - proto: Bed entities: - uid: 472 @@ -1744,16 +1766,76 @@ entities: - pos: -14.5,-15.5 parent: 1 type: Transform -- proto: BoozeDispenser +- proto: BenchSteelLeft entities: - - uid: 589 + - uid: 1740 components: - rot: -1.5707963267948966 rad - pos: 18.5,-6.5 + pos: -4.5,17.5 parent: 1 type: Transform - - delay: 999999 - type: Anchorable + - bodyType: Static + type: Physics + - uid: 1764 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSteelMiddle + entities: + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1765 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1812 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSteelRight + entities: + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1813 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics - proto: BoxEncryptionKeyScience entities: - uid: 650 @@ -4430,6 +4512,24 @@ entities: - pos: -7.5,10.5 parent: 1 type: Transform + - uid: 400 + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 1 + type: Transform - proto: ChairWood entities: - uid: 591 @@ -4463,6 +4563,13 @@ entities: type: Transform - delay: 999999 type: Anchorable +- proto: ClosetBombFilled + entities: + - uid: 335 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform - proto: ClosetEmergencyFilledRandom entities: - uid: 312 @@ -4484,6 +4591,24 @@ entities: - pos: -8.5,-2.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - uid: 51 @@ -4491,16 +4616,77 @@ entities: - pos: 3.5,-5.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 52 components: - pos: -2.5,-5.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 1622 components: - pos: 9.5,-2.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetRadiationSuitFilled + entities: + - uid: 109 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform - proto: ClosetWallEmergencyFilledRandom entities: - uid: 1623 @@ -4522,16 +4708,16 @@ entities: type: Transform - proto: ClosetWallFireFilledRandom entities: - - uid: 1624 + - uid: 415 components: - - rot: 3.141592653589793 rad - pos: -0.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 parent: 1 type: Transform - - uid: 1626 + - uid: 1624 components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 1 type: Transform - uid: 1628 @@ -4569,15 +4755,6 @@ entities: pos: 8.5,8.5 parent: 1 type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 1843 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - delay: 999999 - type: Anchorable - proto: ConveyorBelt entities: - uid: 336 @@ -4639,6 +4816,13 @@ entities: - pos: 18.5,-9.5 parent: 1 type: Transform +- proto: CrateScienceLabBundle + entities: + - uid: 120 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform - proto: CrateServiceJanitorialSupplies entities: - uid: 1821 @@ -4646,6 +4830,24 @@ entities: - pos: -9.5,-2.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: CrateTrashCart entities: - uid: 1824 @@ -4653,6 +4855,24 @@ entities: - pos: -11.5,-2.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: CryoPod entities: - uid: 1052 @@ -4751,12 +4971,6 @@ entities: pos: -18.5,0.5 parent: 1 type: Transform - - uid: 1746 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1 - type: Transform - uid: 1747 components: - rot: 1.5707963267948966 rad @@ -4837,6 +5051,8 @@ entities: - pos: 15.5,3.5 parent: 1 type: Transform + - name: Anomalous Lab + type: FaxMachine - delay: 999999 type: Anchorable - proto: Firelock @@ -5217,14 +5433,14 @@ entities: - pos: 16.5,4.5 parent: 1 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - uid: 1203 components: - pos: 16.5,5.5 parent: 1 type: Transform - - color: '#03FCD3FF' + - color: '#990000FF' type: AtmosPipeColor - proto: GasMixerFlipped entities: @@ -5236,8 +5452,26 @@ entities: type: Transform - color: '#BA0707FF' type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 11 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeBend entities: + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 65 components: - pos: 18.5,4.5 @@ -5565,6 +5799,14 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: + - uid: 10 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 64 components: - rot: -1.5707963267948966 rad @@ -5603,12 +5845,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 236 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - uid: 237 components: - pos: 18.5,-1.5 @@ -5632,13 +5868,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 270 - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 289 components: - rot: 1.5707963267948966 rad @@ -5653,13 +5882,15 @@ entities: pos: 17.5,7.5 parent: 1 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 362 components: - rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 448 components: @@ -5918,13 +6149,15 @@ entities: pos: 18.5,-1.5 parent: 1 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 766 components: - rot: -1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 767 components: @@ -5932,7 +6165,7 @@ entities: pos: 9.5,-1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 768 components: @@ -5940,13 +6173,15 @@ entities: pos: -7.5,-1.5 parent: 1 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 769 components: - rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 772 components: @@ -6416,43 +6651,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 884 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 885 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 886 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 887 components: - rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 1 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 888 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 889 components: @@ -6460,7 +6673,7 @@ entities: pos: 9.5,-1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 893 components: @@ -7184,6 +7397,14 @@ entities: type: AtmosPipeColor - proto: GasPipeTJunction entities: + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 95 components: - rot: 1.5707963267948966 rad @@ -7316,13 +7537,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 879 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 880 components: - rot: -1.5707963267948966 rad @@ -7470,13 +7684,6 @@ entities: type: Transform - proto: GasPressurePump entities: - - uid: 696 - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 722 components: - pos: 3.5,9.5 @@ -7604,12 +7811,6 @@ entities: type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 437 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform - uid: 681 components: - rot: 3.141592653589793 rad @@ -7950,6 +8151,60 @@ entities: type: Anchorable - proto: Grille entities: + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 1 + type: Transform + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-15.5 + parent: 1 + type: Transform - uid: 355 components: - pos: -1.5,10.5 @@ -7975,24 +8230,22 @@ entities: - pos: 17.5,2.5 parent: 1 type: Transform - - uid: 606 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 847 + - uid: 849 components: - - pos: -13.5,-15.5 + - rot: 3.141592653589793 rad + pos: -13.5,-7.5 parent: 1 type: Transform - - uid: 849 + - uid: 1714 components: - - pos: -13.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-1.5 parent: 1 type: Transform - - uid: 852 + - uid: 1715 components: - - pos: -13.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 18.5,2.5 parent: 1 type: Transform - proto: HospitalCurtainsOpen @@ -8055,37 +8308,31 @@ entities: pos: 18.498629,-14.220733 parent: 1 type: Transform -- proto: LiquidNitrogenCanister - entities: - - uid: 710 - components: - - anchored: True - pos: 5.5,11.5 - parent: 1 - type: Transform - - releasePressure: 200 - type: GasCanister - - bodyType: Static - type: Physics -- proto: LiquidOxygenCanister - entities: - - uid: 711 - components: - - anchored: True - pos: 3.5,11.5 - parent: 1 - type: Transform - - releasePressure: 200 - type: GasCanister - - bodyType: Static - type: Physics -- proto: LockerAtmosphericsFilledHardsuit +- proto: LockerAtmosphericsFilled entities: - - uid: 122 + - uid: 112 components: - pos: 12.5,11.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: LockerBoozeFilled entities: - uid: 588 @@ -8093,13 +8340,24 @@ entities: - pos: 18.5,-8.5 parent: 1 type: Transform -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 1815 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: LockerChemistryFilled entities: - uid: 616 @@ -8107,20 +8365,6 @@ entities: - pos: 18.5,6.5 parent: 1 type: Transform -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 1673 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 1677 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - proto: LockerEngineerFilled entities: - uid: 123 @@ -8128,6 +8372,24 @@ entities: - pos: 6.5,3.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: LockerMedicalFilled entities: - uid: 443 @@ -8142,11 +8404,21 @@ entities: - pos: -3.5,7.5 parent: 1 type: Transform -- proto: LockerResearchDirectorFilledHardsuit +- proto: LockerScienceFilled entities: - - uid: 719 + - uid: 113 components: - - pos: 4.5,4.5 + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -16.5,-15.5 parent: 1 type: Transform - proto: MachineAnomalyGenerator @@ -8185,6 +8457,40 @@ entities: pos: 2.5,-3.5 parent: 1 type: Transform +- proto: MachineFrame + entities: + - uid: 68 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: MachineFrameDestroyed + entities: + - uid: 74 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - uid: 1055 + components: + - pos: 18.5,-6.5 + parent: 1 + type: Transform - proto: MaintenancePlantSpawner entities: - uid: 1855 @@ -8272,6 +8578,26 @@ entities: - pos: 13.938791,8.600368 parent: 1 type: Transform +- proto: NitrogenCanister + entities: + - uid: 78 + components: + - anchored: True + pos: 5.5,11.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: OxygenCanister + entities: + - uid: 91 + components: + - anchored: True + pos: 3.5,11.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics - proto: PartRodMetal1 entities: - uid: 1629 @@ -8608,12 +8934,6 @@ entities: pos: 19.5,12.5 parent: 1 type: Transform - - uid: 1730 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,10.5 - parent: 1 - type: Transform - uid: 1760 components: - rot: -1.5707963267948966 rad @@ -8652,29 +8972,12 @@ entities: pos: 14.5,-14.5 parent: 1 type: Transform - - uid: 1705 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 1 - type: Transform - - uid: 1706 - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform - uid: 1707 components: - rot: -1.5707963267948966 rad pos: 18.5,-5.5 parent: 1 type: Transform - - uid: 1708 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - proto: PoweredSmallLight entities: - uid: 283 @@ -8701,20 +9004,11 @@ entities: pos: -15.5,-3.5 parent: 1 type: Transform -- proto: Protolathe +- proto: Rack entities: - - uid: 155 + - uid: 440 components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - delay: 999999 - type: Anchorable -- proto: Rack - entities: - - uid: 440 - components: - - pos: 5.5,-5.5 + - pos: 5.5,-5.5 parent: 1 type: Transform - uid: 441 @@ -8727,11 +9021,12 @@ entities: - pos: -10.5,-2.5 parent: 1 type: Transform -- proto: RandomAnomalySpawner +- proto: Railing entities: - - uid: 1688 + - uid: 1057 components: - - pos: -16.5,0.5 + - rot: 3.141592653589793 rad + pos: 19.5,12.5 parent: 1 type: Transform - proto: RandomInstruments @@ -9005,273 +9300,108 @@ entities: - pos: 10.5,1.5 parent: 1 type: Transform -- proto: ReagentSlimeSpawner +- proto: ReinforcedWindow entities: - - uid: 335 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 338 + - uid: 15 components: - - pos: 14.5,-9.5 + - rot: 3.141592653589793 rad + pos: 13.5,-16.5 parent: 1 type: Transform - - uid: 339 + - uid: 16 components: - - pos: 14.5,-11.5 + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 1 type: Transform - - uid: 351 + - uid: 17 components: - - pos: 13.5,3.5 + - rot: 3.141592653589793 rad + pos: 15.5,-16.5 parent: 1 type: Transform - - uid: 352 + - uid: 18 components: - - pos: 14.5,5.5 + - rot: 3.141592653589793 rad + pos: 16.5,-16.5 parent: 1 type: Transform - - uid: 651 + - uid: 19 components: - - pos: -0.5,10.5 + - rot: 3.141592653589793 rad + pos: 17.5,-16.5 parent: 1 type: Transform - - uid: 665 + - uid: 20 components: - - pos: 14.5,-7.5 + - rot: 3.141592653589793 rad + pos: 18.5,-16.5 parent: 1 type: Transform - - uid: 667 + - uid: 30 components: - - pos: -4.5,10.5 + - rot: 3.141592653589793 rad + pos: 19.5,-16.5 parent: 1 type: Transform - - uid: 700 + - uid: 122 components: - - pos: -0.5,8.5 + - rot: 3.141592653589793 rad + pos: 17.5,2.5 parent: 1 type: Transform - - uid: 715 + - uid: 154 components: - - pos: 9.5,6.5 + - rot: 3.141592653589793 rad + pos: 18.5,2.5 parent: 1 type: Transform - - uid: 1041 + - uid: 155 components: - - pos: 16.5,7.5 + - rot: 3.141592653589793 rad + pos: 16.5,2.5 parent: 1 type: Transform - - uid: 1050 + - uid: 236 components: - - pos: 15.5,10.5 + - rot: 3.141592653589793 rad + pos: -13.5,-7.5 parent: 1 type: Transform - - uid: 1053 + - uid: 461 components: - - pos: 16.5,-13.5 + - rot: 3.141592653589793 rad + pos: -13.5,-15.5 parent: 1 type: Transform - - uid: 1055 + - uid: 462 components: - - pos: 6.5,-4.5 + - rot: 3.141592653589793 rad + pos: -13.5,-11.5 parent: 1 type: Transform - - uid: 1056 + - uid: 562 components: - - pos: -15.5,-10.5 + - rot: 3.141592653589793 rad + pos: 15.5,2.5 parent: 1 type: Transform - - uid: 1057 + - uid: 590 components: - - pos: -14.5,-3.5 + - rot: 3.141592653589793 rad + pos: 14.5,2.5 parent: 1 type: Transform - uid: 1058 components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 1060 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 1061 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - uid: 1062 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 1063 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 1067 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 1646 - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 1649 - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 1652 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - uid: 1662 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 1665 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 1666 - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 1679 - components: - - pos: -15.5,-13.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 1839 - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform - - uid: 1848 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 1849 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 1850 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 356 - components: - - rot: -1.5707963267948966 rad + - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 1 type: Transform - - uid: 496 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 535 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 557 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 600 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 601 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 848 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: -13.5,-11.5 - parent: 1 - type: Transform - - uid: 860 + - uid: 1059 components: - - pos: -13.5,-15.5 + - rot: 3.141592653589793 rad + pos: 18.5,-1.5 parent: 1 type: Transform - proto: RemoteSignaller @@ -9286,15 +9416,6 @@ entities: - pos: 4.2830386,3.5738542 parent: 1 type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 68 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - delay: 999999 - type: Anchorable - proto: ResearchDisk5000 entities: - uid: 160 @@ -9349,15 +9470,6 @@ entities: - pos: -3.5,2.5 parent: 1 type: Transform -- proto: ScienceTechFab - entities: - - uid: 845 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - delay: 999999 - type: Anchorable - proto: ShardGlassPlasma entities: - uid: 646 @@ -9586,16 +9698,6 @@ entities: - pos: 8.5,11.5 parent: 1 type: Transform -- proto: soda_dispenser - entities: - - uid: 590 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 1 - type: Transform - - delay: 999999 - type: Anchorable - proto: SolarPanel entities: - uid: 186 @@ -10122,61 +10224,29 @@ entities: - pos: 16.5,-11.5 parent: 1 type: Transform -- proto: SpawnMobSlug +- proto: SpawnVehicleJanicart entities: - - uid: 295 + - uid: 1817 components: - - pos: -0.5,16.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 type: Transform - - uid: 323 +- proto: StoolBar + entities: + - uid: 554 components: - - pos: -0.5,18.5 + - rot: 1.5707963267948966 rad + pos: 15.5,-9.5 parent: 1 type: Transform - - uid: 334 + - uid: 1318 components: - - pos: -6.5,15.5 + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 parent: 1 type: Transform - - uid: 1054 - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform - - uid: 1059 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 1645 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 1817 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform -- proto: StoolBar - entities: - - uid: 554 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1318 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - uid: 1712 + - uid: 1712 components: - rot: 1.5707963267948966 rad pos: 15.5,-8.5 @@ -10438,1620 +10508,1635 @@ entities: type: Transform - delay: 999999 type: Anchorable -- proto: WallPlastitanium +- proto: WallReinforced entities: - - uid: 7 + - uid: 12 components: - - pos: 2.5,-4.5 + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 parent: 1 type: Transform - - uid: 8 + - uid: 13 components: - - pos: 3.5,-4.5 + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 parent: 1 type: Transform - - uid: 9 + - uid: 14 components: - - pos: 4.5,-4.5 + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 1 type: Transform - - uid: 10 + - uid: 22 components: - - pos: 5.5,-4.5 + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 parent: 1 type: Transform - - uid: 11 + - uid: 23 components: - - pos: 5.5,-3.5 + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 parent: 1 type: Transform - - uid: 12 + - uid: 24 components: - - pos: 5.5,-2.5 + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 parent: 1 type: Transform - - uid: 13 + - uid: 32 components: - - pos: 5.5,-1.5 + - rot: 3.141592653589793 rad + pos: 13.5,-15.5 parent: 1 type: Transform - - uid: 14 + - uid: 33 components: - - pos: 5.5,2.5 + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 parent: 1 type: Transform - - uid: 15 + - uid: 34 components: - - pos: 5.5,3.5 + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 1 type: Transform - - uid: 16 + - uid: 69 components: - - pos: 5.5,4.5 + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 parent: 1 type: Transform - - uid: 17 + - uid: 70 components: - - pos: 5.5,5.5 + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 parent: 1 type: Transform - - uid: 18 + - uid: 72 components: - - pos: 4.5,5.5 + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 1 type: Transform - - uid: 19 + - uid: 73 components: - - pos: 3.5,5.5 + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 parent: 1 type: Transform - - uid: 20 + - uid: 75 components: - - pos: 2.5,5.5 + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 parent: 1 type: Transform - - uid: 21 + - uid: 76 components: - - pos: -1.5,5.5 + - rot: 3.141592653589793 rad + pos: 2.5,5.5 parent: 1 type: Transform - - uid: 22 + - uid: 77 components: - - pos: -2.5,5.5 + - rot: 3.141592653589793 rad + pos: 3.5,5.5 parent: 1 type: Transform - - uid: 23 + - uid: 79 components: - - pos: -3.5,5.5 + - pos: 11.5,2.5 parent: 1 type: Transform - - uid: 24 + - uid: 107 components: - - pos: -4.5,5.5 + - rot: 3.141592653589793 rad + pos: 4.5,5.5 parent: 1 type: Transform - - uid: 25 + - uid: 108 components: - - pos: -4.5,4.5 + - rot: 3.141592653589793 rad + pos: 5.5,4.5 parent: 1 type: Transform - - uid: 26 + - uid: 121 components: - - pos: -4.5,3.5 + - rot: 3.141592653589793 rad + pos: 5.5,5.5 parent: 1 type: Transform - - uid: 27 + - uid: 125 components: - - pos: -4.5,2.5 + - rot: 3.141592653589793 rad + pos: 5.5,2.5 parent: 1 type: Transform - - uid: 28 + - uid: 133 components: - - pos: -4.5,-1.5 + - rot: 3.141592653589793 rad + pos: 5.5,3.5 parent: 1 type: Transform - - uid: 29 + - uid: 135 components: - - pos: -4.5,-2.5 + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 parent: 1 type: Transform - - uid: 30 + - uid: 136 components: - - pos: -4.5,-3.5 + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 parent: 1 type: Transform - - uid: 31 + - uid: 137 components: - - pos: -4.5,-4.5 + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 parent: 1 type: Transform - - uid: 32 + - uid: 138 components: - - pos: -3.5,-4.5 + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 parent: 1 type: Transform - - uid: 33 + - uid: 144 components: - - pos: -2.5,-4.5 + - rot: 3.141592653589793 rad + pos: -4.5,3.5 parent: 1 type: Transform - - uid: 34 + - uid: 149 components: - - pos: -1.5,-4.5 + - rot: 3.141592653589793 rad + pos: -4.5,2.5 parent: 1 type: Transform - - uid: 107 + - uid: 150 components: - - pos: -0.5,-4.5 + - rot: 3.141592653589793 rad + pos: -4.5,4.5 parent: 1 type: Transform - - uid: 108 + - uid: 151 components: - - pos: 1.5,-4.5 + - rot: 3.141592653589793 rad + pos: -4.5,5.5 parent: 1 type: Transform -- proto: WallReinforced - entities: - - uid: 73 + - uid: 158 components: - - rot: 1.5707963267948966 rad - pos: 2.5,12.5 + - rot: 3.141592653589793 rad + pos: -2.5,5.5 parent: 1 type: Transform - - uid: 79 + - uid: 159 components: - - pos: 11.5,2.5 + - rot: 3.141592653589793 rad + pos: -3.5,5.5 parent: 1 type: Transform - - uid: 112 + - uid: 163 components: - - pos: 2.5,-7.5 + - rot: 3.141592653589793 rad + pos: -1.5,5.5 parent: 1 type: Transform - - uid: 113 + - uid: 164 components: - - pos: -1.5,-7.5 + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 parent: 1 type: Transform - - uid: 296 + - uid: 165 components: - - rot: -1.5707963267948966 rad - pos: -1.5,6.5 + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 parent: 1 type: Transform - - uid: 322 + - uid: 167 components: - - rot: -1.5707963267948966 rad - pos: -9.5,12.5 + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 parent: 1 type: Transform - - uid: 324 + - uid: 178 components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 + - rot: 3.141592653589793 rad + pos: 13.5,-14.5 parent: 1 type: Transform - - uid: 331 + - uid: 182 components: - - rot: -1.5707963267948966 rad - pos: -1.5,12.5 + - rot: 3.141592653589793 rad + pos: 19.5,-11.5 parent: 1 type: Transform -- proto: WallSolid - entities: - - uid: 2 + - uid: 259 components: - rot: 3.141592653589793 rad - pos: 8.5,-5.5 + pos: -0.5,-4.5 parent: 1 type: Transform - - uid: 69 + - uid: 265 components: - rot: 3.141592653589793 rad - pos: -6.5,20.5 + pos: 5.5,-2.5 parent: 1 type: Transform - - uid: 70 + - uid: 270 components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 + - rot: 3.141592653589793 rad + pos: -0.5,20.5 parent: 1 type: Transform - - uid: 72 + - uid: 282 components: - - rot: 1.5707963267948966 rad - pos: 4.5,12.5 + - rot: 3.141592653589793 rad + pos: -13.5,-12.5 parent: 1 type: Transform - - uid: 74 + - uid: 284 components: - - rot: 1.5707963267948966 rad - pos: 6.5,12.5 + - rot: 3.141592653589793 rad + pos: -19.5,-8.5 parent: 1 type: Transform - - uid: 75 + - uid: 285 components: - - rot: 1.5707963267948966 rad - pos: 5.5,12.5 + - rot: 3.141592653589793 rad + pos: -2.5,20.5 parent: 1 type: Transform - - uid: 76 + - uid: 294 components: - - rot: 1.5707963267948966 rad - pos: 8.5,12.5 + - rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 1 type: Transform - - uid: 77 + - uid: 296 components: - - rot: 1.5707963267948966 rad - pos: 7.5,12.5 + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 parent: 1 type: Transform - - uid: 78 + - uid: 301 components: - - rot: 1.5707963267948966 rad - pos: 9.5,12.5 + - rot: 3.141592653589793 rad + pos: 1.5,20.5 parent: 1 type: Transform - - uid: 80 + - uid: 302 components: - - pos: 6.5,2.5 + - rot: 3.141592653589793 rad + pos: 1.5,19.5 parent: 1 type: Transform - - uid: 81 + - uid: 304 components: - - pos: 4.5,11.5 + - rot: 3.141592653589793 rad + pos: 2.5,14.5 parent: 1 type: Transform - - uid: 82 + - uid: 307 components: - - pos: 8.5,2.5 + - rot: 3.141592653589793 rad + pos: 2.5,15.5 parent: 1 type: Transform - - uid: 83 + - uid: 311 components: - - pos: 9.5,2.5 + - rot: 3.141592653589793 rad + pos: -19.5,-3.5 parent: 1 type: Transform - - uid: 84 + - uid: 313 components: - - pos: 10.5,2.5 + - rot: 3.141592653589793 rad + pos: 2.5,12.5 parent: 1 type: Transform - - uid: 85 + - uid: 317 components: - - pos: 11.5,6.5 + - rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 1 type: Transform - - uid: 86 + - uid: 321 components: - - pos: 11.5,7.5 + - rot: 3.141592653589793 rad + pos: 2.5,13.5 parent: 1 type: Transform - - uid: 87 + - uid: 324 components: - - pos: 11.5,8.5 + - rot: 3.141592653589793 rad + pos: -13.5,-10.5 parent: 1 type: Transform - - uid: 88 + - uid: 330 components: - - pos: 11.5,9.5 + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 parent: 1 type: Transform - - uid: 90 + - uid: 331 components: - - pos: 11.5,11.5 + - rot: -1.5707963267948966 rad + pos: -1.5,12.5 parent: 1 type: Transform - - uid: 91 + - uid: 347 components: - - rot: 1.5707963267948966 rad - pos: 10.5,12.5 + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 1 type: Transform - - uid: 92 + - uid: 348 components: - - pos: 11.5,3.5 + - rot: 3.141592653589793 rad + pos: 19.5,4.5 parent: 1 type: Transform - - uid: 93 + - uid: 356 components: - - pos: 11.5,4.5 + - rot: 3.141592653589793 rad + pos: -14.5,-16.5 parent: 1 type: Transform - - uid: 94 + - uid: 364 components: - - pos: 11.5,5.5 + - rot: 3.141592653589793 rad + pos: -13.5,-16.5 parent: 1 type: Transform - - uid: 96 + - uid: 365 components: - rot: 3.141592653589793 rad - pos: -9.5,15.5 + pos: -13.5,-14.5 parent: 1 type: Transform - - uid: 97 + - uid: 366 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + - rot: 3.141592653589793 rad + pos: -15.5,-16.5 parent: 1 type: Transform - - uid: 98 + - uid: 394 components: - rot: 3.141592653589793 rad - pos: -0.5,20.5 + pos: -13.5,-13.5 parent: 1 type: Transform - - uid: 109 + - uid: 395 components: - - pos: 11.5,12.5 + - rot: 3.141592653589793 rad + pos: 14.5,12.5 parent: 1 type: Transform - - uid: 111 + - uid: 396 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 + - rot: 3.141592653589793 rad + pos: 15.5,12.5 parent: 1 type: Transform - - uid: 115 + - uid: 399 components: - - pos: -0.5,-7.5 + - rot: 3.141592653589793 rad + pos: -3.5,20.5 parent: 1 type: Transform - - uid: 116 + - uid: 404 components: - - pos: 1.5,-7.5 + - rot: 3.141592653589793 rad + pos: 13.5,-11.5 parent: 1 type: Transform - - uid: 120 + - uid: 407 components: - - pos: -9.5,-4.5 + - rot: 3.141592653589793 rad + pos: 2.5,17.5 parent: 1 type: Transform - - uid: 121 + - uid: 408 components: - - pos: -11.5,-4.5 + - rot: 3.141592653589793 rad + pos: 13.5,12.5 parent: 1 type: Transform - - uid: 125 + - uid: 409 components: - - pos: -12.5,-4.5 + - rot: 3.141592653589793 rad + pos: -7.5,6.5 parent: 1 type: Transform - - uid: 127 + - uid: 410 components: - - rot: -1.5707963267948966 rad - pos: 14.5,9.5 + - rot: 3.141592653589793 rad + pos: -19.5,-9.5 parent: 1 type: Transform - - uid: 128 + - uid: 411 components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 + - rot: 3.141592653589793 rad + pos: -9.5,14.5 parent: 1 type: Transform - - uid: 133 + - uid: 412 components: - - pos: 10.5,-4.5 + - rot: 3.141592653589793 rad + pos: -9.5,12.5 parent: 1 type: Transform - - uid: 135 + - uid: 413 components: - - pos: 12.5,-4.5 + - rot: 3.141592653589793 rad + pos: 16.5,12.5 parent: 1 type: Transform - - uid: 136 + - uid: 416 components: - - pos: 13.5,-4.5 + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 parent: 1 type: Transform - - uid: 137 + - uid: 417 components: - - pos: 5.5,-7.5 + - rot: 3.141592653589793 rad + pos: 13.5,-4.5 parent: 1 type: Transform - - uid: 138 + - uid: 418 components: - - pos: 7.5,-7.5 + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 parent: 1 type: Transform - - uid: 142 + - uid: 419 components: - - rot: -1.5707963267948966 rad - pos: 12.5,9.5 + - rot: 3.141592653589793 rad + pos: -4.5,20.5 parent: 1 type: Transform - - uid: 144 + - uid: 420 components: - - pos: 6.5,-7.5 + - rot: 3.141592653589793 rad + pos: 3.5,12.5 parent: 1 type: Transform - - uid: 149 + - uid: 422 components: - - pos: 3.5,-7.5 + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 parent: 1 type: Transform - - uid: 150 + - uid: 423 components: - - pos: 8.5,-7.5 + - rot: 3.141592653589793 rad + pos: -12.5,2.5 parent: 1 type: Transform - - uid: 151 + - uid: 424 components: - - pos: 4.5,-7.5 + - rot: 3.141592653589793 rad + pos: -11.5,2.5 parent: 1 type: Transform - - uid: 158 + - uid: 425 components: - rot: 3.141592653589793 rad - pos: -4.5,20.5 + pos: -10.5,2.5 parent: 1 type: Transform - - uid: 159 + - uid: 426 components: - rot: 3.141592653589793 rad - pos: -3.5,20.5 + pos: -8.5,2.5 parent: 1 type: Transform - - uid: 163 + - uid: 427 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 + - rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 1 type: Transform - - uid: 164 + - uid: 428 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 + - rot: 3.141592653589793 rad + pos: -7.5,3.5 parent: 1 type: Transform - - uid: 165 + - uid: 429 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 + - rot: 3.141592653589793 rad + pos: -7.5,4.5 parent: 1 type: Transform - - uid: 167 + - uid: 430 components: - rot: 3.141592653589793 rad - pos: 2.5,14.5 + pos: -7.5,5.5 parent: 1 type: Transform - - uid: 178 + - uid: 431 components: - rot: 3.141592653589793 rad - pos: 1.5,19.5 + pos: -7.5,2.5 parent: 1 type: Transform - - uid: 179 + - uid: 437 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + - rot: 3.141592653589793 rad + pos: -8.5,6.5 parent: 1 type: Transform - - uid: 182 + - uid: 449 components: - rot: 3.141592653589793 rad - pos: -7.5,-5.5 + pos: -9.5,6.5 parent: 1 type: Transform - - uid: 235 + - uid: 450 components: - rot: 3.141592653589793 rad - pos: 13.5,-1.5 + pos: -6.5,20.5 parent: 1 type: Transform - - uid: 259 + - uid: 451 components: - rot: 3.141592653589793 rad - pos: 1.5,20.5 + pos: -3.5,-7.5 parent: 1 type: Transform - - uid: 264 + - uid: 452 components: - - pos: 2.5,-5.5 + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 parent: 1 type: Transform - - uid: 265 + - uid: 453 components: - - pos: -8.5,-4.5 + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 parent: 1 type: Transform - - uid: 282 + - uid: 454 components: - - pos: 19.5,-1.5 + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 parent: 1 type: Transform - - uid: 285 + - uid: 455 components: - rot: 3.141592653589793 rad - pos: 8.5,-4.5 + pos: -7.5,-5.5 parent: 1 type: Transform - - uid: 286 + - uid: 456 components: - rot: 3.141592653589793 rad - pos: -7.5,-2.5 + pos: -7.5,-4.5 parent: 1 type: Transform - - uid: 292 + - uid: 457 components: - - pos: 10.5,-1.5 + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 parent: 1 type: Transform - - uid: 293 + - uid: 458 components: - - pos: 9.5,-1.5 + - rot: 3.141592653589793 rad + pos: 19.5,-14.5 parent: 1 type: Transform - - uid: 294 + - uid: 459 components: - - rot: 1.5707963267948966 rad - pos: 3.5,12.5 + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 parent: 1 type: Transform - - uid: 301 + - uid: 460 components: - rot: 3.141592653589793 rad - pos: -2.5,20.5 + pos: -12.5,-4.5 parent: 1 type: Transform - - uid: 302 + - uid: 463 components: - rot: 3.141592653589793 rad - pos: -7.5,6.5 + pos: 19.5,9.5 parent: 1 type: Transform - - uid: 304 + - uid: 464 components: - - rot: 1.5707963267948966 rad - pos: -8.5,6.5 + - rot: 3.141592653589793 rad + pos: 18.5,9.5 parent: 1 type: Transform - - uid: 307 + - uid: 465 components: - rot: 3.141592653589793 rad - pos: -9.5,14.5 + pos: 18.5,10.5 parent: 1 type: Transform - - uid: 311 + - uid: 466 components: - rot: 3.141592653589793 rad - pos: -8.5,19.5 + pos: 13.5,-6.5 parent: 1 type: Transform - - uid: 313 + - uid: 467 components: - rot: 3.141592653589793 rad - pos: -9.5,19.5 + pos: 13.5,-7.5 parent: 1 type: Transform - - uid: 317 + - uid: 468 components: - rot: 3.141592653589793 rad - pos: -8.5,20.5 - parent: 1 - type: Transform - - uid: 321 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 325 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1 - type: Transform - - uid: 327 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - uid: 328 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 329 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 332 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - uid: 333 - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 340 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 347 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 348 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 349 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 350 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 359 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: 13.5,-9.5 parent: 1 type: Transform - - uid: 364 + - uid: 469 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 + - rot: 3.141592653589793 rad + pos: 13.5,-8.5 parent: 1 type: Transform - - uid: 365 + - uid: 470 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 + - rot: 3.141592653589793 rad + pos: 13.5,-10.5 parent: 1 type: Transform - - uid: 366 + - uid: 471 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 + - rot: 3.141592653589793 rad + pos: 19.5,8.5 parent: 1 type: Transform - - uid: 367 + - uid: 478 components: - - rot: 1.5707963267948966 rad - pos: 2.5,11.5 + - rot: 3.141592653589793 rad + pos: 4.5,12.5 parent: 1 type: Transform - - uid: 369 + - uid: 479 components: - - rot: 1.5707963267948966 rad - pos: 2.5,9.5 + - rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1 type: Transform - - uid: 370 + - uid: 480 components: - - rot: 1.5707963267948966 rad - pos: 2.5,8.5 + - rot: 3.141592653589793 rad + pos: 6.5,12.5 parent: 1 type: Transform - - uid: 372 + - uid: 484 components: - - rot: 1.5707963267948966 rad - pos: 2.5,6.5 + - rot: 3.141592653589793 rad + pos: 7.5,12.5 parent: 1 type: Transform - - uid: 392 + - uid: 495 components: - - pos: -13.5,-1.5 + - rot: 3.141592653589793 rad + pos: 8.5,12.5 parent: 1 type: Transform - - uid: 393 + - uid: 496 components: - - pos: -13.5,-2.5 + - rot: 3.141592653589793 rad + pos: 10.5,12.5 parent: 1 type: Transform - - uid: 395 + - uid: 505 components: - - pos: -13.5,-4.5 + - rot: 3.141592653589793 rad + pos: 19.5,7.5 parent: 1 type: Transform - - uid: 396 + - uid: 511 components: - - pos: -13.5,-5.5 + - rot: 3.141592653589793 rad + pos: 19.5,-8.5 parent: 1 type: Transform - - uid: 399 + - uid: 512 components: - - pos: -13.5,-8.5 + - rot: 3.141592653589793 rad + pos: 19.5,-9.5 parent: 1 type: Transform - - uid: 400 + - uid: 513 components: - rot: 3.141592653589793 rad - pos: 2.5,15.5 + pos: 19.5,-12.5 parent: 1 type: Transform - - uid: 401 + - uid: 515 components: - rot: 3.141592653589793 rad - pos: 2.5,17.5 + pos: 19.5,-10.5 parent: 1 type: Transform - - uid: 404 + - uid: 516 components: - rot: 3.141592653589793 rad - pos: 2.5,19.5 + pos: 19.5,-13.5 parent: 1 type: Transform - - uid: 407 + - uid: 517 components: - - pos: -13.5,-16.5 + - rot: 3.141592653589793 rad + pos: 19.5,6.5 parent: 1 type: Transform - - uid: 408 + - uid: 519 components: - - pos: -14.5,-16.5 + - rot: 3.141592653589793 rad + pos: 19.5,5.5 parent: 1 type: Transform - - uid: 409 + - uid: 527 components: - - pos: -15.5,-16.5 + - rot: 3.141592653589793 rad + pos: 19.5,-7.5 parent: 1 type: Transform - - uid: 410 + - uid: 528 components: - - pos: -16.5,-16.5 + - rot: 3.141592653589793 rad + pos: -13.5,2.5 parent: 1 type: Transform - - uid: 411 + - uid: 529 components: - - pos: -17.5,-16.5 + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 parent: 1 type: Transform - - uid: 412 + - uid: 530 components: - - pos: -18.5,-16.5 + - rot: 3.141592653589793 rad + pos: -14.5,2.5 parent: 1 type: Transform - - uid: 413 + - uid: 531 components: - - pos: -19.5,-16.5 + - rot: 3.141592653589793 rad + pos: -15.5,2.5 parent: 1 type: Transform - - uid: 414 + - uid: 532 components: - - pos: -19.5,-15.5 + - rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 1 type: Transform - - uid: 415 + - uid: 533 components: - - pos: -19.5,-14.5 + - rot: 3.141592653589793 rad + pos: -18.5,2.5 parent: 1 type: Transform - - uid: 416 + - uid: 534 components: - - pos: -19.5,-13.5 + - rot: 3.141592653589793 rad + pos: -19.5,2.5 parent: 1 type: Transform - - uid: 417 + - uid: 535 components: - - pos: -19.5,-12.5 + - rot: 3.141592653589793 rad + pos: -19.5,1.5 parent: 1 type: Transform - - uid: 418 + - uid: 536 components: - - pos: -19.5,-11.5 + - rot: 3.141592653589793 rad + pos: -19.5,0.5 parent: 1 type: Transform - - uid: 419 + - uid: 539 components: - - pos: -19.5,-10.5 + - rot: 3.141592653589793 rad + pos: -19.5,-0.5 parent: 1 type: Transform - - uid: 420 + - uid: 540 components: - - pos: -19.5,-9.5 + - rot: 3.141592653589793 rad + pos: -17.5,2.5 parent: 1 type: Transform - - uid: 421 + - uid: 541 components: - - pos: -19.5,-8.5 + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 parent: 1 type: Transform - - uid: 422 + - uid: 542 components: - - pos: -19.5,-7.5 + - rot: 3.141592653589793 rad + pos: -19.5,-2.5 parent: 1 type: Transform - - uid: 423 + - uid: 543 components: - - pos: -19.5,-6.5 + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 parent: 1 type: Transform - - uid: 424 + - uid: 544 components: - - pos: -19.5,-5.5 + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 parent: 1 type: Transform - - uid: 425 + - uid: 550 components: - - pos: -19.5,-4.5 + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 parent: 1 type: Transform - - uid: 426 + - uid: 551 components: - - pos: -19.5,-3.5 + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 parent: 1 type: Transform - - uid: 427 + - uid: 552 components: - - pos: -19.5,-2.5 + - rot: 3.141592653589793 rad + pos: 11.5,12.5 parent: 1 type: Transform - - uid: 428 + - uid: 553 components: - - pos: -19.5,-1.5 + - rot: 3.141592653589793 rad + pos: 9.5,12.5 parent: 1 type: Transform - - uid: 429 + - uid: 555 components: - - pos: -19.5,-0.5 + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 parent: 1 type: Transform - - uid: 430 + - uid: 556 components: - - pos: -19.5,0.5 + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 parent: 1 type: Transform - - uid: 431 + - uid: 557 components: - - pos: -19.5,1.5 + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 parent: 1 type: Transform - - uid: 432 + - uid: 560 components: - - pos: 6.5,11.5 + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 parent: 1 type: Transform - - uid: 444 + - uid: 561 components: - - pos: -8.5,-1.5 + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 parent: 1 type: Transform - - uid: 445 + - uid: 563 components: - - pos: -9.5,-1.5 + - rot: 3.141592653589793 rad + pos: 13.5,-13.5 parent: 1 type: Transform - - uid: 446 + - uid: 564 components: - - pos: -10.5,-1.5 + - rot: 3.141592653589793 rad + pos: 13.5,-12.5 parent: 1 type: Transform - - uid: 447 + - uid: 565 components: - - pos: -11.5,-1.5 + - rot: 3.141592653589793 rad + pos: 19.5,-2.5 parent: 1 type: Transform - - uid: 487 + - uid: 566 components: - - pos: 13.5,2.5 + - rot: 3.141592653589793 rad + pos: 17.5,12.5 parent: 1 type: Transform - - uid: 495 + - uid: 567 components: - rot: 3.141592653589793 rad pos: -9.5,17.5 parent: 1 type: Transform - - uid: 505 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 511 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - uid: 512 - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: 19.5,3.5 - parent: 1 - type: Transform - - uid: 517 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 519 - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - uid: 527 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 528 + - uid: 568 components: - - pos: 12.5,12.5 + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 parent: 1 type: Transform - - uid: 529 + - uid: 569 components: - - pos: 13.5,12.5 + - rot: 3.141592653589793 rad + pos: -9.5,13.5 parent: 1 type: Transform - - uid: 530 + - uid: 570 components: - - pos: 14.5,12.5 + - rot: 3.141592653589793 rad + pos: -8.5,19.5 parent: 1 type: Transform - - uid: 531 + - uid: 571 components: - - pos: 15.5,12.5 + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 parent: 1 type: Transform - - uid: 532 + - uid: 572 components: - - pos: 16.5,12.5 + - rot: 3.141592653589793 rad + pos: -16.5,-16.5 parent: 1 type: Transform - - uid: 533 + - uid: 573 components: - - pos: 17.5,12.5 + - rot: 3.141592653589793 rad + pos: -13.5,-6.5 parent: 1 type: Transform - - uid: 534 + - uid: 574 components: - - pos: 18.5,12.5 + - rot: 3.141592653589793 rad + pos: -19.5,-15.5 parent: 1 type: Transform - - uid: 536 + - uid: 585 components: - - pos: 18.5,10.5 + - rot: 3.141592653589793 rad + pos: -19.5,-16.5 parent: 1 type: Transform - - uid: 539 + - uid: 600 components: - - pos: 19.5,-16.5 + - rot: 3.141592653589793 rad + pos: -19.5,-13.5 parent: 1 type: Transform - - uid: 540 + - uid: 601 components: - - pos: 18.5,-16.5 + - rot: 3.141592653589793 rad + pos: -18.5,-16.5 parent: 1 type: Transform - - uid: 541 + - uid: 606 components: - - pos: 17.5,-16.5 + - rot: 3.141592653589793 rad + pos: -17.5,-16.5 parent: 1 type: Transform - - uid: 542 + - uid: 649 components: - - pos: 16.5,-16.5 + - rot: 3.141592653589793 rad + pos: -13.5,-8.5 parent: 1 type: Transform - - uid: 543 + - uid: 661 components: - - pos: 15.5,-16.5 + - rot: 3.141592653589793 rad + pos: -9.5,19.5 parent: 1 type: Transform - - uid: 544 + - uid: 662 components: - - pos: 14.5,-16.5 + - rot: 3.141592653589793 rad + pos: -9.5,15.5 parent: 1 type: Transform - - uid: 550 + - uid: 663 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 + - rot: 3.141592653589793 rad + pos: -19.5,-5.5 parent: 1 type: Transform - - uid: 551 + - uid: 670 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 + - rot: 3.141592653589793 rad + pos: -19.5,-6.5 parent: 1 type: Transform - - uid: 552 + - uid: 671 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 + - rot: 3.141592653589793 rad + pos: -19.5,-7.5 parent: 1 type: Transform - - uid: 553 + - uid: 672 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-14.5 + - rot: 3.141592653589793 rad + pos: -19.5,-12.5 parent: 1 type: Transform - - uid: 555 + - uid: 673 components: - - pos: 14.5,-5.5 + - rot: 3.141592653589793 rad + pos: -19.5,-11.5 parent: 1 type: Transform - - uid: 556 + - uid: 674 components: - - pos: 14.5,-4.5 + - rot: 3.141592653589793 rad + pos: -19.5,-10.5 parent: 1 type: Transform - - uid: 558 + - uid: 675 components: - - pos: 14.5,-2.5 + - rot: 3.141592653589793 rad + pos: -8.5,20.5 parent: 1 type: Transform - - uid: 559 + - uid: 676 components: - - pos: 19.5,-2.5 + - rot: 3.141592653589793 rad + pos: 19.5,-5.5 parent: 1 type: Transform - - uid: 560 + - uid: 677 components: - - pos: 19.5,-3.5 + - rot: 3.141592653589793 rad + pos: 19.5,-4.5 parent: 1 type: Transform - - uid: 561 + - uid: 678 components: - - pos: 19.5,-4.5 + - rot: 3.141592653589793 rad + pos: 19.5,-3.5 parent: 1 type: Transform - - uid: 562 + - uid: 680 components: - - pos: 19.5,-5.5 + - rot: 3.141592653589793 rad + pos: 19.5,-1.5 parent: 1 type: Transform - - uid: 563 + - uid: 696 components: - - pos: 19.5,-6.5 + - rot: 3.141592653589793 rad + pos: 19.5,0.5 parent: 1 type: Transform - - uid: 564 + - uid: 710 components: - - pos: 19.5,-7.5 + - rot: 3.141592653589793 rad + pos: 19.5,2.5 parent: 1 type: Transform - - uid: 565 + - uid: 711 components: - - pos: 19.5,-8.5 + - rot: 3.141592653589793 rad + pos: 19.5,3.5 parent: 1 type: Transform - - uid: 566 + - uid: 770 components: - - pos: 19.5,-9.5 + - rot: 3.141592653589793 rad + pos: -19.5,-4.5 parent: 1 type: Transform - - uid: 567 + - uid: 847 components: - - pos: 19.5,-10.5 + - rot: 3.141592653589793 rad + pos: -13.5,-5.5 parent: 1 type: Transform - - uid: 568 + - uid: 848 components: - - pos: 19.5,-11.5 + - rot: 3.141592653589793 rad + pos: -19.5,-14.5 parent: 1 type: Transform - - uid: 569 + - uid: 852 components: - - pos: 19.5,-12.5 + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 parent: 1 type: Transform - - uid: 570 + - uid: 853 components: - - pos: 19.5,-13.5 + - rot: 3.141592653589793 rad + pos: 19.5,-6.5 parent: 1 type: Transform - - uid: 571 + - uid: 1604 components: - - pos: 19.5,-14.5 + - rot: 3.141592653589793 rad + pos: 18.5,12.5 parent: 1 type: Transform - - uid: 572 +- proto: WallSolid + entities: + - uid: 80 components: - - pos: 19.5,-15.5 + - pos: 6.5,2.5 parent: 1 type: Transform - - uid: 573 + - uid: 81 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 + - pos: 4.5,11.5 parent: 1 type: Transform - - uid: 574 + - uid: 82 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-16.5 + - pos: 8.5,2.5 parent: 1 type: Transform - - uid: 585 + - uid: 83 components: - - rot: 3.141592653589793 rad - pos: 18.5,-1.5 + - pos: 9.5,2.5 parent: 1 type: Transform - - uid: 586 + - uid: 84 components: - - rot: 3.141592653589793 rad - pos: 6.5,-1.5 + - pos: 10.5,2.5 parent: 1 type: Transform - - uid: 638 + - uid: 85 components: - - pos: 2.5,10.5 + - pos: 11.5,6.5 parent: 1 type: Transform - - uid: 649 + - uid: 86 components: - - pos: -19.5,2.5 + - pos: 11.5,7.5 parent: 1 type: Transform - - uid: 661 + - uid: 87 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-15.5 + - pos: 11.5,8.5 parent: 1 type: Transform - - uid: 662 + - uid: 88 components: - - pos: -12.5,-5.5 + - pos: 11.5,9.5 parent: 1 type: Transform - - uid: 663 + - uid: 90 components: - - pos: -8.5,-5.5 + - pos: 11.5,11.5 parent: 1 type: Transform - - uid: 670 + - uid: 92 components: - - pos: -18.5,2.5 + - pos: 11.5,3.5 parent: 1 type: Transform - - uid: 671 + - uid: 93 components: - - pos: -17.5,2.5 + - pos: 11.5,4.5 parent: 1 type: Transform - - uid: 672 + - uid: 94 components: - - pos: -16.5,2.5 + - pos: 11.5,5.5 parent: 1 type: Transform - - uid: 673 + - uid: 111 components: - - pos: -15.5,2.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 type: Transform - - uid: 674 + - uid: 127 components: - - pos: -14.5,2.5 + - rot: -1.5707963267948966 rad + pos: 14.5,9.5 parent: 1 type: Transform - - uid: 675 + - uid: 128 components: - - pos: -13.5,2.5 + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 parent: 1 type: Transform - - uid: 676 + - uid: 142 components: - - pos: -12.5,2.5 + - rot: -1.5707963267948966 rad + pos: 12.5,9.5 parent: 1 type: Transform - - uid: 677 + - uid: 179 components: - - pos: -11.5,2.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1 type: Transform - - uid: 678 + - uid: 235 components: - - pos: -10.5,2.5 + - rot: 3.141592653589793 rad + pos: 13.5,-1.5 parent: 1 type: Transform - - uid: 679 + - uid: 264 components: - - pos: -9.5,2.5 + - pos: 2.5,-5.5 parent: 1 type: Transform - - uid: 680 + - uid: 286 components: - - pos: -8.5,2.5 + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 parent: 1 type: Transform - - uid: 712 + - uid: 292 components: - - pos: 4.5,10.5 + - pos: 10.5,-1.5 parent: 1 type: Transform - - uid: 713 + - uid: 293 components: - - pos: 6.5,10.5 + - pos: 9.5,-1.5 parent: 1 type: Transform - - uid: 750 + - uid: 325 components: - - rot: 3.141592653589793 rad - pos: 8.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 parent: 1 type: Transform - - uid: 761 + - uid: 327 components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 parent: 1 type: Transform - - uid: 770 + - uid: 328 components: - - rot: 3.141592653589793 rad - pos: 8.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 parent: 1 type: Transform - - uid: 812 + - uid: 329 components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 type: Transform - - uid: 846 + - uid: 332 components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 + - pos: -4.5,12.5 parent: 1 type: Transform - - uid: 857 + - uid: 333 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-12.5 + - pos: -6.5,12.5 parent: 1 type: Transform - - uid: 858 + - uid: 340 components: - - pos: -13.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 parent: 1 type: Transform - - uid: 859 + - uid: 349 components: - - pos: -13.5,-9.5 + - rot: 3.141592653589793 rad + pos: 14.5,-5.5 parent: 1 type: Transform - - uid: 861 + - uid: 359 components: - - pos: 19.5,5.5 + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 parent: 1 type: Transform - - uid: 864 + - uid: 367 components: - - rot: -1.5707963267948966 rad - pos: 15.5,9.5 + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 parent: 1 type: Transform - - uid: 865 + - uid: 369 components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 parent: 1 type: Transform - - uid: 891 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-4.5 + - uid: 370 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 parent: 1 type: Transform - - uid: 892 + - uid: 372 components: - - rot: 3.141592653589793 rad - pos: 8.5,-1.5 + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 parent: 1 type: Transform - - uid: 902 + - uid: 392 components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + - pos: -13.5,-1.5 parent: 1 type: Transform - - uid: 1011 + - uid: 393 components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 + - pos: -13.5,-2.5 parent: 1 type: Transform - - uid: 1592 + - uid: 414 components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 + - pos: -8.5,12.5 parent: 1 type: Transform - - uid: 1595 + - uid: 432 components: - - rot: -1.5707963267948966 rad - pos: 8.5,13.5 + - pos: 6.5,11.5 parent: 1 type: Transform - - uid: 1596 + - uid: 444 components: - - rot: -1.5707963267948966 rad - pos: 9.5,13.5 + - pos: -8.5,-1.5 parent: 1 type: Transform - - uid: 1597 + - uid: 445 components: - - rot: -1.5707963267948966 rad - pos: 10.5,13.5 + - pos: -9.5,-1.5 parent: 1 type: Transform - - uid: 1598 + - uid: 446 components: - - rot: -1.5707963267948966 rad - pos: 11.5,13.5 + - pos: -10.5,-1.5 parent: 1 type: Transform - - uid: 1599 + - uid: 447 components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 + - pos: -11.5,-1.5 parent: 1 type: Transform - - uid: 1600 + - uid: 487 components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 + - pos: 13.5,2.5 parent: 1 type: Transform - - uid: 1601 + - uid: 558 components: - - rot: -1.5707963267948966 rad - pos: 14.5,13.5 + - pos: 14.5,-2.5 parent: 1 type: Transform - - uid: 1602 + - uid: 559 components: - - rot: -1.5707963267948966 rad - pos: 15.5,13.5 + - rot: 3.141592653589793 rad + pos: 14.5,-4.5 parent: 1 type: Transform - - uid: 1603 + - uid: 586 components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 parent: 1 type: Transform - - uid: 1604 + - uid: 589 components: - - rot: -1.5707963267948966 rad - pos: 17.5,13.5 + - rot: 3.141592653589793 rad + pos: 17.5,-1.5 parent: 1 type: Transform - - uid: 1605 + - uid: 638 components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 + - pos: 2.5,10.5 parent: 1 type: Transform - - uid: 1606 + - uid: 712 components: - - rot: -1.5707963267948966 rad - pos: 19.5,13.5 + - pos: 4.5,10.5 parent: 1 type: Transform - - uid: 1613 + - uid: 713 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 + - pos: 6.5,10.5 parent: 1 type: Transform - - uid: 1614 + - uid: 750 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 parent: 1 type: Transform - - uid: 1615 + - uid: 761 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-14.5 + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 parent: 1 type: Transform - - uid: 1641 + - uid: 812 components: - - pos: -7.5,12.5 + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 parent: 1 type: Transform - - uid: 1642 + - uid: 846 components: - - pos: -3.5,12.5 + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 parent: 1 type: Transform - - uid: 1644 + - uid: 857 components: - - pos: -2.5,12.5 + - rot: 3.141592653589793 rad + pos: -17.5,-1.5 parent: 1 type: Transform - - uid: 1654 + - uid: 858 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 + - rot: 3.141592653589793 rad + pos: -15.5,-1.5 parent: 1 type: Transform - - uid: 1655 + - uid: 859 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + - rot: 3.141592653589793 rad + pos: -14.5,-1.5 parent: 1 type: Transform - - uid: 1656 + - uid: 860 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 + - rot: 3.141592653589793 rad + pos: -17.5,-2.5 parent: 1 type: Transform - - uid: 1657 + - uid: 861 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 + - rot: 3.141592653589793 rad + pos: -17.5,-3.5 parent: 1 type: Transform - - uid: 1658 + - uid: 864 components: - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 + pos: 15.5,9.5 parent: 1 type: Transform - - uid: 1687 + - uid: 865 components: - - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 16.5,9.5 parent: 1 type: Transform -- proto: WallWood - entities: - - uid: 284 + - uid: 879 components: - - pos: 17.5,-1.5 + - rot: 3.141592653589793 rad + pos: -14.5,-4.5 parent: 1 type: Transform - - uid: 449 + - uid: 884 components: - - pos: -17.5,-1.5 + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 parent: 1 type: Transform - - uid: 450 + - uid: 885 components: - - pos: -14.5,-1.5 + - rot: 3.141592653589793 rad + pos: -17.5,-6.5 parent: 1 type: Transform - - uid: 451 + - uid: 886 components: - - pos: -15.5,-1.5 + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 parent: 1 type: Transform - - uid: 452 + - uid: 891 components: - - pos: -17.5,-2.5 + - rot: 3.141592653589793 rad + pos: -14.5,-8.5 parent: 1 type: Transform - - uid: 453 + - uid: 892 components: - - pos: -17.5,-3.5 + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 1 type: Transform - - uid: 454 + - uid: 902 components: - - pos: -17.5,-4.5 + - rot: 3.141592653589793 rad + pos: -17.5,-10.5 parent: 1 type: Transform - - uid: 456 + - uid: 1011 components: - - pos: -16.5,-4.5 + - rot: 3.141592653589793 rad + pos: 14.5,-1.5 parent: 1 type: Transform - - uid: 457 + - uid: 1056 components: - - pos: -17.5,-6.5 + - rot: 3.141592653589793 rad + pos: 17.5,0.5 parent: 1 type: Transform - - uid: 458 + - uid: 1060 components: - - pos: -17.5,-7.5 + - rot: 3.141592653589793 rad + pos: -17.5,-11.5 parent: 1 type: Transform - - uid: 459 + - uid: 1061 components: - - pos: -17.5,-8.5 + - rot: 3.141592653589793 rad + pos: -14.5,-12.5 parent: 1 type: Transform - - uid: 461 + - uid: 1062 components: - - pos: -17.5,-10.5 + - rot: 3.141592653589793 rad + pos: -17.5,-14.5 parent: 1 type: Transform - - uid: 462 + - uid: 1063 components: - - pos: -17.5,-11.5 + - rot: 3.141592653589793 rad + pos: -17.5,-15.5 parent: 1 type: Transform - - uid: 463 + - uid: 1067 components: - - pos: -17.5,-12.5 + - rot: 3.141592653589793 rad + pos: -15.5,-12.5 parent: 1 type: Transform - - uid: 465 + - uid: 1167 components: - - pos: -17.5,-14.5 + - rot: 3.141592653589793 rad + pos: -16.5,-12.5 parent: 1 type: Transform - - uid: 466 + - uid: 1592 components: - - pos: -17.5,-15.5 + - rot: 3.141592653589793 rad + pos: -15.5,-8.5 parent: 1 type: Transform - - uid: 467 + - uid: 1595 components: - - pos: -16.5,-12.5 + - rot: 3.141592653589793 rad + pos: -16.5,-8.5 parent: 1 type: Transform - - uid: 468 + - uid: 1596 components: - - pos: -15.5,-12.5 + - rot: 3.141592653589793 rad + pos: -16.5,-4.5 parent: 1 type: Transform - - uid: 469 + - uid: 1597 components: - - pos: -16.5,-8.5 + - rot: 3.141592653589793 rad + pos: -17.5,-12.5 parent: 1 type: Transform - - uid: 470 + - uid: 1598 components: - - pos: -15.5,-8.5 + - rot: 3.141592653589793 rad + pos: -17.5,-8.5 parent: 1 type: Transform - - uid: 471 + - uid: 1599 components: - - pos: -15.5,-4.5 + - rot: 3.141592653589793 rad + pos: -17.5,-4.5 parent: 1 type: Transform - - uid: 478 + - uid: 1641 components: - - pos: -14.5,-12.5 + - pos: -7.5,12.5 parent: 1 type: Transform - - uid: 479 + - uid: 1642 components: - - pos: -14.5,-8.5 + - pos: -3.5,12.5 parent: 1 type: Transform - - uid: 480 + - uid: 1644 components: - - pos: -14.5,-4.5 + - pos: -2.5,12.5 parent: 1 type: Transform - proto: WarpPoint @@ -12095,39 +12180,65 @@ entities: - pos: 15.5,-1.5 parent: 1 type: Transform - - uid: 455 + - uid: 890 components: - - pos: -17.5,-5.5 + - pos: 16.5,-1.5 parent: 1 type: Transform - - uid: 460 +- proto: XenoAISpawnerEasy + entities: + - uid: 323 components: - - pos: -17.5,-13.5 + - pos: 6.5,-5.5 parent: 1 type: Transform - - secondsUntilStateChange: -27682.865 - state: Opening - type: Door - - uid: 464 + - uid: 334 components: - - pos: -17.5,-9.5 + - pos: -11.5,-3.5 parent: 1 type: Transform - - uid: 484 + - uid: 337 components: - - pos: -16.5,-1.5 + - pos: 16.5,-13.5 parent: 1 type: Transform - - uid: 890 + - uid: 351 components: - - pos: 16.5,-1.5 + - pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform +- proto: XenoAISpawnerHard + entities: + - uid: 295 + components: + - pos: 1.5,-1.5 parent: 1 type: Transform -- proto: Wrench + - uid: 338 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform +- proto: XenoAISpawnerMedium entities: - - uid: 1630 + - uid: 339 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 352 components: - - pos: 5.771367,8.329117 + - pos: 15.5,10.5 parent: 1 type: Transform ... diff --git a/Resources/Maps/arena.yml b/Resources/Maps/_NF/POI/arena.yml similarity index 97% rename from Resources/Maps/arena.yml rename to Resources/Maps/_NF/POI/arena.yml index a3255f84556..04e691f5c86 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/_NF/POI/arena.yml @@ -32,51 +32,51 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: VAAAAAABVAAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAACIAAAAAADLAAAAAAALAAAAAAALAAAAAAAIAAAAAAAcQAAAAAAVAAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAIAAAAAADLAAAAAAAIAAAAAACIAAAAAACcQAAAAAAVAAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAADcQAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAIAAAAAABLAAAAAAAIAAAAAADIAAAAAAAcQAAAAAAYAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAADcQAAAAAAVAAAAAABVAAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAVAAAAAADVAAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAVAAAAAABVAAAAAABVAAAAAACGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABYAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAABYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAYAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAADXAAAAAABXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: VAAAAAADVAAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAIAAAAAADLAAAAAAALAAAAAAALAAAAAAAIAAAAAAAcQAAAAAAVAAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAABcQAAAAAAIAAAAAADLAAAAAAAIAAAAAADIAAAAAADcQAAAAAAVAAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAIAAAAAAALAAAAAAAIAAAAAAAIAAAAAADcQAAAAAAYAAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAACcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAACcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAVAAAAAAAVAAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAVAAAAAADVAAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAbgAAAAACbgAAAAABbgAAAAACVAAAAAACVAAAAAADVAAAAAABGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACYAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADYAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACYAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAABXAAAAAACXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: bgAAAAACbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAaAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACYAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADYAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADYAAAAAAAVAAAAAADbgAAAAAAbgAAAAAAbgAAAAADVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAVAAAAAACVAAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAHwAAAAAAHwAAAAADHwAAAAACGwAAAAAAVAAAAAADVAAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAABcQAAAAAAHwAAAAADHwAAAAACHwAAAAACcQAAAAAAVAAAAAADVAAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAHwAAAAAAHwAAAAACHwAAAAADcQAAAAAAVAAAAAADVAAAAAADGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAADcQAAAAAAVAAAAAACVAAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAABcQAAAAAAVAAAAAACVAAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAIAAAAAAALAAAAAAAIAAAAAAAIAAAAAABcQAAAAAAYAAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAIAAAAAAALAAAAAAAIAAAAAADIAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAACIAAAAAAALAAAAAAALAAAAAAALAAAAAAAIAAAAAAAcQAAAAAAVAAAAAAC + tiles: bgAAAAACbgAAAAACbgAAAAABbgAAAAABcQAAAAAAaAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAACYAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAABYAAAAAAAVAAAAAAAbgAAAAACbgAAAAADbgAAAAACVAAAAAABVAAAAAABGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAACVAAAAAABVAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAVAAAAAADVAAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAHwAAAAAAHwAAAAADHwAAAAACcQAAAAAAVAAAAAACVAAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAACcQAAAAAAHwAAAAACHwAAAAADHwAAAAACcQAAAAAAVAAAAAADVAAAAAACGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAVAAAAAABVAAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAABcQAAAAAAVAAAAAACVAAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAIAAAAAADLAAAAAAAIAAAAAADIAAAAAAAcQAAAAAAYAAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAIAAAAAABLAAAAAAAIAAAAAABIAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADIAAAAAABLAAAAAAALAAAAAAALAAAAAAAIAAAAAADcQAAAAAAVAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: VAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAADIAAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAACcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAGwAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACYAAAAAAAYAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAADcQAAAAAAbgAAAAAAbgAAAAAD + tiles: VAAAAAACVAAAAAAAVAAAAAACYAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAIAAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAADcQAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACYAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAGwAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACYAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACYAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAADbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABYAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADYAAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACbgAAAAABbgAAAAAAbgAAAAADVAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACZAAAAAAAHwAAAAABHwAAAAACHwAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAADGwAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAHwAAAAACHwAAAAAAHwAAAAABcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAACcQAAAAAAHwAAAAABHwAAAAADHwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADVAAAAAABVAAAAAACVAAAAAABYAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAIAAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAABbgAAAAABbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABYAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAABYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADbgAAAAABbgAAAAAAbgAAAAAAVAAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABcQAAAAAAGwAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADZAAAAAAAHwAAAAACHwAAAAAAHwAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAHwAAAAAAHwAAAAADHwAAAAADcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAHwAAAAACHwAAAAADHwAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACVAAAAAADVAAAAAACVAAAAAABYAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAABIAAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAADYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAABYAAAAAAAVAAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAACYAAAAAAAVAAAAAACVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAADYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAACYAAAAAAAVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAADYAAAAAAAVAAAAAAAVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAAAYAAAAAAAVAAAAAABVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAABYAAAAAAAVAAAAAABVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAAAYAAAAAAAVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXgAAAAABYAAAAAAAVAAAAAACVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,0: ind: 1,0 - tiles: VAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADYAAAAAAAXgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAADYAAAAAAAXgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACYAAAAAAAXgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACYAAAAAAAXgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAYAAAAAAAXgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACYAAAAAAAXgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAYAAAAAAAXgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAYAAAAAAAXgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAADcQAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAADaAAAAAADYAAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAADcQAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAaAAAAAABaAAAAAABcQAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAACYAAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: bgAAAAACbgAAAAAAbgAAAAABbgAAAAACXAAAAAABXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAXAAAAAAAXAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAACXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: bgAAAAACbgAAAAAAbgAAAAACbgAAAAABXAAAAAABXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAADXAAAAAACXAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAABXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAAAbgAAAAACbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAABXAAAAAAAbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABXAAAAAACbgAAAAADbgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAXAAAAAAAXAAAAAACbgAAAAACbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAABbgAAAAACbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAACbgAAAAAAbgAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAADYAAAAAAAaAAAAAABaAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAADcQAAAAAAaAAAAAACaAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACYAAAAAAAaAAAAAADaAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAaAAAAAAAaAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,-2: ind: 1,-2 @@ -125,8 +125,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics @@ -1895,15 +1895,13 @@ entities: 3,7: 0: 34952 -4,-5: - 0: 65280 - 2: 51 + 0: 65331 -3,-5: 0: 65280 -2,-5: 0: 65484 -1,-5: - 0: 61439 - 3: 4096 + 0: 65535 0,-5: 0: 65535 1,-5: @@ -1915,8 +1913,7 @@ entities: 4,-5: 0: 65399 -5,-5: - 0: 52224 - 2: 136 + 0: 52360 -5,4: 0: 35020 -5,5: @@ -1992,36 +1989,35 @@ entities: 1,-6: 0: 36608 4,-7: - 0: 30576 - 2: 7 + 0: 30583 4,-6: 0: 30583 -4,-8: - 2: 65280 + 0: 65280 -4,-7: - 2: 13119 + 0: 13119 -4,-6: - 2: 13107 + 0: 13107 -3,-8: - 2: 65280 + 0: 65280 -3,-7: - 2: 15 + 0: 15 2,-8: - 2: 34816 + 0: 34816 2,-7: - 2: 8 + 0: 8 3,-8: - 2: 65280 + 0: 65280 3,-7: - 2: 15 + 0: 15 4,-8: - 2: 30464 + 0: 30464 -5,-8: - 2: 34816 + 0: 34816 -5,-7: - 2: 34952 + 0: 34952 -5,-6: - 2: 34952 + 0: 34952 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -2053,36 +2049,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -16066,6 +16032,13 @@ entities: - pos: -9.5,-14.5 parent: 2 type: Transform +- proto: RandomPosterContrabandDeadDrop + entities: + - uid: 3128 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform - proto: RandomVendingSnacks entities: - uid: 2312 diff --git a/Resources/Maps/_NF/POI/beacon.yml b/Resources/Maps/_NF/POI/beacon.yml new file mode 100644 index 00000000000..00e2740def0 --- /dev/null +++ b/Resources/Maps/_NF/POI/beacon.yml @@ -0,0 +1,9135 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 24: FloorConcrete + 25: FloorConcreteMono + 27: FloorDark + 69: FloorPlanetGrass + 71: FloorRGlass + 81: FloorSilver + 84: FloorSteel + 86: FloorSteelCheckerLight + 97: FloorTechMaint2 + 101: FloorWhiteDiagonal + 103: FloorWhiteHerringbone + 105: FloorWhiteMono + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.51562405,-0.4921837 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: UQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAUQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAaQAAAAAABwAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAAGQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAAGQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: RQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAaQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAcQAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAaQAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFRQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAGQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAGQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAHBwAAAAAGcQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAFRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: RQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAARQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEGAAAAAAARQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGQAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAFcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGQAAAAAABwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAABwAAAAAABwAAAAAIGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAGQAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAHAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAcQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAABwAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAAZwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAcQAAAAAAZwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZwAAAAAAbwAAAAAAaQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAaQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAUQAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAADBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAJcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: GAAAAAAAGAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 131: 11,-8 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 193: 9.939519,1.252021 + - node: + color: '#FFFFFFFF' + id: Bushm1 + decals: + 194: -8.919856,3.8475733 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 195: -5.091731,5.614425 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 191: -4.669856,-7.0037127 + 192: 6.345769,5.3329797 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 132: 10,0 + 137: -1,14 + 190: -7.388606,-7.472789 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 125: -24,-3 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 126: -24,1 + 128: 5,-4 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 120: -21,-1 + 121: -24,-1 + 127: -22,-2 + 129: 6,-4 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 122: -24,1 + 123: -26,0 + 124: -25,-3 + 130: 3,-4 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 97: 1,13 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 196: 7.220769,5.4893384 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 101: 1,7 + 102: 6,-7 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 98: -6,6 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 99: 5,5 + 103: -1,-9 + 104: 1,-15 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 100: -2,6 + 107: -18,-2 + 198: 10.064519,-1.5780705 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 105: -5,-7 + 106: -13,0 + 108: -15,-2 + 197: 10.017644,1.8618193 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 109: -12,-2 + 110: -1,3 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 111: 1,11 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 119: 1,15 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 116: -14,0 + 199: 9.986394,-3.4231005 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 114: 1,-6 + 115: -6,-8 + 117: -1,5 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 112: 9,-2 + 113: 2,-8 + 118: -1,11 + 200: 7.798894,-7.2226152 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 84: 5,6 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 85: -3,5 + 201: 8.923894,-7.6916914 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 86: -10,0 + 202: 8.877019,5.192257 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 87: -9,-6 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 92: 1,-18 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 88: -15,0 + 89: -10,-2 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 90: 4,-8 + 91: -1,-18 + 93: -5,-8 + 94: 9,1 + 95: 3,6 + 96: -1,13 + 203: -8.013606,-7.1913424 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 34: -1,15 + 35: 1,12 + 36: 1,9 + 37: 3,5 + 38: -4,6 + 39: -7,5 + 40: -9,2 + 41: -13,-2 + 42: -18,0 + 43: -9,-5 + 44: -7,-8 + 45: -1,-7 + 46: 1,-8 + 47: 1,-16 + 48: 5,-7 + 49: 9,-5 + 50: 9,2 + 51: 8,5 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 52: 6,-8 + 53: -1,-6 + 54: -6,-7 + 55: -12,0 + 56: -6,5 + 57: -1,10 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 58: -1,12 + 59: 6,6 + 60: 1,4 + 61: -5,5 + 62: -16,-2 + 63: -2,-8 + 64: -1,-15 + 65: 3,-9 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 66: 4,6 + 67: -1,7 + 68: -2,5 + 69: -16,0 + 70: -9,-4 + 71: -3,-8 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 72: -4,-8 + 73: 7,-7 + 74: -11,0 + 75: -9,3 + 76: 1,10 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 77: -1,-10 + 78: -4,-7 + 79: 9,-4 + 80: -9,0 + 81: 2,6 + 82: -1,9 + 83: 7,5 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNe + decals: + 153: -1,-14 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerNw + decals: + 150: 1,-14 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSe + decals: + 151: -1,-12 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimInnerSw + decals: + 152: 1,-12 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineE + decals: + 146: -1,-13 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 149: 0,-14 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 148: 0,-12 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineW + decals: + 147: 1,-13 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNe + decals: + 218: -2,18 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerNw + decals: + 219: 2,18 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSe + decals: + 216: -2,22 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteInnerSw + decals: + 217: 2,22 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 207: -2,21 + 208: -2,20 + 209: -2,19 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 210: -1,18 + 211: 0,18 + 212: 1,18 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineS + decals: + 213: -1,22 + 214: 0,22 + 215: 1,22 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 204: 2,20 + 205: 2,21 + 206: 2,19 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 0: -3,3 + 5: -7,-3 + 14: -3,0 + 141: 1,1 + 154: 8,3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3: -7,3 + 4: -7,0 + 6: -3,-3 + 16: -3,-3 + 32: 3,3 + 138: -1,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 2: -3,2 + 139: 1,-3 + 155: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 1: -7,2 + 33: 3,-2 + 140: -1,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 156: 5,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 166: -8,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 19: -7,-5 + 175: -5,0 + 181: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 18: -3,-5 + 167: -7,-1 + 174: -5,0 + 180: 3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 157: 5,-2 + 172: -5,2 + 182: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 158: 5,-2 + 168: -7,-1 + 169: -8,-1 + 173: -5,2 + 183: 3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 15: -3,-2 + 23: -7,-4 + 142: 1,0 + 143: 1,-2 + 161: 8,-1 + 162: 8,0 + 163: 8,1 + 164: 8,2 + 171: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 7: -6,3 + 8: -5,3 + 9: -4,3 + 12: -6,0 + 13: -4,0 + 20: -6,-5 + 21: -5,-5 + 22: -4,-5 + 30: 5,3 + 31: 6,3 + 160: 8,-3 + 165: 7,3 + 176: -2,-1 + 177: 2,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 10: -6,2 + 11: -4,2 + 28: 4,-2 + 29: 6,-2 + 159: 7,-2 + 178: -2,-1 + 179: 2,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 17: -3,-4 + 24: -7,-2 + 25: 3,2 + 26: 3,1 + 27: 3,0 + 144: -1,0 + 145: -1,-2 + 170: -5,1 + - node: + color: '#FFFFFFFF' + id: bushsnowa1 + decals: + 133: -14,-2 + 184: 8.080144,6.0053215 + - node: + color: '#FFFFFFFF' + id: bushsnowa2 + decals: + 134: 1,6 + - node: + color: '#FFFFFFFF' + id: bushsnowa3 + decals: + 185: 10.095769,4.4104643 + - node: + color: '#FFFFFFFF' + id: bushsnowb1 + decals: + 135: -17,0 + 186: -8.701106,4.9577193 + 187: 5.158269,-7.707326 + - node: + color: '#FFFFFFFF' + id: bushsnowb3 + decals: + 136: 1,-9 + 188: -1.1854811,-7.472789 + 189: 9.877019,-7.1288004 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 639 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 1741 + 3,0: + 0: 8191 + 3,1: + 0: 4369 + -4,0: + 0: 36607 + -3,0: + 0: 65535 + -3,1: + 0: 61166 + -3,2: + 0: 12 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 1279 + -1,1: + 0: 65535 + -1,2: + 0: 61183 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 4097 + 1,-3: + 0: 65395 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65518 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-3: + 0: 4368 + 3,-2: + 0: 4401 + 3,-1: + 0: 65535 + -4,-1: + 0: 65535 + -4,-2: + 0: 57352 + -3,-2: + 0: 52991 + -3,-1: + 0: 65535 + -3,-3: + 0: 52936 + -2,-3: + 0: 65516 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65262 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-6: + 0: 28672 + 0,-5: + 0: 65527 + -1,-5: + 0: 61166 + -1,-6: + 0: 49152 + 4,0: + 0: 255 + 4,-1: + 0: 65523 + 5,-1: + 0: 65535 + -7,0: + 0: 36590 + -6,0: + 0: 16383 + -5,0: + 0: 255 + -7,-1: + 0: 65278 + -6,-1: + 0: 65535 + -5,-1: + 0: 65535 + 0,3: + 0: 30719 + -1,3: + 0: 61183 + -1,4: + 0: 61166 + -1,5: + 0: 61166 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 5,0: + 0: 4095 + 6,0: + 0: 1911 + 6,-1: + 0: 30583 + -8,1: + 0: 34816 + -8,2: + 0: 34824 + -8,3: + 0: 8 + -7,1: + 0: 65288 + -7,2: + 0: 65295 + -7,3: + 0: 15 + -6,1: + 0: 65299 + -6,2: + 0: 65311 + -6,3: + 0: 31 + -5,1: + 0: 13056 + -5,2: + 0: 13059 + -5,3: + 0: 3 + -8,-4: + 0: 34816 + -8,-3: + 0: 34824 + -8,-2: + 0: 8 + -7,-4: + 0: 65280 + -7,-3: + 0: 65295 + -7,-2: + 0: 34831 + -6,-4: + 0: 65296 + -6,-3: + 0: 65311 + -6,-2: + 0: 13087 + -5,-4: + 0: 13056 + -5,-3: + 0: 13059 + -5,-2: + 0: 3 + 2,-4: + 0: 30208 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Beacon + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 1358 + components: + - name: Engineering Air Alarm + type: MetaData + - rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - name: Docking Air Alarm + type: MetaData + - rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1261 + - 1260 + type: DeviceNetwork + - devices: + - 1260 + - 1261 + type: DeviceList + - uid: 1360 + components: + - name: Grounds Air Alarm + type: MetaData + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1289 + - 1297 + type: DeviceNetwork + - devices: + - 1289 + - 1297 + type: DeviceList + - uid: 1362 + components: + - name: Rectory Air Alarm + type: MetaData + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1253 + type: DeviceNetwork + - devices: + - 1253 + type: DeviceList + - uid: 1363 + components: + - name: Chapel Air Alarm + type: MetaData + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1070 + - 1087 + type: DeviceNetwork + - devices: + - 1070 + - 1087 + type: DeviceList +- proto: AirlockEngineering + entities: + - uid: 1169 + components: + - name: Engineering Airlock + type: MetaData + - pos: -19.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 514 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - links: + - 515 + type: DeviceLinkSink + - linkedPorts: + 515: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 515 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 1 + type: Transform + - links: + - 514 + type: DeviceLinkSink + - linkedPorts: + 514: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 516 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - links: + - 517 + type: DeviceLinkSink + - linkedPorts: + 517: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 517 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 1 + type: Transform + - links: + - 516 + type: DeviceLinkSink + - linkedPorts: + 516: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockGlass + entities: + - uid: 1028 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 1131 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + type: Transform +- proto: AltarChaos + entities: + - uid: 55 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: AltarDruid + entities: + - uid: 1074 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform +- proto: AltarHeaven + entities: + - uid: 113 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 1107 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 671 + components: + - name: Docking APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 673 + components: + - name: Grounds APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 674 + components: + - name: Rectory APC + type: MetaData + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 676 + components: + - name: Vestibule APC + type: MetaData + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 677 + components: + - name: Engineering APC + type: MetaData + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 767 + components: + - name: Chapel APC + type: MetaData + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 308 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 1115 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: BedsheetCult + entities: + - uid: 1118 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: BenchParkLeft + entities: + - uid: 1165 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1166 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchParkRight + entities: + - uid: 1167 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1168 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewLeft + entities: + - uid: 875 + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1368 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewMiddle + entities: + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 793 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1127 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1367 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchPewRight + entities: + - uid: 877 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 1126 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: Bible + entities: + - uid: 1090 + components: + - pos: -5.5565104,3.5076962 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 146 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 762 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: -22.5,-0.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 931 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 932 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 942 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 958 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 959 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 961 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 992 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 995 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 1061 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 1182 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 1268 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 139 + components: + - pos: -23.5,1.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -23.5,-3.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: -25.5,-11.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -21.5,-13.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 589 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 590 + components: + - pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 59 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 684 + components: + - pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 688 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 706 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 717 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 731 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 741 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 1007 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 1281 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 1298 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 1350 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 1353 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1369 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 610 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 614 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 615 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 617 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 618 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 1 + type: Transform + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 620 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 1 + type: Transform + - uid: 627 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 1 + type: Transform + - uid: 628 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 629 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 637 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,7.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 643 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 1 + type: Transform + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 647 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,11.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 1 + type: Transform + - uid: 654 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,11.5 + parent: 1 + type: Transform + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 658 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,7.5 + parent: 1 + type: Transform + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 663 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 664 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 1123 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 873 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLeather + entities: + - uid: 1305 + components: + - pos: -1.6190104,-6.5948977 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 1171 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: ComputerSolarControl + entities: + - uid: 1172 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - needsPower: False + type: ApcPowerReceiver + missingComponents: + - Anchorable +- proto: CrateFreezer + entities: + - uid: 1136 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsSeeds + entities: + - uid: 1124 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 1125 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 1141 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: CrystalBlue + entities: + - uid: 1342 + components: + - pos: -9.5,-10.5 + parent: 1 + type: Transform +- proto: CrystalCyan + entities: + - uid: 1343 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform +- proto: CrystalGreen + entities: + - uid: 1344 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: CrystalGrey + entities: + - uid: 1349 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform +- proto: CrystalOrange + entities: + - uid: 1346 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform +- proto: CrystalPink + entities: + - uid: 1347 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 1348 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 839 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform + - uid: 1308 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 1310 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1309 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 1042 + components: + - pos: 3.7068906,2.4921455 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 3.3318906,2.4608746 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: -3.0274844,0.8191091 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: -3.0431094,0.5376626 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: -3.2931094,0.8660165 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: -3.3399844,0.58457196 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: -3.6212344,0.80347264 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: -3.6212344,0.45948422 + parent: 1 + type: Transform +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 1041 + components: + - pos: 3.5506406,3.0081291 + parent: 1 + type: Transform +- proto: DrinkWineBottleFull + entities: + - uid: 1040 + components: + - pos: 3.2850156,3.0394 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 1133 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - name: Omnichurch Beacon + type: FaxMachine + missingComponents: + - Anchorable +- proto: filingCabinetRandom + entities: + - uid: 1122 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform +- proto: FloorWaterEntity + entities: + - uid: 879 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform +- proto: FloraTreeLarge01 + entities: + - uid: 1073 + components: + - pos: -1.4664649,-17.652534 + parent: 1 + type: Transform +- proto: FloraTreeLarge06 + entities: + - uid: 1072 + components: + - pos: 2.5335355,-17.579567 + parent: 1 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 1050 + components: + - pos: 8.503765,2.8674068 + parent: 1 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 1192 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 101.3 + type: GasMixer + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 1193 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 145 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 175 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 177 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 777 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 782 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1088 + components: + - rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1194 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1195 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1200 + components: + - pos: -20.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1201 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1203 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1223 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1259 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 1221 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1264 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1290 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 57 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 115 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 118 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 119 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 147 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 148 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 149 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 150 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 151 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 152 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 174 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 340 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 341 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 775 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 776 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 783 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1008 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1029 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1097 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1100 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1104 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1105 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1204 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1205 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1206 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1207 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1208 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1209 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1210 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1211 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1212 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1213 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1214 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1215 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1216 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1217 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1218 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1219 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1220 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1224 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1225 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1226 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1227 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1228 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1229 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1230 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1231 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1232 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1233 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1234 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1235 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1236 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1237 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1238 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1239 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1240 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1247 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1248 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1249 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1250 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1251 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1252 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1254 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1255 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1256 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1257 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1262 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1265 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1266 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1287 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1288 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1291 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1292 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1293 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1294 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1295 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1296 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1314 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1315 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1316 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1317 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1333 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1336 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1337 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1338 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1340 + components: + - rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1361 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1389 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 761 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1188 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1189 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1197 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1199 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1202 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1243 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1244 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1246 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1263 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 1190 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1191 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 1087 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1363 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1196 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1198 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1222 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1258 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1261 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1359 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1297 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1360 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1332 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1339 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 1070 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1363 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1106 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1114 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1242 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1245 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1253 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1362 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1260 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1359 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1289 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 1360 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1335 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 1241 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GeneratorBasic15kW + entities: + - uid: 1067 + components: + - pos: -22.5,1.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: GravityGeneratorMini + entities: + - uid: 1341 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - needsPower: False + type: ApcPowerReceiver +- proto: Grille + entities: + - uid: 5 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 264 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 363 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform +- proto: HospitalCurtains + entities: + - uid: 1120 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 1075 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 1051 + components: + - pos: 8.472515,2.445238 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 1137 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: KitchenReagentGrinder + entities: + - uid: 675 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 1170 + components: + - pos: -20.5,0.5 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 223 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 1138 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 1366 + components: + - anchored: True + pos: -20.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: OxygenCanister + entities: + - uid: 1365 + components: + - anchored: True + pos: -21.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: PaintingMoony + entities: + - uid: 1052 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: PaintingSaturn + entities: + - uid: 1053 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform +- proto: PaintingTheKiss + entities: + - uid: 1054 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: PaintingTheScream + entities: + - uid: 1055 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: PaintingTheSonOfMan + entities: + - uid: 1056 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: PottedPlant1 + entities: + - uid: 791 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform +- proto: PottedPlant10 + entities: + - uid: 780 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: PottedPlant18 + entities: + - uid: 885 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: PottedPlant19 + entities: + - uid: 1128 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform +- proto: PottedPlant2 + entities: + - uid: 1071 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform +- proto: PottedPlant21 + entities: + - uid: 884 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: PottedPlant3 + entities: + - uid: 790 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: PottedPlant7 + entities: + - uid: 1154 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 792 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredRed + entities: + - uid: 1274 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 1163 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmallRed + entities: + - uid: 1275 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - pos: -23.5,-13.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 788 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 1065 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 1066 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: Shovel + entities: + - uid: 1306 + components: + - pos: -0.84557295,-9.057547 + parent: 1 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 24 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 258 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 275 + components: + - rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 512 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 753 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform +- proto: SignChapel + entities: + - uid: 1387 + components: + - desc: A sign welcoming visitors to the Omnichurch corporation's Beacon outpost, built out of an asteroid. + name: Welcome to the Beacon + type: MetaData + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - desc: A sign welcoming visitors to the Omnichurch corporation's Beacon outpost, built out of an asteroid. + type: MetaData + - pos: -0.5,17.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 872 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 393 + components: + - pos: -25.5,1.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable + - uid: 396 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: SolarPanel + entities: + - uid: 475 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 524 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 534 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 550 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 1 + type: Transform + - uid: 553 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 556 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 557 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 559 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 573 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 577 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 579 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 1 + type: Transform + - uid: 580 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 1 + type: Transform + - uid: 599 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 600 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 1 + type: Transform + - uid: 601 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 602 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 1 + type: Transform + - uid: 603 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 1 + type: Transform + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 1 + type: Transform + - uid: 606 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 518 + components: + - pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 1307 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 1030 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 1364 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 665 + components: + - pos: -21.5,1.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable + - uid: 666 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + missingComponents: + - Anchorable +- proto: TableCounterWood + entities: + - uid: 878 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 949 + components: + - rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 1130 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 1134 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 1135 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 757 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 1116 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 1121 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: WallRock + entities: + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 745 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform +- proto: WallSandstone + entities: + - uid: 56 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 367 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 770 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 771 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 779 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 2 + components: + - rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -20.5,1.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -20.5,-3.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -25.5,-3.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -26.5,1.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 506 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 749 + components: + - rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 672 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 744 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 747 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 1334 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - location: Omnichurch Beacon + type: WarpPoint +- proto: Window + entities: + - uid: 372 + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 1069 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 1117 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 758 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/cargodepot.yml b/Resources/Maps/_NF/POI/cargodepot.yml similarity index 99% rename from Resources/Maps/cargodepot.yml rename to Resources/Maps/_NF/POI/cargodepot.yml index d75d6bd906c..9dd7ed768f0 100644 --- a/Resources/Maps/cargodepot.yml +++ b/Resources/Maps/_NF/POI/cargodepot.yml @@ -43,16 +43,16 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 10000 - linearDamping: 10000 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics - fixtures: {} type: Fixtures - type: OccluderTree - - angularDamping: 10000 - linearDamping: 10000 + - angularDamping: 999999 + linearDamping: 999999 type: Shuttle - type: GridPathfinding - gravityShakeSound: !type:SoundPathSpecifier diff --git a/Resources/Maps/caseyscasino.yml b/Resources/Maps/_NF/POI/caseyscasino.yml similarity index 89% rename from Resources/Maps/caseyscasino.yml rename to Resources/Maps/_NF/POI/caseyscasino.yml index 7ca8f8844ba..673a374513b 100644 --- a/Resources/Maps/caseyscasino.yml +++ b/Resources/Maps/_NF/POI/caseyscasino.yml @@ -4,15 +4,15 @@ meta: tilemap: 0: Space 12: FloorBar - 26: FloorDark - 39: FloorElevatorShaft - 61: FloorMetalDiamond - 72: FloorReinforcedHardened - 88: FloorSteelDirty - 95: FloorTechMaint - 109: FloorWood - 111: Lattice - 112: Plating + 27: FloorDark + 40: FloorElevatorShaft + 62: FloorMetalDiamond + 73: FloorReinforcedHardened + 89: FloorSteelDirty + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -25,29 +25,29 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: bQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXwAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACYAAAAAAAGwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABDAAAAAAAbgAAAAACbgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAACDAAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAAAJwAAAAAAJwAAAAAAXwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAPQAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAGgAAAAAAGgAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAGgAAAAAAGgAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAGgAAAAAAGgAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAADKAAAAAAAKAAAAAAAYAAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADAAAAAAAAcQAAAAAAGwAAAAAAPgAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAADGwAAAAABPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAGwAAAAAAGwAAAAABPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAAAGwAAAAACPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAbgAAAAADbgAAAAACDAAAAAACDAAAAAACDAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABDAAAAAADDAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAACDAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAXwAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAACcQAAAAAAAAAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAACbgAAAAABbgAAAAADYAAAAAAAGwAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAACcQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAAAJwAAAAAAJwAAAAAAXwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAADAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAACKAAAAAAAKAAAAAAAYAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics @@ -104,43 +104,43 @@ entities: color: '#FFB34193' id: BrickTileWhiteCornerSe decals: - 130: 13,-8 + 128: 13,-8 - node: color: '#FFB34193' id: BrickTileWhiteCornerSw decals: - 98: -13,-8 + 96: -13,-8 - node: color: '#FFB34193' id: BrickTileWhiteInnerNe decals: - 106: -8,-10 + 104: -8,-10 - node: color: '#FFB34193' id: BrickTileWhiteInnerNw decals: - 124: 8,-10 + 122: 8,-10 - node: color: '#FFB34193' id: BrickTileWhiteInnerSe decals: - 132: 11,-8 + 130: 11,-8 - node: color: '#FFB34193' id: BrickTileWhiteInnerSw decals: - 103: -11,-8 + 101: -11,-8 - node: color: '#FFB34193' id: BrickTileWhiteLineE decals: - 104: -8,-8 - 105: -8,-9 - 125: 11,-11 - 126: 11,-10 - 127: 11,-9 - 128: 13,-6 - 129: 13,-7 + 102: -8,-8 + 103: -8,-9 + 123: 11,-11 + 124: 11,-10 + 125: 11,-9 + 126: 13,-6 + 127: 13,-7 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -153,27 +153,27 @@ entities: color: '#FFB34193' id: BrickTileWhiteLineN decals: - 107: -7,-10 - 108: -6,-10 - 109: -5,-10 - 110: -4,-10 - 111: -3,-10 - 112: -2,-10 - 113: -1,-10 - 114: 0,-10 - 115: 1,-10 - 116: 2,-10 - 117: 3,-10 - 118: 4,-10 - 119: 5,-10 - 120: 6,-10 - 121: 7,-10 + 105: -7,-10 + 106: -6,-10 + 107: -5,-10 + 108: -4,-10 + 109: -3,-10 + 110: -2,-10 + 111: -1,-10 + 112: 0,-10 + 113: 1,-10 + 114: 2,-10 + 115: 3,-10 + 116: 4,-10 + 117: 5,-10 + 118: 6,-10 + 119: 7,-10 - node: color: '#FFB34193' id: BrickTileWhiteLineS decals: - 99: -12,-8 - 131: 12,-8 + 97: -12,-8 + 129: 12,-8 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -184,15 +184,15 @@ entities: color: '#FFB34193' id: BrickTileWhiteLineW decals: - 94: -13,-4 - 95: -13,-5 - 96: -13,-6 - 97: -13,-7 - 100: -11,-9 - 101: -11,-10 - 102: -11,-11 - 122: 8,-9 - 123: 8,-8 + 92: -13,-4 + 93: -13,-5 + 94: -13,-6 + 95: -13,-7 + 98: -11,-9 + 99: -11,-10 + 100: -11,-11 + 120: 8,-9 + 121: 8,-8 - node: color: '#FFA500FF' id: CheckerNWSE @@ -822,6 +822,11 @@ entities: - pos: -3.5,13.5 parent: 2 type: Transform + - uid: 554 + components: + - pos: -3.5,2.5 + parent: 2 + type: Transform - uid: 555 components: - pos: -9.5,1.5 @@ -832,13 +837,6 @@ entities: - pos: 14.5,4.5 parent: 2 type: Transform -- proto: APCBasicEmpImmune - entities: - - uid: 554 - components: - - pos: -3.5,2.5 - parent: 2 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 1296 @@ -1011,15 +1009,11 @@ entities: - pos: 15.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 318 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 319 components: - pos: 1.5,-9.5 @@ -1080,29 +1074,21 @@ entities: - pos: 4.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 419 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 420 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 609 components: - pos: -9.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 610 components: - pos: -9.5,0.5 @@ -1183,8 +1169,6 @@ entities: - pos: -13.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 627 components: - pos: -9.5,-9.5 @@ -1200,8 +1184,6 @@ entities: - pos: -9.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 630 components: - pos: -8.5,-9.5 @@ -1257,29 +1239,21 @@ entities: - pos: -0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 641 components: - pos: -9.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 642 components: - pos: -9.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 643 components: - pos: -9.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 644 components: - pos: -9.5,5.5 @@ -1325,8 +1299,6 @@ entities: - pos: -11.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 653 components: - pos: -12.5,6.5 @@ -1377,8 +1349,6 @@ entities: - pos: -8.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 663 components: - pos: -7.5,3.5 @@ -1399,8 +1369,6 @@ entities: - pos: -3.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 667 components: - pos: -3.5,12.5 @@ -1501,8 +1469,6 @@ entities: - pos: 14.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 687 components: - pos: 13.5,4.5 @@ -1608,29 +1574,21 @@ entities: - pos: 14.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 708 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 709 components: - pos: 14.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 710 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 711 components: - pos: 13.5,-0.5 @@ -1791,8 +1749,6 @@ entities: - pos: -3.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 753 components: - pos: 0.5,-1.5 @@ -1813,8 +1769,6 @@ entities: - pos: 4.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 757 components: - pos: 4.5,1.5 @@ -1845,8 +1799,6 @@ entities: - pos: -0.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 793 components: - pos: 1.5,-10.5 @@ -1872,43 +1824,31 @@ entities: - pos: 1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1239 components: - pos: -14.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1240 components: - pos: -9.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1241 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1242 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1243 components: - pos: 9.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - uid: 119 @@ -1916,15 +1856,11 @@ entities: - pos: -5.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 132 components: - pos: -5.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 533 components: - pos: -6.5,5.5 @@ -1965,8 +1901,6 @@ entities: - pos: -11.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 541 components: - pos: -12.5,6.5 @@ -1982,99 +1916,71 @@ entities: - pos: -5.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1198 components: - pos: -5.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1199 components: - pos: -5.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1200 components: - pos: -4.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1201 components: - pos: -3.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1202 components: - pos: -3.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1203 components: - pos: -2.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1204 components: - pos: -1.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1205 components: - pos: -0.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1206 components: - pos: 0.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1207 components: - pos: 1.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1208 components: - pos: 2.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1209 components: - pos: 3.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1210 components: - pos: -5.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1211 components: - pos: -5.5,0.5 @@ -2090,323 +1996,231 @@ entities: - pos: -5.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1214 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1215 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1216 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1217 components: - pos: -3.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1218 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1219 components: - pos: -1.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1220 components: - pos: -0.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1221 components: - pos: 0.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1222 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1223 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1224 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1259 components: - pos: -6.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1263 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1264 components: - pos: -8.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1265 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1266 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1267 components: - pos: -8.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1268 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1269 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1270 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1271 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1272 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1273 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1274 components: - pos: -5.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1275 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1276 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1277 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1278 components: - pos: -3.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1279 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1280 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1281 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1282 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1283 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1284 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1285 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1286 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1287 components: - pos: -1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1288 components: - pos: -0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1289 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1290 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1291 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1292 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1293 components: - pos: 4.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1294 components: - pos: 4.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1295 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 463 @@ -2414,8 +2228,6 @@ entities: - pos: -3.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 557 components: - pos: -6.5,5.5 @@ -2426,155 +2238,111 @@ entities: - pos: -5.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 559 components: - pos: -5.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 560 components: - pos: -5.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 561 components: - pos: -5.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 562 components: - pos: -4.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 563 components: - pos: -3.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 564 components: - pos: -5.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 565 components: - pos: -6.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 566 components: - pos: -7.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 567 components: - pos: -8.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 568 components: - pos: -9.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 569 components: - pos: -2.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 570 components: - pos: -1.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 571 components: - pos: -0.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 572 components: - pos: 0.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 573 components: - pos: 1.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 574 components: - pos: 2.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 575 components: - pos: 3.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 576 components: - pos: 4.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 577 components: - pos: 4.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 578 components: - pos: 5.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 579 components: - pos: 6.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 581 components: - pos: 7.5,2.5 @@ -2625,92 +2393,66 @@ entities: - pos: 14.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 591 components: - pos: -5.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 592 components: - pos: -5.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 593 components: - pos: -4.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 594 components: - pos: -3.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 595 components: - pos: -2.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 596 components: - pos: -1.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 597 components: - pos: -0.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 598 components: - pos: 0.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 599 components: - pos: 1.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 600 components: - pos: 2.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 601 components: - pos: 3.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 602 components: - pos: 4.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 603 components: - pos: -3.5,8.5 @@ -2741,15 +2483,11 @@ entities: - pos: -3.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 741 components: - pos: -3.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 532 @@ -3620,8 +3358,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 799 components: - rot: 1.5707963267948966 rad @@ -3630,8 +3366,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 831 components: - rot: 1.5707963267948966 rad @@ -3702,8 +3436,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 946 components: - rot: -1.5707963267948966 rad @@ -3761,8 +3493,6 @@ entities: type: Transform - color: '#055BCCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 391 components: - rot: 1.5707963267948966 rad @@ -3787,8 +3517,6 @@ entities: type: Transform - color: '#055BCCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 812 components: - rot: 3.141592653589793 rad @@ -3805,8 +3533,6 @@ entities: type: Transform - color: '#055BCCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 816 components: - rot: 1.5707963267948966 rad @@ -3965,8 +3691,6 @@ entities: type: Transform - color: '#055BCCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 841 components: - rot: -1.5707963267948966 rad @@ -4368,8 +4092,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 907 components: - rot: 1.5707963267948966 rad @@ -4378,8 +4100,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 908 components: - rot: 1.5707963267948966 rad @@ -4396,8 +4116,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 913 components: - rot: 3.141592653589793 rad @@ -4449,8 +4167,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 924 components: - rot: 3.141592653589793 rad @@ -4459,8 +4175,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 925 components: - rot: 1.5707963267948966 rad @@ -4664,8 +4378,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 960 components: - rot: 3.141592653589793 rad @@ -4674,8 +4386,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 961 components: - rot: 3.141592653589793 rad @@ -4716,8 +4426,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 967 components: - rot: 1.5707963267948966 rad @@ -4726,8 +4434,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 968 components: - rot: 1.5707963267948966 rad @@ -4736,8 +4442,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 969 components: - rot: 1.5707963267948966 rad @@ -4746,8 +4450,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 970 components: - rot: 1.5707963267948966 rad @@ -4756,8 +4458,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 971 components: - rot: 1.5707963267948966 rad @@ -4766,8 +4466,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 973 components: - rot: 3.141592653589793 rad @@ -4784,8 +4482,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 976 components: - rot: 1.5707963267948966 rad @@ -4794,8 +4490,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 977 components: - rot: 1.5707963267948966 rad @@ -4804,8 +4498,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 978 components: - rot: 1.5707963267948966 rad @@ -4814,8 +4506,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 979 components: - rot: 1.5707963267948966 rad @@ -4824,8 +4514,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 980 components: - rot: 1.5707963267948966 rad @@ -4834,8 +4522,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 981 components: - rot: 1.5707963267948966 rad @@ -5008,8 +4694,6 @@ entities: type: Transform - color: '#055BCCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 815 components: - rot: 1.5707963267948966 rad @@ -5064,8 +4748,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 910 components: - rot: 1.5707963267948966 rad @@ -5121,8 +4803,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 982 components: - pos: 8.5,7.5 @@ -5164,8 +4844,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVentPump @@ -5175,8 +4853,6 @@ entities: - pos: 0.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 803 @@ -5185,8 +4861,6 @@ entities: pos: 3.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 805 @@ -5195,8 +4869,6 @@ entities: pos: 10.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 806 @@ -5205,8 +4877,6 @@ entities: pos: -0.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 809 @@ -5214,8 +4884,6 @@ entities: - pos: -10.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 901 @@ -5224,8 +4892,6 @@ entities: pos: 12.5,-0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 945 @@ -5234,8 +4900,6 @@ entities: pos: -11.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 989 @@ -5244,8 +4908,6 @@ entities: pos: -4.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - uid: 1007 @@ -5254,8 +4916,6 @@ entities: pos: 11.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#055BCCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -5269,8 +4929,6 @@ entities: - ShutdownSubscribers: - 1163 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 889 @@ -5281,8 +4939,6 @@ entities: - ShutdownSubscribers: - 1182 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 909 @@ -5293,8 +4949,6 @@ entities: - ShutdownSubscribers: - 1161 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 914 @@ -5306,8 +4960,6 @@ entities: - ShutdownSubscribers: - 1163 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 958 @@ -5319,8 +4971,6 @@ entities: - ShutdownSubscribers: - 1181 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 974 @@ -5331,8 +4981,6 @@ entities: - ShutdownSubscribers: - 1161 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 984 @@ -5344,8 +4992,6 @@ entities: - ShutdownSubscribers: - 1184 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1008 @@ -5354,8 +5000,6 @@ entities: pos: 10.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GeneratorBasic15kW @@ -6208,116 +5852,86 @@ entities: pos: 7.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1194 components: - rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1250 components: - rot: -1.5707963267948966 rad pos: 15.5,-6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1251 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1252 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1253 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1254 components: - rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1255 components: - rot: 3.141592653589793 rad pos: -9.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1256 components: - rot: 3.141592653589793 rad pos: 10.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1257 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1258 components: - rot: 1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1260 components: - rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1261 components: - pos: -9.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1306 components: - rot: 3.141592653589793 rad pos: -2.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1307 components: - rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightColoredBlack entities: - uid: 780 @@ -6325,32 +5939,24 @@ entities: - pos: 2.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1190 components: - rot: 1.5707963267948966 rad pos: -4.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1191 components: - rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1193 components: - rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightColoredFrostyBlue entities: - uid: 1140 @@ -6358,24 +5964,18 @@ entities: - pos: -6.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1186 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1187 components: - rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightColoredRed entities: - uid: 1188 @@ -6384,16 +5984,12 @@ entities: pos: 5.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1189 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightSodium entities: - uid: 1244 @@ -6402,23 +5998,17 @@ entities: pos: -8.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1245 components: - rot: -1.5707963267948966 rad pos: -6.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1246 components: - pos: -13.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: Rack entities: - uid: 406 @@ -6549,6 +6139,13 @@ entities: - pos: 10.5,9.5 parent: 2 type: Transform +- proto: RandomPosterContrabandDeadDrop + entities: + - uid: 1143 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 25 diff --git a/Resources/Maps/courthouse.yml b/Resources/Maps/_NF/POI/courthouse.yml similarity index 92% rename from Resources/Maps/courthouse.yml rename to Resources/Maps/_NF/POI/courthouse.yml index a504211ce0c..40dba324621 100644 --- a/Resources/Maps/courthouse.yml +++ b/Resources/Maps/_NF/POI/courthouse.yml @@ -3,13 +3,13 @@ meta: postmapinit: false tilemap: 0: Space - 61: FloorMetalDiamond - 85: FloorSteelCheckerLight - 88: FloorSteelDirty - 95: FloorTechMaint - 109: FloorWood - 111: Lattice - 112: Plating + 62: FloorMetalDiamond + 86: FloorSteelCheckerLight + 89: FloorSteelDirty + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -23,61 +23,61 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: bQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAbQAAAAACbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAbQAAAAACbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAbQAAAAADbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAbgAAAAADbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAbgAAAAADbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAbgAAAAABbgAAAAABbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbQAAAAABbQAAAAABXwAAAAAAbQAAAAACbQAAAAABbQAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAADcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAXwAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAACcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAXwAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAACXwAAAAAAbQAAAAADbQAAAAACbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAbQAAAAADbQAAAAABbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACcQAAAAAAbgAAAAADbgAAAAAAYAAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABYAAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAACYAAAAAAAbgAAAAACbgAAAAADbgAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABYAAAAAAAbgAAAAADbgAAAAABbgAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAADcQAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAbQAAAAABXwAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAACbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABXwAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAACbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADcAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAABAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAAAXwAAAAAAbQAAAAACbQAAAAABbQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAABbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAXwAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAbQAAAAABbQAAAAAAbQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAbgAAAAADYAAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAYAAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAACbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACcQAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAABbgAAAAACYAAAAAAAbgAAAAADbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAYAAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAYAAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAbgAAAAADbgAAAAAAbgAAAAAD version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACXwAAAAAAbQAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAVQAAAAABVQAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAVQAAAAAAVQAAAAADbQAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAVQAAAAACVQAAAAACbQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAVQAAAAAAVQAAAAABbQAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACYAAAAAAAbgAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVgAAAAACVgAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVgAAAAABVgAAAAADbgAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVgAAAAABVgAAAAADbgAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVgAAAAAAVgAAAAAAbgAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics @@ -386,15 +386,13 @@ entities: -4,-1: 0: 4 -3,-3: - 0: 65534 - 1: 1 + 0: 65535 -3,-2: 0: 65535 -3,-1: 0: 3839 -3,-4: - 0: 49280 - 1: 12561 + 0: 61841 -2,-4: 0: 65535 -2,-3: @@ -509,21 +507,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -5652,6 +5635,30 @@ entities: - pos: -5.5,-14.5 parent: 1 type: Transform +- proto: RandomPosterContrabandDeadDrop + entities: + - uid: 1459 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 1460 + components: + - pos: 2.5,-22.5 + parent: 1 + type: Transform + - uid: 1461 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - pos: -7.5,-26.5 + parent: 1 + type: Transform - proto: RandomVendingDrinks entities: - uid: 904 diff --git a/Resources/Maps/cove.yml b/Resources/Maps/_NF/POI/cove.yml similarity index 89% rename from Resources/Maps/cove.yml rename to Resources/Maps/_NF/POI/cove.yml index f23cee7b536..1bb4799a6bc 100644 --- a/Resources/Maps/cove.yml +++ b/Resources/Maps/_NF/POI/cove.yml @@ -1,25 +1,25 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 26: FloorDark - 30: FloorDarkMini - 31: FloorDarkMono - 33: FloorDarkPavement - 34: FloorDarkPavementVertical - 37: FloorDirt - 60: FloorPlanetDirt - 61: FloorPlanetGrass - 75: FloorSteel - 76: FloorSteelCheckerDark - 87: FloorTechMaint - 88: FloorTechMaint2 - 95: FloorWhiteMini - 101: FloorWood - 104: Plating + 7: FloorAsteroidSand + 8: FloorAsteroidSandDug + 28: FloorDark + 32: FloorDarkMini + 33: FloorDarkMono + 35: FloorDarkPavement + 36: FloorDarkPavementVertical + 39: FloorDirt + 69: FloorPlanetDirt + 70: FloorPlanetGrass + 85: FloorSteel + 86: FloorSteelCheckerDark + 97: FloorTechMaint + 98: FloorTechMaint2 + 105: FloorWhiteMini + 111: FloorWood + 114: Plating entities: - proto: "" entities: @@ -32,52 +32,68 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: ZQAAAGUAAANlAAACaAAAAFgAAABoAAAAWAAAAEsAAABoAAAABAAAAAQAAAAEAAACBAAAAgQAAAIEAAACBAAAAmUAAANlAAABZQAAAGgAAABoAAAAaAAAAFgAAABLAAACaAAAAAQAAAAEAAAABAAAAgUAAAAEAAAABAAAAgQAAAJlAAADZQAAAmUAAABoAAAAWAAAAGgAAABYAAAASwAAAmgAAAAEAAABBAAAAAQAAAAEAAABBAAAAgQAAAIEAAAAZQAAA2UAAABlAAADaAAAAFgAAABYAAAAWAAAAEsAAAJoAAAABAAAAQQAAAEEAAACBAAAAAQAAAEEAAABBAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAAABAAAAgQAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgQAAAEEAAAABAAAAQQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAAEAAABBAAAAQQAAAIEAAAABAAAAAQAAAIEAAAABAAAAgQAAAIEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAgQAAAEEAAACBAAAAAQAAAEEAAACBAAAAgQAAAEEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAABBAAAAQQAAAEEAAAABAAAAAQAAAIEAAABBAAAAQQAAAIEAAAABAAAAQQAAAEEAAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAAABAAAAQQAAAAEAAABBAAAAgQAAAIEAAABBAAAAAQAAAEEAAAABAAAAQQAAAIEAAABBAAAAQQAAAIEAAABBAAAAAQAAAAEAAACBAAAAQQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAAABAAAAQQAAAAEAAACBAAAAgQAAAAEAAAABAAAAAQAAAEEAAAABAAAAQQAAAIEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAACBAAAAgQAAAIEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bwAAAAAAbwAAAAADbwAAAAACcgAAAAAAYgAAAAAAcgAAAAAAYgAAAAAAVQAAAAAAcgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACbwAAAAADbwAAAAABbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYgAAAAAAVQAAAAACcgAAAAAABwAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAAABwAAAAACBwAAAAACbwAAAAADbwAAAAACbwAAAAAAcgAAAAAAYgAAAAAAcgAAAAAAYgAAAAAAVQAAAAACcgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAAbwAAAAADbwAAAAAAbwAAAAADcgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAVQAAAAACcgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABJwAAAAAAJwAAAAAAJwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAAJwAAAAAAJwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACJwAAAAAAJwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABJwAAAAAAJwAAAAAAJwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAAJwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABJwAAAAAAJwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAAJwAAAAAAJwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: BAAAAQQAAABoAAAABAAAAmgAAAAEAAABBAAAAAQAAAAEAAABBAAAAgQAAAAEAAABBAAAAgQAAAIEAAACBAAAAAQAAAAEAAAAaAAAAAQAAAFoAAAABAAAAQQAAAAEAAACBAAAAAQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAWgAAAAEAAAAaAAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAIEAAACPQAAAT0AAABoAAAABAAAAGgAAAAEAAAABAAAAQUAAAAEAAABBAAAAQQAAAAEAAAABAAAAAQAAAIEAAABBAAAAD0AAAI9AAAAaAAAAAQAAAFoAAAABAAAAQQAAAIEAAABBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAAQAAAE9AAABPQAAAmgAAAAEAAABaAAAAAQAAAIEAAABBAAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAAEAAAAPQAAAj0AAAFoAAAABAAAAWgAAAAEAAACBAAAAgQAAAAEAAACBAAAAgQAAAIEAAACBAAAAAQAAAEEAAABBAAAACUAAAIlAAABaAAAAAQAAAFoAAAABAAAAAQAAAAEAAABBAAAAgQAAAEEAAACBAAAAQQAAAEEAAACBAAAAgQAAAIlAAAAJQAAAGgAAAAEAAAAaAAAAAQAAAEEAAACBAAAAgQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAIEAAAAPQAAAT0AAANoAAAABAAAAWgAAAAEAAAABAAAAQQAAABoAAAAaAAAAGgAAABoAAAABAAAAAQAAAIEAAABBAAAAD0AAAM9AAABaAAAAAQAAAJoAAAABAAAAQQAAAAfAAACHwAAAB8AAAIfAAABaAAAAAQAAAEEAAAABAAAAQQAAABoAAAAaAAAAGgAAAAEAAAAaAAAAAQAAAAEAAAAHwAAAGgAAABoAAAAaAAAAGgAAAAEAAACBAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAWgAAAAEAAACBAAAAh8AAAJoAAAAaAAAAGgAAABoAAAABAAAAAQAAAEEAAACBAAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAQAAAIfAAADHwAAAh8AAAMfAAACaAAAAAQAAAIEAAABBAAAAQQAAABoAAAAaAAAAGgAAABoAAAAaAAAAFcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAEAAAABAAAAAQAAAEEAAAAZQAAAWUAAANlAAADaAAAAFgAAABoAAAAWAAAAEsAAAJoAAAABAAAAQQAAAEEAAABBAAAAQQAAAIEAAACBAAAAQ== + tiles: BwAAAAABBwAAAAAAcgAAAAAABwAAAAACcgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcgAAAAAABwAAAAABcgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABcgAAAAAABwAAAAAAcgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACRgAAAAABRgAAAAAAcgAAAAAABwAAAAAAcgAAAAAABwAAAAAABwAAAAABCAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAARgAAAAACRgAAAAAAcgAAAAAABwAAAAABcgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABRgAAAAABRgAAAAACcgAAAAAABwAAAAABcgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAARgAAAAACRgAAAAABcgAAAAAABwAAAAABcgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAJwAAAAACJwAAAAABcgAAAAAABwAAAAABcgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACJwAAAAAAJwAAAAAAcgAAAAAABwAAAAAAcgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAARgAAAAABRgAAAAADcgAAAAAABwAAAAABcgAAAAAABwAAAAAABwAAAAABBwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAARgAAAAADRgAAAAABcgAAAAAABwAAAAACcgAAAAAABwAAAAABBwAAAAAAIQAAAAACIQAAAAAAIQAAAAACIQAAAAABcgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAAAcgAAAAAABwAAAAAABwAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABcgAAAAAABwAAAAACBwAAAAACIQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAACcgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAbwAAAAABbwAAAAADbwAAAAADcgAAAAAAYgAAAAAAcgAAAAAAYgAAAAAAVQAAAAACcgAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAB + version: 6 -1,0: ind: -1,0 - tiles: PAAAAAQAAAEEAAAABQAAAAQAAAEEAAAABAAAAmgAAABoAAAAaAAAAGgAAABlAAACZQAAAmUAAANlAAADZQAAAjwAAAA8AAAABAAAAgQAAAIEAAAABAAAAAQAAABoAAAAXwAAAV8AAAFoAAAAZQAAAmUAAANlAAAAZQAAAGUAAAA8AAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAABaAAAAF8AAABfAAACVwAAAGUAAAFlAAADZQAAA2UAAAJlAAABBAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAWgAAABfAAADXwAAAGgAAAAfAAADHwAAAB8AAAEfAAAAZQAAAQQAAAAFAAAABAAAAgQAAAEEAAABBAAAAAQAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAEAAABBAAAAQQAAAIEAAACBAAAAQQAAAEEAAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAAQAAAEEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAACBAAAAQQAAAIEAAAABAAAAQQAAAEEAAABBAAAAQQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQQAAAIEAAACBAAAAAQAAAEFAAAABAAAAgQAAAAEAAACBAAAAQQAAAAEAAAABAAAAQQAAAEEAAAABAAAAQQAAAAEAAACBAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAQQAAAAEAAAABAAAAQQAAAEEAAACBAAAAQQAAAAEAAABBAAAAgQAAAEEAAACBAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAgQAAAAEAAABBAAAAgQAAAIEAAAABAAAAAQAAAEEAAAABAAAAAQAAAIEAAACBAAAAgQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAACBAAAAQQAAAEEAAACBAAAAQQAAAEEAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAQAAAEEAAABBAAAAAQAAAIEAAACBAAAAAQAAAEEAAABBAAAAQQAAAIEAAAABAAAAgQAAAIEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAQQAAAEEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABBAAAAgQAAAIEAAAABAAAAg== + tiles: RQAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAABBwAAAAAABwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAACbwAAAAACbwAAAAADbwAAAAADbwAAAAACRQAAAAAARQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcgAAAAAAaQAAAAABaQAAAAABcgAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAbwAAAAAARQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABcgAAAAAAaQAAAAAAaQAAAAACYQAAAAAAbwAAAAABbwAAAAADbwAAAAADbwAAAAACbwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABcgAAAAAAaQAAAAADaQAAAAAAcgAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAAAbwAAAAABBwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAC + version: 6 -1,-1: ind: -1,-1 - tiles: BAAAAgQAAAAEAAACBAAAAgQAAAIEAAACBAAAAgQAAAAEAAACBAAAAQQAAAEEAAACBAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAACBAAAAAQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAEAAABBAAAAQQAAAEEAAABBAAAAgQAAAIEAAACaAAAAGUAAAFlAAACGgAAAxoAAAMaAAADGgAAAxoAAAJoAAAABAAAAgQAAAIEAAABBAAAAQUAAAAEAAACBAAAAGgAAABlAAACZQAAABoAAAMeAAADHgAAAB4AAAEaAAABaAAAAAQAAAIEAAACBAAAAAQAAAIEAAABBAAAAQQAAAJoAAAAZQAAAmUAAAIaAAABGgAAAhoAAAAaAAABGgAAAWgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGUAAABlAAAAZQAAAGUAAANlAAACZQAAAWUAAAJoAAAAJQAAASUAAAMlAAADTAAAAUwAAAFMAAACTAAAAEwAAABlAAACZQAAAGUAAAJlAAADZQAAAWUAAABlAAADaAAAADwAAAA8AAAAPAAAAEwAAAMeAAAAHgAAAh4AAABMAAACZQAAAGUAAAJlAAABZQAAA2UAAAFlAAADZQAAAVcAAAA8AAAAPAAAADwAAABMAAACHgAAAh4AAAEeAAABTAAAAWUAAAJlAAABZQAAAmUAAAFlAAAAZQAAAmUAAAFXAAAAPAAAADwAAAA8AAAATAAAAkwAAANMAAABTAAAAkwAAAJlAAAAZQAAAGUAAAFlAAADZQAAAGUAAANlAAABaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAABAAAAQQAAAEEAAACBAAAAgQAAAEEAAABBAAAAgQAAAEEAAAABAAAAAQAAAAEAAAABAAAAQQAAAIEAAABBAAAAmgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAEAAACBAAAAAQAAAIEAAABBAAAAQQAAAIEAAACIQAAASEAAAIhAAACaAAAAGgAAABoAAAAaAAAAFcAAABXAAAABAAAAAQAAAIEAAACBAAAAQQAAAEEAAAABAAAAh8AAAEfAAADHwAAAWgAAABlAAACZQAAAGUAAAJlAAADZQAAAQ== + tiles: BwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACcgAAAAAAbwAAAAABbwAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAACcgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABCAAAAAAABwAAAAACBwAAAAAAcgAAAAAAbwAAAAACbwAAAAAAHAAAAAADIAAAAAADIAAAAAAAIAAAAAABHAAAAAABcgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACcgAAAAAAbwAAAAACbwAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAACcgAAAAAAJwAAAAABJwAAAAADJwAAAAADVgAAAAABVgAAAAABVgAAAAACVgAAAAAAVgAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAABbwAAAAAAbwAAAAADcgAAAAAARQAAAAAARQAAAAAARQAAAAAAVgAAAAADIAAAAAAAIAAAAAACIAAAAAAAVgAAAAACbwAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAABbwAAAAADbwAAAAABYQAAAAAARQAAAAAARQAAAAAARQAAAAAAVgAAAAACIAAAAAACIAAAAAABIAAAAAABVgAAAAABbwAAAAACbwAAAAABbwAAAAACbwAAAAABbwAAAAAAbwAAAAACbwAAAAABYQAAAAAARQAAAAAARQAAAAAARQAAAAAAVgAAAAACVgAAAAADVgAAAAABVgAAAAACVgAAAAACbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAADbwAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACIwAAAAABIwAAAAACIwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACIQAAAAABIQAAAAADIQAAAAABcgAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAAB + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAAABAAAAgQAAAAEAAACBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAAABAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAACBAAAAAQAAAEEAAACBAAAAgQAAAEEAAACBAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAAQAAAAEAAABBAAAAQQAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAIEAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAgQAAAAEAAAABAAAAAQAAAIEAAACBAAAAgQAAAEEAAABBAAAAgQAAAIEAAACBAAAAQQAAAEEAAACBAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAABBAAAAQQAAAEEAAAABAAAAAQAAAEEAAACBAAAAQQAAAEEAAABBAAAAgQAAAEEAAABBAAAAgQAAAEEAAABBAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAEAAAABAAAAQQAAAEEAAACBAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAA + version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAQQAAAEEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAAQAAAEEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAgQAAAEEAAABBAAAAQQAAAAEAAACBAAAAAQAAAIEAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAgQAAAEEAAABBAAAAAQAAAIEAAAABAAAAQQAAAIEAAABBAAAAQQAAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAIEAAABBAAAAgQAAAAEAAABBAAAAQQAAAIEAAAABAAAAQQAAAIEAAAABAAAAgQAAAIEAAAABAAAAgQAAAIEAAAABAAAAAQAAAAEAAACBAAAAgQAAAAEAAAABAAAAgQAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAAQAAAEEAAAABAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAgQAAAEEAAAABAAAAgQAAAAEAAACBAAAAgQAAAFoAAAAaAAAAGgAAABoAAAAaAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAEEAAAABAAAAQQAAAEEAAABIQAAAx8AAAMhAAADIQAAAlcAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAQAAAAEAAACBAAAAiEAAAMfAAACIQAAAiEAAAJoAAAABAAAAAQAAAIEAAACBAAAAgQAAAIEAAAABAAAAWgAAAAEAAABBAAAAWgAAAAhAAABHwAAASEAAAAhAAAAVwAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAQAAAFoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAEAAAABAAAAQQAAAEEAAABBAAAAGgAAAAEAAAABAAAAAQAAAEEAAABBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABBAAAAAQAAAEEAAACBAAAAQQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAEAAABBAAAAQQAAAAEAAACBAAAAQQAAAAEAAABBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAAQAAAEEAAABBAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAAQAAAEEAAACBAAAAAQAAAAFAAAABAAAAAQAAAEEAAAABAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABIwAAAAADIQAAAAADIwAAAAADIwAAAAACYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAAABwAAAAACBwAAAAACIwAAAAADIQAAAAACIwAAAAACIwAAAAACcgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABcgAAAAAABwAAAAABBwAAAAABcgAAAAAAIwAAAAABIQAAAAABIwAAAAAAIwAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAAcgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAA + version: 6 0,1: ind: 0,1 - tiles: BAAAAgQAAAAEAAAABAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAABBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: BAAAAAQAAAAEAAAABAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: BAAAAgQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAEEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAAQAAAIEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABaAAAAFcAAABoAAAAVwAAAGgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAGgAAAAiAAABIgAAACIAAAJoAAAABAAAAAQAAAIEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABoAAAAIgAAAyIAAAEiAAACaAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAEAAAAaAAAAB8AAAEfAAADHwAAAWgAAAAEAAABBAAAAAQAAAEEAAABBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAGgAAAAiAAADIgAAASIAAAJoAAAABAAAAAQAAAEEAAAABAAAAAQAAAAEAAABBAAAAQQAAAIEAAABAAAAAAQAAAJoAAAAIgAAAyIAAAIiAAABaAAAAAQAAAEEAAABBAAAAAQAAAAEAAABBAAAAQQAAAAEAAABBAAAAAQAAAIEAAABaAAAAFcAAABoAAAAVwAAAGgAAAAEAAABBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAgQAAAJoAAAABAAAAWgAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAEAAABBAAAAAQAAAIEAAACaAAAAAQAAAFoAAAABAAAAQQAAAIEAAACBAAAAAQAAAEEAAABBAAAAgQAAAAEAAABBAAAAQQAAAAEAAABBAAAAmgAAAAEAAAAaAAAAAQAAAEEAAABBAAAAQQAAAIEAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAACBAAAAgQAAAJoAAAABAAAAWgAAAAEAAACBAAAAgQAAAEEAAACBAAAAAQAAAAEAAACBAAAAgQAAAEEAAABBAAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcgAAAAAAJAAAAAABJAAAAAAAJAAAAAACcgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcgAAAAAAJAAAAAADJAAAAAABJAAAAAACcgAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcgAAAAAAIQAAAAABIQAAAAADIQAAAAABcgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcgAAAAAAJAAAAAADJAAAAAABJAAAAAACcgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAABwAAAAACcgAAAAAAJAAAAAADJAAAAAACJAAAAAABcgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACcgAAAAAABwAAAAABcgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACcgAAAAAABwAAAAABcgAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAACcgAAAAAABwAAAAAAcgAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACcgAAAAAABwAAAAABcgAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAB + version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: BAAAAQQAAAEEAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAAPAAAADwAAAA8AAAAPAAAAAQAAAIEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAABBAAAADwAAAA8AAAAPAAAADwAAAAAAAAABAAAAgQAAAAEAAAABAAAAQQAAAIEAAAABAAAAAQAAAEEAAABBAAAAQQAAAI8AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAEEAAAABAAAAgQAAAEEAAABBAAAAjwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAgQAAAIEAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAACBAAAAAQAAAEEAAACBAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAAQAAAEEAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAACBAAAAAQAAAEEAAAABAAAAAQAAAEEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAAABAAAAgQAAAEEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACRQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAmgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAFXAAAAIQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACaAAAACEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAFcAAAAhAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAFoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABYQAAAAAAIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACcgAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAYQAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -880,15 +896,11 @@ entities: - pos: 3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1327 components: - pos: 3.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - pos: 4.5,2.5 @@ -899,29 +911,21 @@ entities: - pos: 5.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1330 components: - pos: 5.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1331 components: - pos: 5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1332 components: - pos: 5.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1333 components: - pos: 2.5,1.5 @@ -1032,15 +1036,11 @@ entities: - pos: 6.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1355 components: - pos: 7.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1356 components: - pos: 7.5,-2.5 @@ -1066,666 +1066,476 @@ entities: - pos: 5.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1361 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1362 components: - pos: 4.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1363 components: - pos: 4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1364 components: - pos: 4.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1365 components: - pos: 4.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1366 components: - pos: 4.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1367 components: - pos: 4.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1368 components: - pos: 4.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1369 components: - pos: 4.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1370 components: - pos: 4.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1371 components: - pos: 4.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1372 components: - pos: 4.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1373 components: - pos: 4.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1374 components: - pos: 4.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1375 components: - pos: 4.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1376 components: - pos: 4.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1377 components: - pos: 4.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1378 components: - pos: 2.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1379 components: - pos: 2.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1380 components: - pos: 2.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1381 components: - pos: 2.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1382 components: - pos: 2.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1383 components: - pos: 2.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1384 components: - pos: 2.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1385 components: - pos: 2.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1386 components: - pos: 2.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1387 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1388 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1389 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1390 components: - pos: 2.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1391 components: - pos: 2.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1392 components: - pos: 2.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1393 components: - pos: 1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1394 components: - pos: 0.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1395 components: - pos: -0.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1396 components: - pos: -1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1397 components: - pos: -2.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1398 components: - pos: -3.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1399 components: - pos: -4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1400 components: - pos: -5.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1401 components: - pos: -6.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1402 components: - pos: -7.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1403 components: - pos: -8.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1404 components: - pos: -9.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1405 components: - pos: -10.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1406 components: - pos: -11.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1407 components: - pos: -12.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1408 components: - pos: -13.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1409 components: - pos: -14.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1410 components: - pos: -15.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1411 components: - pos: -16.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1412 components: - pos: -17.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1413 components: - pos: -18.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1414 components: - pos: -19.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1415 components: - pos: -19.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1416 components: - pos: -19.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1417 components: - pos: -20.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1418 components: - pos: -21.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1419 components: - pos: -22.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1420 components: - pos: -23.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1421 components: - pos: -24.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1422 components: - pos: -25.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1423 components: - pos: -25.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1424 components: - pos: -24.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1425 components: - pos: -23.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1426 components: - pos: -22.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1427 components: - pos: -21.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1428 components: - pos: -21.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1429 components: - pos: -21.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1430 components: - pos: -20.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1431 components: - pos: -19.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1432 components: - pos: -18.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1433 components: - pos: -17.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1434 components: - pos: -16.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1435 components: - pos: -15.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1436 components: - pos: -14.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1437 components: - pos: -13.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1438 components: - pos: -12.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1439 components: - pos: -11.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1440 components: - pos: -10.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1441 components: - pos: -9.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1442 components: - pos: -8.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1443 components: - pos: -7.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1444 components: - pos: -6.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1445 components: - pos: -5.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1446 components: - pos: -4.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1447 components: - pos: -3.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1448 components: - pos: -2.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1449 components: - pos: -1.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1450 components: - pos: -0.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1451 components: - pos: 0.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1452 components: - pos: 1.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1453 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1454 components: - pos: 3.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1455 components: - pos: -0.5,-1.5 @@ -1736,8 +1546,6 @@ entities: - pos: -7.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1562 components: - pos: 2.5,-20.5 @@ -1748,8 +1556,6 @@ entities: - pos: 3.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1564 components: - pos: 4.5,-20.5 @@ -1825,8 +1631,6 @@ entities: - pos: -27.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1579 components: - pos: -27.5,-6.5 @@ -2104,8 +1908,6 @@ entities: - pos: 4.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1314 components: - pos: 4.5,2.5 @@ -2133,29 +1935,21 @@ entities: - pos: 5.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1319 components: - pos: 5.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1320 components: - pos: 5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1321 components: - pos: 5.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1322 components: - pos: 5.5,-1.5 @@ -2166,148 +1960,106 @@ entities: - pos: 5.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1324 components: - pos: 3.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1325 components: - pos: 3.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1457 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1458 components: - pos: 4.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1459 components: - pos: 4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1460 components: - pos: 4.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1461 components: - pos: 4.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1462 components: - pos: 4.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1463 components: - pos: 4.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1464 components: - pos: 4.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1465 components: - pos: 4.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1466 components: - pos: 4.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1467 components: - pos: 4.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1468 components: - pos: 4.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1469 components: - pos: 4.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1470 components: - pos: 4.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1471 components: - pos: 4.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1472 components: - pos: 4.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1473 components: - pos: 4.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1474 components: - pos: 4.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1475 components: - pos: 4.5,-20.5 @@ -2318,8 +2070,6 @@ entities: - pos: 3.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1477 components: - pos: 2.5,-20.5 @@ -2330,337 +2080,241 @@ entities: - pos: 2.5,-19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1479 components: - pos: 2.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1480 components: - pos: 2.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1481 components: - pos: 2.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1482 components: - pos: 2.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1483 components: - pos: 2.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1484 components: - pos: 2.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1485 components: - pos: 2.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1486 components: - pos: 2.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1487 components: - pos: 2.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1488 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1489 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1490 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1491 components: - pos: 2.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1492 components: - pos: 2.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1493 components: - pos: 2.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1494 components: - pos: 1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1495 components: - pos: 0.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1496 components: - pos: -0.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1497 components: - pos: -1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1498 components: - pos: -2.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1499 components: - pos: -3.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1500 components: - pos: -4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1501 components: - pos: -5.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1502 components: - pos: -6.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1503 components: - pos: -7.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1504 components: - pos: -7.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1505 components: - pos: -8.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1506 components: - pos: -9.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1507 components: - pos: -10.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1508 components: - pos: -11.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1509 components: - pos: -12.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1510 components: - pos: -13.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1511 components: - pos: -14.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1512 components: - pos: -15.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1513 components: - pos: -16.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1514 components: - pos: -17.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1515 components: - pos: -18.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1516 components: - pos: -19.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1517 components: - pos: -19.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1518 components: - pos: -19.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1519 components: - pos: -20.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1520 components: - pos: -21.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1521 components: - pos: -22.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1522 components: - pos: -23.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1523 components: - pos: -24.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1524 components: - pos: -25.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1525 components: - pos: -26.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1526 components: - pos: -27.5,-6.5 @@ -2671,8 +2325,6 @@ entities: - pos: -27.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1528 components: - pos: -27.5,-4.5 @@ -2683,232 +2335,166 @@ entities: - pos: -26.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1530 components: - pos: -25.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1531 components: - pos: -24.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1532 components: - pos: -23.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1533 components: - pos: -22.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1534 components: - pos: -21.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1535 components: - pos: -21.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1536 components: - pos: -21.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1537 components: - pos: -20.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1538 components: - pos: -19.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1539 components: - pos: -18.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1540 components: - pos: -17.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1541 components: - pos: -16.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1542 components: - pos: -15.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1543 components: - pos: -14.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1544 components: - pos: -13.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1545 components: - pos: -12.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1546 components: - pos: -11.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1547 components: - pos: -10.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1548 components: - pos: -9.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1549 components: - pos: -8.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1550 components: - pos: -7.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1551 components: - pos: -6.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1552 components: - pos: -5.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1553 components: - pos: -4.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1554 components: - pos: -3.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1555 components: - pos: -2.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1556 components: - pos: -1.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1557 components: - pos: -0.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1558 components: - pos: 0.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1559 components: - pos: 1.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1560 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1561 components: - pos: 3.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 1313 @@ -4112,15 +3698,11 @@ entities: pos: 10.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1286 components: - pos: 10.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeTJunction entities: - uid: 1278 @@ -4129,15 +3711,11 @@ entities: pos: 8.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1284 components: - pos: 8.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: GasPort entities: - uid: 1023 @@ -4175,8 +3753,6 @@ entities: pos: 7.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - uid: 1281 @@ -4185,8 +3761,6 @@ entities: pos: 7.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GasVolumePump entities: - uid: 1285 @@ -4748,8 +4322,6 @@ entities: - pos: -12.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredLightPostSmall entities: - uid: 1682 @@ -4757,29 +4329,21 @@ entities: - pos: -22.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1683 components: - pos: 5.5,-8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1684 components: - pos: -11.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1685 components: - pos: 5.5,-16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 1686 diff --git a/Resources/Maps/_NF/POI/grifty.yml b/Resources/Maps/_NF/POI/grifty.yml new file mode 100644 index 00000000000..75cd54d8d88 --- /dev/null +++ b/Resources/Maps/_NF/POI/grifty.yml @@ -0,0 +1,5673 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 59: FloorLaundry + 65: FloorOldConcrete + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.484375,-0.47654724 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: OwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADYgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQQAAAAABQQAAAAABQQAAAAADQQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAQQAAAAACQQAAAAACQQAAAAABQQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAQQAAAAAAQQAAAAACQQAAAAAAQQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAQQAAAAAAQQAAAAABQQAAAAACQQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAABQQAAAAAAQQAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAABQQAAAAAAQQAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAACQQAAAAABQQAAAAACYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAAAQQAAAAACQQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAABQQAAAAACQQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAABYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAADYgAAAAABYgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAQQAAAAACQQAAAAACQQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABQQAAAAABQQAAAAABQQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAQQAAAAADQQAAAAADQQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAACQQAAAAABQQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQQAAAAACQQAAAAACQQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAACYgAAAAADYgAAAAABcQAAAAAAcQAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#F9801DFF' + id: BotGreyscale + decals: + 0: 13,14 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 1: 13,12 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 2: 0,6 + 3: 3,6 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 4: -5,-6 + 5: -3,-5 + 6: -3,-4 + 7: -4,-3 + 8: -5,-2 + 9: -3,-2 + 10: -5,-4 + 11: 5,-2 + 12: 6,-3 + 13: 5,-5 + 14: 6,-5 + 15: 7,-6 + 16: 7,-4 + 17: 7,-2 + 18: 5,-6 + 19: 7,0 + 20: 4,0 + 21: 3,1 + 22: 4,2 + 23: -1,2 + 24: 0,2 + 25: 0,1 + 26: -3,1 + 27: -3,0 + 28: 0,0 + 29: -6,2 + 30: -7,1 + 31: -5,1 + 32: -4,3 + 33: -2,5 + 34: -2,6 + 35: 0,6 + 36: 1,5 + 37: 2,6 + 38: 6,6 + 39: 5,6 + 40: 7,6 + 41: 7,7 + 42: 9,4 + 43: 8,2 + 44: 7,3 + 45: 5,1 + 46: 8,1 + 47: 6,2 + 48: 6,4 + 49: 8,4 + 50: 2,2 + 51: -7,3 + 52: -6,5 + 53: -4,8 + 54: 4,1 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 55: -3,-2 + 56: -4,-4 + 57: -3,-5 + 58: -3,0 + 59: -4,1 + 60: 0,2 + 61: 0,1 + 62: 1,1 + 63: 3,2 + 64: 7,1 + 65: 6,5 + 66: 8,7 + 67: 8,6 + 68: 6,8 + 69: 3,5 + 70: 2,6 + 71: -3,5 + 72: -3,5 + 73: -5,5 + 74: -6,5 + 75: -7,1 + 76: -6,1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 77: -4,-5 + 78: -3,-6 + 79: -4,-5 + 80: -5,-1 + 81: -4,-2 + 82: -4,1 + 83: -2,2 + 84: -1,1 + 85: -2,1 + 86: 1,2 + 87: 2,0 + 88: 3,1 + 89: 4,1 + 90: 6,-1 + 91: 6,0 + 92: 7,2 + 93: 7,2 + 94: 5,2 + 95: 7,2 + 96: 8,2 + 97: 8,4 + 98: 7,5 + 99: 8,6 + 100: 8,7 + 101: 7,8 + 102: 7,8 + 103: 6,8 + 104: 5,7 + 105: 5,6 + 106: 6,-3 + 107: 7,-5 + 108: 7,-6 + 109: 7,-6 + 110: 6,-5 + 111: 5,-6 + 112: -2,1 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 113: -7,2 + 114: -7,4 + 115: -6,3 + 116: -4,5 + 117: -4,5 + 118: -2,5 + 119: -2,6 + 120: 0,6 + 121: 0,5 + 122: -4,8 + 123: -5,8 + 124: 6,2 + 125: 9,1 + 126: 9,3 + 127: 8,4 + 128: 8,6 + 129: 8,7 + 130: 5,6 + 131: 7,2 + 132: 8,3 + 133: 5,4 + 134: 6,3 + 135: 7,-5 + 136: 7,-5 + 137: 6,-5 + 138: 6,-4 + 139: 6,-4 + 140: -3,3 + 141: 1,1 + 142: -1,0 + 143: -1,1 + 144: 6,7 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 49151 + 1: 16384 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 64755 + 1: 12 + 2,0: + 0: 30583 + 2,1: + 0: 30583 + 2,2: + 0: 61491 + -2,0: + 0: 65535 + -2,1: + 0: 64511 + 2: 1024 + -2,2: + 0: 35054 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 39423 + 0,-1: + 0: 61440 + 1,-2: + 0: 65520 + 1,-1: + 0: 65535 + 2,-2: + 0: 4368 + 2,-1: + 0: 12561 + -2,-1: + 0: 60620 + -2,-2: + 0: 52416 + -1,-2: + 0: 30576 + -1,-1: + 0: 63351 + 0,2: + 0: 50431 + 0,3: + 0: 65535 + 1,3: + 0: 65535 + 2,3: + 0: 63479 + 3,2: + 0: 61440 + 3,3: + 0: 65535 + -3,1: + 0: 2048 + -3,3: + 0: 128 + -2,3: + 0: 36863 + -1,3: + 0: 36863 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Grifty + type: BecomesStation +- proto: AirCanister + entities: + - uid: 233 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 200 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 403 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - links: + - 755 + type: DeviceLinkSink + - linkedPorts: + 756: + - DoorStatus: InputA + type: DeviceLinkSource + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - links: + - 755 + type: DeviceLinkSink + - linkedPorts: + 756: + - DoorStatus: InputB + type: DeviceLinkSource + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - links: + - 756 + type: DeviceLinkSink + - linkedPorts: + 755: + - DoorStatus: InputB + type: DeviceLinkSource + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - links: + - 756 + type: DeviceLinkSink + - linkedPorts: + 755: + - DoorStatus: InputA + type: DeviceLinkSource +- proto: AirlockGlass + entities: + - uid: 375 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 605 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 414 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 734 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 739 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 748 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 751 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform +- proto: BarSignEngineChange + entities: + - uid: 524 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - needsPower: False + type: ApcPowerReceiver +- proto: BookAurora + entities: + - uid: 680 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookBase + entities: + - uid: 674 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 675 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 676 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 677 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics + - uid: 678 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookCafe + entities: + - uid: 694 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookChemicalCompendium + entities: + - uid: 682 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookEarth + entities: + - uid: 673 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookEscalationSecurity + entities: + - uid: 671 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookFeather + entities: + - uid: 226 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookHowToKeepStationClean + entities: + - uid: 683 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookHowToSurvive + entities: + - uid: 681 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanAntarctica + entities: + - uid: 571 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanArctic + entities: + - uid: 686 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanCity + entities: + - uid: 693 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanDesert + entities: + - uid: 688 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanLostWolfPup + entities: + - uid: 690 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanMountain + entities: + - uid: 689 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanOcean + entities: + - uid: 687 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookIanRanch + entities: + - uid: 685 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookMedicalOfficer + entities: + - uid: 679 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookRufus + entities: + - uid: 684 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookshelfFilled + entities: + - uid: 530 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - storageUsed: 145 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 671 + - 226 + - 571 + - 672 + - 673 + - 674 + - 675 + - 676 + - 677 + - 678 + - 679 + - 680 + - 681 + - 682 + - 683 + - 684 + - 685 + - 686 + - 687 + - 688 + - 689 + - 690 + - 691 + - 692 + - 693 + - 694 + - 695 + - 696 + - 697 + type: ContainerContainer +- proto: BookSlothClownMMD + entities: + - uid: 697 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookSlothClownPranks + entities: + - uid: 695 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookSlothClownSSS + entities: + - uid: 696 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookTemple + entities: + - uid: 692 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BookTruth + entities: + - uid: 691 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: BoxLightMixed + entities: + - uid: 667 + components: + - pos: 1.750885,5.4413614 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 2 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 498 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 639 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 662 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 663 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 136 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 416 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 418 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 286 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform +- proto: CartridgeMagnum + entities: + - uid: 700 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 701 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 702 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 703 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 704 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics + - uid: 705 + components: + - flags: InContainer + type: MetaData + - parent: 699 + type: Transform + - canCollide: False + type: Physics +- proto: Catwalk + entities: + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 109 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 114 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: CigarCase + entities: + - uid: 604 + components: + - pos: 7.396858,5.4011035 + parent: 1 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 603 + components: + - pos: 7.599983,5.119657 + parent: 1 + type: Transform +- proto: CigCartonBlack + entities: + - uid: 576 + components: + - pos: 7.3696795,5.7634063 + parent: 1 + type: Transform +- proto: CigCartonGreen + entities: + - uid: 575 + components: + - pos: 7.6114073,6.123031 + parent: 1 + type: Transform +- proto: CigCartonMixed + entities: + - uid: 574 + components: + - pos: 7.4395323,6.5295634 + parent: 1 + type: Transform +- proto: CigPackMixedNasty + entities: + - uid: 572 + components: + - pos: -1.624001,3.1678529 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 631 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform +- proto: ComputerWithdrawBankATM + entities: + - uid: 209 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: DefibrillatorCabinetFilledOpen + entities: + - uid: 569 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 393 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 402 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: DrinkAleBottleFull + entities: + - uid: 590 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 591 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 592 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkBeerBottleFull + entities: + - uid: 587 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 589 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 593 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkChampagneBottleFull + entities: + - uid: 602 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkColaCan + entities: + - uid: 720 + components: + - pos: 6.584388,1.5785167 + parent: 1 + type: Transform +- proto: DrinkCreamCarton + entities: + - uid: 515 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkEnergyDrinkCan + entities: + - uid: 698 + components: + - pos: -0.22819132,5.4647512 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: EnergyDrink + Quantity: 25 + type: SolutionContainerManager + - opened: True + type: Openable +- proto: DrinkFourteenLokoCan + entities: + - uid: 719 + components: + - pos: 6.443763,1.7661483 + parent: 1 + type: Transform +- proto: DrinkGinBottleFull + entities: + - uid: 596 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 598 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 600 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkGoldschlagerBottleFull + entities: + - uid: 594 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkGrapeCan + entities: + - uid: 225 + components: + - pos: 6.053138,1.5785167 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 516 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkNuclearColaGlass + entities: + - uid: 711 + components: + - pos: 7.646888,4.2522497 + parent: 1 + type: Transform + - uid: 716 + components: + - pos: 7.646888,4.564967 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 7.365638,4.4086084 + parent: 1 + type: Transform +- proto: DrinkRootBeerCan + entities: + - uid: 717 + components: + - pos: 6.146888,1.7974193 + parent: 1 + type: Transform +- proto: DrinkRumBottleFull + entities: + - uid: 597 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 599 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 601 + components: + - flags: InContainer + type: MetaData + - parent: 595 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DrinkSodaWaterCan + entities: + - uid: 723 + components: + - pos: 6.318763,1.5472457 + parent: 1 + type: Transform +- proto: DrinkVermouthBottleFull + entities: + - uid: 588 + components: + - flags: InContainer + type: MetaData + - parent: 586 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: EggBoxBroken + entities: + - uid: 519 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: EmergencyLight + entities: + - uid: 768 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetOpen + entities: + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform +- proto: FenceMetalBroken + entities: + - uid: 271 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform +- proto: FenceMetalCorner + entities: + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 389 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1 + type: Transform +- proto: FenceMetalGate + entities: + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform +- proto: FenceMetalStraight + entities: + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform +- proto: filingCabinetDrawer + entities: + - uid: 545 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 762 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 764 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 757 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocket + entities: + - uid: 556 + components: + - pos: 5.71742,3.4649358 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 554 + components: + - pos: 5.701795,3.7620168 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketDink + entities: + - uid: 555 + components: + - pos: 5.264295,3.5900216 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketGondola + entities: + - uid: 557 + components: + - pos: -5.766955,2.745686 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 553 + components: + - pos: 5.31117,3.8089242 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 558 + components: + - pos: -5.28258,2.7613206 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 559 + components: + - pos: -5.72008,2.479876 + parent: 1 + type: Transform +- proto: FoodBoxDonkpocketTeriyaki + entities: + - uid: 560 + components: + - pos: -5.266955,2.4329686 + parent: 1 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 550 + components: + - pos: -4.391955,2.6831422 + parent: 1 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 513 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodDonkpocketHonk + entities: + - uid: 561 + components: + - pos: -0.22007972,5.7634063 + parent: 1 + type: Transform +- proto: FoodMeatRotten + entities: + - uid: 518 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FoodSnackChips + entities: + - uid: 712 + components: + - pos: 7.662513,3.9082592 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: 7.412513,3.9551685 + parent: 1 + type: Transform +- proto: FoodSnackEnergy + entities: + - uid: 713 + components: + - pos: 7.365638,3.470456 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: 7.678138,3.439185 + parent: 1 + type: Transform +- proto: FoodSnackRaisins + entities: + - uid: 709 + components: + - pos: 7.678138,3.736266 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: 7.381263,3.7831733 + parent: 1 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform +- proto: GasDualPortVentPump + entities: + - uid: 316 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasOutletInjector + entities: + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 222 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 223 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 312 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 334 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 359 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 317 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 324 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 236 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 237 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 238 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 239 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 240 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 241 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 242 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 243 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 253 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 258 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 260 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 262 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 263 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 321 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 322 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 323 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 329 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 331 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 332 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 335 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 336 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 337 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 338 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 339 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 340 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 367 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 381 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 383 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 384 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 385 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 318 + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 382 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 387 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 234 + components: + - rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 235 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 310 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 255 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 314 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 371 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 386 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 771 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 366 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 407 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 7 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 55 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform +- proto: GunSafe + entities: + - uid: 563 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 565 + - 567 + - 564 + - 566 + - 699 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: HyperlinkBookSupernanny + entities: + - uid: 672 + components: + - flags: InContainer + type: MetaData + - parent: 530 + type: Transform + - canCollide: False + type: Physics +- proto: LightBulbBroken + entities: + - uid: 666 + components: + - rot: -1.5707963267948966 rad + pos: 1.89151,6.8016806 + parent: 1 + type: Transform +- proto: LightTubeBroken + entities: + - uid: 632 + components: + - rot: -1.5707963267948966 rad + pos: 0.16488624,6.033028 + parent: 1 + type: Transform +- proto: LockerBooze + entities: + - uid: 586 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - locked: False + type: Lock + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 594 + - 587 + - 588 + - 589 + - 590 + - 591 + - 592 + - 593 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 595 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - locked: False + type: Lock + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 602 + - 596 + - 597 + - 598 + - 599 + - 600 + - 601 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerFreezerBase + entities: + - uid: 512 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 519 + - 518 + - 517 + - 516 + - 515 + - 514 + - 513 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LogicGate + entities: + - uid: 755 + components: + - anchored: True + pos: -4.5,8.5 + parent: 1 + type: Transform + - links: + - 406 + - 405 + type: DeviceLinkSink + - linkedPorts: + 403: + - Output: DoorBolt + 404: + - Output: DoorBolt + type: DeviceLinkSource + - canCollide: False + bodyType: Static + type: Physics + - uid: 756 + components: + - anchored: True + pos: -3.5,8.5 + parent: 1 + type: Transform + - links: + - 403 + - 404 + type: DeviceLinkSink + - linkedPorts: + 405: + - Output: DoorBolt + 406: + - Output: DoorBolt + type: DeviceLinkSource + - canCollide: False + bodyType: Static + type: Physics +- proto: MagicalLamp + entities: + - uid: 665 + components: + - pos: -0.67099,6.1137037 + parent: 1 + type: Transform +- proto: PaintingSkeletonCigarette + entities: + - uid: 619 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 738 + components: + - pos: -2.203373,2.5209823 + parent: 1 + type: Transform + - content: >- + [color=#1b67a5]█▄ █ ▀█▀ [head=3]Grifty's Script[/head] + + █ ▀█     █     Grifty's Gas and Grub + + + [bold]ATTENTION STORE ASSOCIATE! FOLLOW THIS SCRIPT[/bold] + + + Greeting our guests: + + "Hi there! Welcome to Grifty's! Can I interest you in our Gas n' Grub deal? Get a free box of donkpockets with every full tank of plasma!" + + + For every transaction, ensure you follow the Grifty Guide! Add a 5% implied Grift Fee. Do not mention the Grift Fee. + + + If the customer complains about the Grift Fee, say: + + "We here at Grifty's are committed to your grift experience. Have a nice day!" + + + Do not respond to additional complaints. If the guest becomes belligerent, say: + + "I'm sorry your experience has been suboptimal. Let me get our customer service resolver to help you with your needs." + + + Retrieve the Customer Service Resolver. Resolve your problem. + type: Paper +- proto: PaperOffice + entities: + - uid: 740 + components: + - pos: -0.63143015,5.3730693 + parent: 1 + type: Transform + - content: >- + Hey boss, + + + The crack in the plasma chamber's gettin' bigger, and I'm worried about the containment unit. What happens if the glass breaks? + type: Paper +- proto: PosterBroken + entities: + - uid: 509 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandBorgFancy + entities: + - uid: 570 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandBreadLies + entities: + - uid: 568 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonk + entities: + - uid: 551 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 583 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: PosterContrabandHaveaPuff + entities: + - uid: 582 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 630 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform +- proto: PosterContrabandPwrGame + entities: + - uid: 584 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform +- proto: PosterContrabandRedRum + entities: + - uid: 585 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform +- proto: PosterContrabandShamblersJuice + entities: + - uid: 611 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform +- proto: PosterContrabandSmoke + entities: + - uid: 573 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceCola + entities: + - uid: 715 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 615 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform +- proto: PosterContrabandVoteWeh + entities: + - uid: 609 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 728 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitCohibaRobustoAd + entities: + - uid: 578 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 552 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitNoTouching + entities: + - uid: 581 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitPDAAd + entities: + - uid: 577 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform +- proto: PosterLegitSMFires + entities: + - uid: 562 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 732 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 773 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 668 + components: + - pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 580 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightEmpty + entities: + - uid: 633 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: RandomCargoCorpseSpawner + entities: + - uid: 741 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: RandomPosterContrabandDeadDrop + entities: + - uid: 579 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 107 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 218 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 217 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 520 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: ReagentContainerMilkOat + entities: + - uid: 517 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ReagentContainerMilkSoy + entities: + - uid: 514 + components: + - flags: InContainer + type: MetaData + - parent: 512 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ReinforcedPlasmaWindow + entities: + - uid: 227 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform +- proto: ShardGlassPlasma + entities: + - uid: 95 + components: + - rot: 1.5707963267948966 rad + pos: 0.5720506,9.027569 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: 0.2400167,7.0461235 + parent: 1 + type: Transform +- proto: SignSmoking + entities: + - uid: 706 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 70 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 71 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + type: Transform +- proto: SolarPanelBroken + entities: + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 180 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform +- proto: SpaceCash5000 + entities: + - uid: 565 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 566 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 567 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SpawnMobCarp + entities: + - uid: 388 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 707 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnMobCarpHolo + entities: + - uid: 729 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform +- proto: SpeedLoaderMagnum + entities: + - uid: 699 + components: + - flags: InContainer + type: MetaData + - parent: 563 + type: Transform + - entities: + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + type: BallisticAmmoProvider + - containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + type: ContainerContainer + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: StationMapBroken + entities: + - uid: 510 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 526 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 212 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 207 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 523 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 535 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 521 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineRestockBooze + entities: + - uid: 624 + components: + - pos: 3.7009673,5.810936 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 3.5447173,5.482584 + parent: 1 + type: Transform +- proto: VendingMachineRestockCircuitVend + entities: + - uid: 626 + components: + - pos: 2.7009673,5.7640285 + parent: 1 + type: Transform +- proto: VendingMachineRestockDiscountDans + entities: + - uid: 627 + components: + - pos: 2.4822173,5.513855 + parent: 1 + type: Transform +- proto: VendingMachineRestockGetmoreChocolateCorp + entities: + - uid: 628 + components: + - pos: 1.6384673,5.7952995 + parent: 1 + type: Transform +- proto: VendingMachineRestockMedical + entities: + - uid: 629 + components: + - pos: 1.3572173,5.5607624 + parent: 1 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 528 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineSustenance + entities: + - uid: 536 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 23 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 3 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 5 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform +- proto: WarningAir + entities: + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform +- proto: WarningPlasma + entities: + - uid: 210 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 742 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - location: Grifty's Gas and Grub + type: WarpPoint +- proto: WeaponRevolverInspector + entities: + - uid: 564 + components: + - flags: InContainer + desc: A store associate's best friend. + name: Customer Service Resolver + type: MetaData + - parent: 563 + type: Transform + - currentSlot: 4 + type: RevolverAmmoProvider + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeldingFuelTankFull + entities: + - uid: 722 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 718 + components: + - pos: 5.521888,1.5645251 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/lodge.yml b/Resources/Maps/_NF/POI/lodge.yml similarity index 99% rename from Resources/Maps/lodge.yml rename to Resources/Maps/_NF/POI/lodge.yml index 248b77d18ef..964c9deb61a 100644 --- a/Resources/Maps/lodge.yml +++ b/Resources/Maps/_NF/POI/lodge.yml @@ -93,8 +93,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics @@ -1897,6 +1897,7 @@ entities: - type: RadiationGridResistance - id: Lodge type: BecomesStation + - type: StationTransit - proto: AirCanister entities: - uid: 1526 diff --git a/Resources/Maps/lpbravo.yml b/Resources/Maps/_NF/POI/lpbravo.yml similarity index 100% rename from Resources/Maps/lpbravo.yml rename to Resources/Maps/_NF/POI/lpbravo.yml diff --git a/Resources/Maps/northpole.yml b/Resources/Maps/_NF/POI/northpole.yml similarity index 99% rename from Resources/Maps/northpole.yml rename to Resources/Maps/_NF/POI/northpole.yml index c33a2eb9557..fe81b5e3dc2 100644 --- a/Resources/Maps/northpole.yml +++ b/Resources/Maps/_NF/POI/northpole.yml @@ -102,8 +102,8 @@ entities: type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 + angularDamping: 999999 + linearDamping: 999999 fixedRotation: False bodyType: Dynamic type: Physics diff --git a/Resources/Maps/tinnia.yml b/Resources/Maps/_NF/POI/tinnia.yml similarity index 92% rename from Resources/Maps/tinnia.yml rename to Resources/Maps/_NF/POI/tinnia.yml index 31299814049..5c84fff9be3 100644 --- a/Resources/Maps/tinnia.yml +++ b/Resources/Maps/_NF/POI/tinnia.yml @@ -3,19 +3,19 @@ meta: postmapinit: false tilemap: 0: Space - 27: FloorDark - 32: FloorDarkMono - 42: FloorFreezer - 84: FloorSteel - 91: FloorSteelMini - 92: FloorSteelMono - 96: FloorTechMaint - 100: FloorWhite - 104: FloorWhiteMini - 105: FloorWhiteMono - 110: FloorWood - 112: Lattice - 113: Plating + 28: FloorDark + 33: FloorDarkMono + 43: FloorFreezer + 85: FloorSteel + 92: FloorSteelMini + 93: FloorSteelMono + 97: FloorTechMaint + 101: FloorWhite + 105: FloorWhiteMini + 106: FloorWhiteMono + 111: FloorWood + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -28,43 +28,43 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACVAAAAAACWwAAAAABWwAAAAABWwAAAAADVAAAAAAAXAAAAAACYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAABVAAAAAACWwAAAAADWwAAAAADWwAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAABaQAAAAABVAAAAAACWwAAAAABWwAAAAAAWwAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAaAAAAAACaAAAAAAAaAAAAAACaAAAAAACZAAAAAADZAAAAAADaQAAAAADVAAAAAADWwAAAAABWwAAAAABWwAAAAAAVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAaAAAAAAAaAAAAAADaAAAAAACaAAAAAACZAAAAAABZAAAAAAAaQAAAAAAVAAAAAACWwAAAAADWwAAAAAAWwAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACaAAAAAACaAAAAAABaAAAAAABZAAAAAADZAAAAAABaQAAAAACVAAAAAAAWwAAAAACWwAAAAAAWwAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAXAAAAAABbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAaAAAAAABcQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAaQAAAAADaAAAAAADaAAAAAADaAAAAAAAaQAAAAABbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAADVQAAAAABXAAAAAADXAAAAAABXAAAAAAAVQAAAAACXQAAAAACYQAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAADVQAAAAABXAAAAAADXAAAAAACXAAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAADagAAAAABVQAAAAABXAAAAAAAXAAAAAAAXAAAAAACVQAAAAACcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAaQAAAAABaQAAAAADaQAAAAABaQAAAAADZQAAAAABZQAAAAADagAAAAADVQAAAAADXAAAAAABXAAAAAADXAAAAAACVQAAAAADcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAaQAAAAAAaQAAAAABaQAAAAACaQAAAAAAZQAAAAABZQAAAAAAagAAAAAAVQAAAAABXAAAAAADXAAAAAAAXAAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAaQAAAAABaQAAAAACaQAAAAADaQAAAAABZQAAAAADZQAAAAACagAAAAADVQAAAAADXAAAAAACXAAAAAACXAAAAAAAVQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAADZQAAAAABZQAAAAADZQAAAAAAZQAAAAABcgAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAAAXQAAAAABbwAAAAAAbwAAAAAAbwAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAbwAAAAADbwAAAAABbwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAADbwAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAADbwAAAAADcgAAAAAAbwAAAAAAbwAAAAADbwAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAaQAAAAABcgAAAAAAagAAAAADcgAAAAAAcgAAAAAAbwAAAAACbwAAAAACcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAagAAAAABaQAAAAACaQAAAAADaQAAAAACagAAAAADbwAAAAABbwAAAAAAbwAAAAACcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAaQAAAAACaQAAAAAAaQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAACVAAAAAADWwAAAAACWwAAAAACWwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAZAAAAAADZAAAAAADZAAAAAADcQAAAAAAaQAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAACcQAAAAAAZAAAAAADZAAAAAABaAAAAAADaAAAAAACaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAZAAAAAADZAAAAAACaAAAAAADaAAAAAADaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAAZAAAAAACZAAAAAADaAAAAAACaAAAAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAIAAAAAABIAAAAAACIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADIAAAAAABKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAIAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAXQAAAAAAVQAAAAADXAAAAAADXAAAAAACXAAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAcgAAAAAAZQAAAAAAZQAAAAACZQAAAAAAcgAAAAAAagAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAACXQAAAAACcgAAAAAAcgAAAAAAZQAAAAACZQAAAAADZQAAAAABZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACcgAAAAAAZQAAAAADZQAAAAAAaQAAAAABaQAAAAADaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAABcgAAAAAAZQAAAAABZQAAAAABaQAAAAACaQAAAAADaQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAABcgAAAAAAZQAAAAADZQAAAAACaQAAAAABaQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAcgAAAAAAZQAAAAABZQAAAAABZQAAAAAAZQAAAAADZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAcgAAAAAAcgAAAAAAIQAAAAACIQAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAACcgAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADIQAAAAADKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAADcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAADIQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAACcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAACHAAAAAADHAAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAADcQAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAADbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAXAAAAAACYAAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWwAAAAACWwAAAAACWwAAAAADVAAAAAABXAAAAAABYAAAAAAAcQAAAAAAAAAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAADbwAAAAABbwAAAAACbwAAAAADbwAAAAADbwAAAAAAbwAAAAAAbwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAABbwAAAAACbwAAAAAAbwAAAAABbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAABbwAAAAAAbwAAAAACbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAADbwAAAAADbwAAAAAAbwAAAAADbwAAAAACbwAAAAADbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAACbwAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAAAbwAAAAABbwAAAAADbwAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAABcgAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADcgAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAACbwAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAADcgAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAACbwAAAAADcgAAAAAAbwAAAAACbwAAAAAAbwAAAAABbwAAAAAAbwAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAbwAAAAACbwAAAAAAbwAAAAABbwAAAAADcgAAAAAAcgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAIQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAADXQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAVQAAAAABXAAAAAADXAAAAAADXAAAAAACVQAAAAADXQAAAAADYQAAAAAAcgAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAIAAAAAADcQAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACWwAAAAAAWwAAAAADWwAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACWwAAAAADWwAAAAABWwAAAAABVAAAAAACcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWwAAAAACWwAAAAAAWwAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAADVAAAAAACWwAAAAABWwAAAAADWwAAAAACVAAAAAACXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAAAVAAAAAACWwAAAAACWwAAAAABWwAAAAACVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAADbwAAAAACbwAAAAADbwAAAAACbwAAAAADbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADbwAAAAACbwAAAAACbwAAAAABbwAAAAABbwAAAAACbwAAAAACbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAADbwAAAAADbwAAAAADbwAAAAABbwAAAAADbwAAAAADbwAAAAADbwAAAAADbwAAAAABbwAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAADbwAAAAACcgAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAHAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAXQAAAAABXQAAAAADXQAAAAAAcgAAAAAAcgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAACcgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAACVQAAAAADcgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAADXAAAAAACXAAAAAAAXAAAAAADVQAAAAACcgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAABAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACXAAAAAACXAAAAAAAXAAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAADAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAXQAAAAACVQAAAAABXAAAAAAAXAAAAAABXAAAAAADVQAAAAACXQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAXQAAAAABVQAAAAADXAAAAAADXAAAAAADXAAAAAADVQAAAAABcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,1: ind: 0,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -450,7 +450,8 @@ entities: -1,0: 0: 65535 0,2: - 0: 65535 + 1: 51 + 0: 65484 0,3: 0: 65535 1,0: @@ -500,7 +501,8 @@ entities: -1,1: 0: 65535 -1,2: - 0: 65535 + 0: 65399 + 1: 136 -1,3: 0: 65535 0,-4: @@ -620,11 +622,9 @@ entities: -3,11: 0: 61166 -1,8: - 0: 8 - 1: 36848 + 0: 36856 0,8: - 0: 19 - 1: 16352 + 0: 16371 2,8: 0: 61166 2,9: @@ -644,29 +644,29 @@ entities: 2,12: 0: 65534 -2,8: - 1: 3264 + 0: 3264 -2,9: - 1: 49356 + 0: 49356 -2,10: - 1: 52236 + 0: 52236 -1,9: - 1: 63743 + 0: 63743 -1,10: - 1: 65423 + 0: 65423 -1,11: - 1: 8 + 0: 8 0,9: - 1: 62463 + 0: 62463 0,10: - 1: 65343 + 0: 65343 0,11: - 1: 19 + 0: 19 1,8: - 1: 1904 + 0: 1904 1,9: - 1: 28791 + 0: 28791 1,10: - 1: 30471 + 0: 30471 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -684,10 +684,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -702,6 +702,7 @@ entities: type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance + - type: StationTransit - proto: AirCanister entities: - uid: 1335 @@ -776,109 +777,111 @@ entities: pos: 0.5,15.5 parent: 1 type: Transform -- proto: AirlockFreezer +- proto: AirlockExternalGlassShuttleTransit entities: - - uid: 1030 + - uid: 188 components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 + - pos: 1.5,-15.5 parent: 1 type: Transform - - uid: 1031 + - uid: 189 components: - - rot: -1.5707963267948966 rad - pos: -1.5,9.5 + - pos: 0.5,-15.5 parent: 1 type: Transform -- proto: AirlockGlass - entities: - - uid: 1041 + - uid: 190 components: - - pos: -7.5,2.5 + - pos: -0.5,-15.5 parent: 1 type: Transform - - uid: 1042 + - uid: 191 components: - - pos: -8.5,2.5 + - rot: -1.5707963267948966 rad + pos: -13.5,0.5 parent: 1 type: Transform - - uid: 1043 + - uid: 192 components: - - pos: -3.5,7.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-0.5 parent: 1 type: Transform - - uid: 1044 + - uid: 193 components: - - pos: -2.5,7.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-1.5 parent: 1 type: Transform - - uid: 1045 + - uid: 194 components: - - pos: 7.5,7.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-1.5 parent: 1 type: Transform - - uid: 1894 + - uid: 195 components: - - pos: -3.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-0.5 parent: 1 type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 2 + - uid: 196 components: - rot: 1.5707963267948966 rad - pos: 11.5,50.5 + pos: 14.5,0.5 parent: 1 type: Transform - - uid: 188 +- proto: AirlockFreezer + entities: + - uid: 1030 components: - - pos: -0.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 parent: 1 type: Transform - - uid: 189 + - uid: 1031 components: - - pos: 0.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 parent: 1 type: Transform - - uid: 190 +- proto: AirlockGlass + entities: + - uid: 1041 components: - - pos: 1.5,-15.5 + - pos: -7.5,2.5 parent: 1 type: Transform - - uid: 191 + - uid: 1042 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 + - pos: -8.5,2.5 parent: 1 type: Transform - - uid: 192 + - uid: 1043 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 + - pos: -3.5,7.5 parent: 1 type: Transform - - uid: 193 + - uid: 1044 components: - - rot: -1.5707963267948966 rad - pos: -13.5,0.5 + - pos: -2.5,7.5 parent: 1 type: Transform - - uid: 194 + - uid: 1045 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 + - pos: 7.5,7.5 parent: 1 type: Transform - - uid: 195 + - uid: 1894 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 + - pos: -3.5,-7.5 parent: 1 type: Transform - - uid: 196 +- proto: AirlockGlassShuttle + entities: + - uid: 2 components: - rot: 1.5707963267948966 rad - pos: 14.5,0.5 + pos: 11.5,50.5 parent: 1 type: Transform - uid: 226 @@ -1136,6 +1139,38 @@ entities: pos: 1.5,-15.5 parent: 1 type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 2177 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 2182 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform - proto: BarSignSpacebucks entities: - uid: 1993 @@ -6453,7 +6488,7 @@ entities: - pos: 0.5,11.5 parent: 1 type: Transform -- proto: ClothingBeltMercWebbing +- proto: ClothingBeltMercenaryWebbing entities: - uid: 1448 components: @@ -6481,7 +6516,7 @@ entities: - pos: 6.281337,10.415316 parent: 1 type: Transform -- proto: ClothingHeadHatBeretMerc +- proto: ClothingHeadHatBeretMercenary entities: - uid: 1449 components: @@ -6495,7 +6530,7 @@ entities: - pos: 2.1766245,4.861325 parent: 1 type: Transform -- proto: ClothingHeadHelmetMerc +- proto: ClothingHeadHelmetMercenary entities: - uid: 1454 components: @@ -6523,7 +6558,7 @@ entities: - pos: 10.474246,8.604599 parent: 1 type: Transform -- proto: ClothingMaskGasMerc +- proto: ClothingMaskGasMercenary entities: - uid: 1452 components: @@ -6558,7 +6593,7 @@ entities: - pos: 2.2078745,4.6582 parent: 1 type: Transform -- proto: ClothingShoesBootsMercFilled +- proto: ClothingShoesBootsMercenaryFilled entities: - uid: 1450 components: @@ -6649,6 +6684,53 @@ entities: pos: 2.5,-3.5 parent: 1 type: Transform +- proto: ComputerBankATM + entities: + - uid: 393 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 394 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 396 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - proto: ComputerRadar entities: - uid: 266 @@ -6704,42 +6786,6 @@ entities: - pos: 3.5,9.5 parent: 1 type: Transform -- proto: ComputerWithdrawBankATM - entities: - - uid: 393 - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - ents: [] - bank-ATM-cashSlot: !type:ContainerSlot {} - type: ContainerContainer - - type: ItemSlots - - uid: 394 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - ents: [] - bank-ATM-cashSlot: !type:ContainerSlot {} - type: ContainerContainer - - type: ItemSlots - - uid: 396 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - ents: [] - bank-ATM-cashSlot: !type:ContainerSlot {} - type: ContainerContainer - - type: ItemSlots - proto: CrateFoodBarSupply entities: - uid: 1463 @@ -7090,6 +7136,8 @@ entities: - pos: 5.5,-7.5 parent: 1 type: Transform + - name: Tinnia's Rest + type: FaxMachine - delay: 999999 type: Anchorable - proto: FigureSpawner @@ -9895,13 +9943,6 @@ entities: - pos: -6.5,-6.5 parent: 1 type: Transform -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 2162 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - proto: PottedPlant6 entities: - uid: 1059 @@ -10681,6 +10722,18 @@ entities: - pos: -1.5,7.5 parent: 1 type: Transform + - uid: 2176 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform +- proto: RandomPosterContrabandDeadDrop + entities: + - uid: 2162 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform - proto: RandomSoap entities: - uid: 1789 diff --git a/Resources/Maps/_NF/Shuttles/loader.yml b/Resources/Maps/_NF/Shuttles/loader.yml new file mode 100644 index 00000000000..84289612009 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/loader.yml @@ -0,0 +1,1915 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 85: FloorSteel + 93: FloorSteelMono + 97: FloorTechMaint + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.48958334,-0.53125 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: VQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 29: -3,-4 + 33: -2,2 + 34: -1,1 + 35: 0,2 + 41: 1,5 + 42: 1,6 + 43: -1,6 + 44: -1,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 45: 0,6 + 46: -3,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 30: -2,-3 + 31: -1,-4 + 32: -3,0 + 36: -1,2 + 37: 0,3 + 38: 0,1 + 39: -2,1 + 40: 0,5 + 47: -3,0 + 48: -2,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 49: 1,1 + 50: 1,2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 24: -3,0 + 25: -3,2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 26: -3,1 + - node: + color: '#A4610696' + id: WarnCornerGreyscaleSE + decals: + 18: -1,-1 + - node: + color: '#A4610696' + id: WarnCornerGreyscaleSW + decals: + 28: -3,-1 + - node: + color: '#A4610696' + id: WarnCornerSmallGreyscaleSE + decals: + 19: -1,0 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 0: -4,0 + 1: -4,2 + 10: 1,1 + 11: 1,2 + 22: 1,0 + 23: 1,3 + - node: + color: '#A4610696' + id: WarnLineGreyscaleN + decals: + 12: 1,3 + 13: 0,3 + 14: -1,3 + 15: -2,3 + 16: -3,3 + - node: + color: '#A4610696' + id: WarnLineGreyscaleS + decals: + 17: -2,-1 + 20: 0,0 + 21: 1,0 + - node: + color: '#A4610696' + id: WarnLineGreyscaleW + decals: + 27: -3,1 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 7: 1,4 + 8: -3,-2 + 9: 1,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2: -4,2 + 3: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 4: -3,-2 + 5: 1,-1 + 6: 1,4 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 1,0: + 0: 4369 + -1,0: + 0: 65535 + 0,1: + 0: 14207 + 1: 16512 + 1,1: + 1: 17 + -1,1: + 1: 16433 + 0: 36046 + -1,-2: + 1: 4864 + 0: 60416 + -1,-1: + 0: 65535 + 0,-2: + 0: 63232 + 1: 2048 + 0,-1: + 0: 65535 + 1,-2: + 1: 4352 + 1,-1: + 0: 4369 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 173 + components: + - anchored: True + pos: -0.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: Airlock + entities: + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockCargo + entities: + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 76 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 239 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 82 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform +- proto: BlockGameArcade + entities: + - uid: 114 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 187 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 176 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 174 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 178 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 98 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: ClosetWall + entities: + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 222 + type: ContainerContainer +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 106 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 186 + components: + - pos: 3.5060241,-2.408408 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 124 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 125 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 78 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - links: + - 81 + type: DeviceLinkSink + - uid: 79 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - links: + - 81 + type: DeviceLinkSink + - uid: 80 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - links: + - 81 + type: DeviceLinkSink +- proto: DefibrillatorCabinetFilled + entities: + - uid: 109 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 188 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 159 + - 75 + - 74 + - 190 + - 189 + - 191 + type: DeviceNetwork + - devices: + - 159 + - 75 + - 74 + - 190 + - 189 + - 191 + type: DeviceList +- proto: FirelockGlass + entities: + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + type: DeviceNetwork + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + type: DeviceNetwork + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + type: DeviceNetwork + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + type: DeviceNetwork + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + type: DeviceNetwork +- proto: GasDualPortVentPump + entities: + - uid: 162 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 145 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 225 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 242 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 146 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 149 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 160 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 164 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 237 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 238 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 150 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 163 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 143 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 159 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 107 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 175 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 252 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 116 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 224 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 220 + components: + - pos: 3.5458195,-1.807816 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 177 + components: + - anchored: True + pos: -1.5,-2.5 + parent: 1 + type: Transform + - storage: + Plasma: 3000 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage + - type: ItemCooldown +- proto: Poweredlight + entities: + - uid: 126 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform +- proto: SheetPlasma1 + entities: + - uid: 222 + components: + - flags: InContainer + type: MetaData + - parent: 221 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ShuttleWindow + entities: + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 179 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 97 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 96 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 119 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 110 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 115 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 40 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 81 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - linkedPorts: + 78: + - Left: Forward + - Right: Reverse + - Middle: Off + 79: + - Left: Forward + - Right: Reverse + - Middle: Off + 80: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: VendingMachineSovietSoda + entities: + - uid: 113 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 3 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 24 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 2 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/_NF/Shuttles/mayflower.yml b/Resources/Maps/_NF/Shuttles/mayflower.yml new file mode 100644 index 00000000000..4cf680bcd1c --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/mayflower.yml @@ -0,0 +1,5335 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 34: FloorDarkOffset + 63: FloorMetalDiamond + 72: FloorRGlass + 94: FloorSteelOffset + 97: FloorTechMaint + 100: FloorWebTile + 103: FloorWhiteDiagonalMini + 107: FloorWhiteOffset + 111: FloorWood + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: 0.2982388,12.765411 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: IgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAawAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cgAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAawAAAAAASAAAAAAAcgAAAAAAcgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - updateAccumulator: 0.10273647 + type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 0: -5.9438343,-5.045738 + 1: -7,-5 + 2: -8,-5 + 3: -8,-6 + 4: -9,-6 + 5: -9,-7 + 6: -9,-8 + 7: -10,-7 + 8: -10,-6 + 9: -8,-6 + 10: -8,-7 + 11: -8,-8 + 12: -6,-8 + 13: -6,-7 + 14: -5,-7 + 15: -5,-8 + 16: -5,-9 + 17: -4,-9 + 18: -4,-8 + 19: -4,-7 + 20: -4,-6 + 21: -3,-6 + 22: -3,-7 + 23: -3,-8 + 24: -2,-9 + 25: -1,-9 + 26: 0,-9 + 27: 1,-9 + 28: 2,-9 + 29: 2,-8 + 30: 3,-8 + 31: 3,-7 + 32: 2,-7 + 33: 1,-7 + 34: 1,-7 + 35: 0,-7 + 36: 0,-8 + 37: 1,-8 + 38: -1,-6 + 39: -2,-6 + 40: -2,-7 + 41: -1,-7 + 42: -1,-8 + 43: -2,-8 + 44: -2,-5 + 45: -1,-5 + 46: -1,-4 + 47: -2,-4 + 48: -4,-4 + 49: -4,-4 + 50: -5,-4 + 51: -4,-4 + 52: -4,-4 + 53: -4,-4 + 54: -4,-4 + 55: -4,-4 + 56: -2,-2 + 57: -2,-3 + 58: -1,-2 + 59: -1,-3 + 60: -1,-2 + 61: -1,-1 + 62: -2,-1 + 63: -2,0 + 64: -1,0 + 65: 0,0 + 66: -1,1 + 67: -2,1 + 68: -3,1 + 69: -3,0 + 70: 0,1 + 71: 1,-4 + 72: 2,-4 + 73: 2,-5 + 74: 3,-4 + 75: 3,-5 + 76: 4,-5 + 77: 5,-5 + 78: 5,-6 + 79: 6,-6 + 80: 6,-7 + 81: 5,-7 + 82: 5,-8 + 83: 6,-8 + 84: 7,-8 + 85: 7,-7 + 86: 7,-6 + 87: -5,-3 + 88: -1,-11 + 89: -2,-11 + 90: -2,-10 + 91: -1,-10 + 92: -3,-12 + 93: -3,-13 + 94: -2,-13 + 95: 0,-13 + 96: -1,-13 + 97: 0,-14 + 98: -3,-14 + 99: -4,-15 + 100: -3,-15 + 101: -2,-15 + 102: 0,-15 + 103: 0,-15 + 104: 1,-15 + 105: 1,-14 + 106: 1,-15 + 107: 1,-16 + 108: 1,-17 + 109: 1,-18 + 110: 2,-18 + 111: 3,-18 + 112: 4,-18 + 113: 5,-18 + 114: 5,-17 + 115: 4,-17 + 116: 3,-17 + 117: 2,-17 + 118: 2,-16 + 119: 3,-16 + 120: 3,-15 + 121: 2,-15 + 122: 4,-16 + 123: 5,-16 + 124: 5,-15 + 125: 4,-15 + 126: -5,-15 + 127: -6,-15 + 128: -7,-15 + 129: -8,-15 + 130: -8,-16 + 131: -7,-16 + 132: -5,-16 + 133: -6,-16 + 134: -5,-17 + 135: -6,-17 + 136: -7,-17 + 137: -8,-17 + 138: -8,-18 + 139: -7,-18 + 140: -6,-18 + 141: -5,-18 + 142: -5,-19 + 143: -4,-18 + 144: -4,-17 + 145: -4,-19 + 146: -4,-20 + 147: -4,-20 + 148: -3,-20 + 149: -5,-20 + 150: -4,-20 + 151: -4,-20 + 152: -4,-20 + 153: -2,-20 + 154: -2,-20 + 155: -2,-20 + 156: -2,-20 + 157: -2,-20 + 158: -1,-20 + 159: -1,-20 + 160: 0,-20 + 161: 1,-20 + 162: 1,-19 + 163: 0,-19 + 164: 1,-20 + 165: 2,-20 + 166: 2,-19 + 167: 2,-18 + 168: 1,-18 + 169: -1,-22 + 170: -2,-22 + 171: -1,-21 + 172: -2,-21 + 173: -1,-9 + 174: -1,-9 + 175: -2,-7 + 176: -2,-7 + 177: -2,-7 + 178: -2,1 + 179: -2,1 + 180: -2,1 + 181: -2,1 + 182: -2,1 + 183: -2,-4 + 184: -2,-4 + 185: -2,-4 + 186: -2,-4 + 187: -2,-4 + 188: -2,-4 + 189: 5,-5 + 190: 5,-5 + 191: 5,-5 + 192: 5,-5 + 193: -5,-11 + 194: -4,-11 + 195: -5,-12 + 196: -6,-12 + 197: -6,-13 + 198: -7,-13 + 199: -6,-13 + 200: -5,-13 + 201: 2,-13 + 202: 2,-12 + 203: 2,-11 + 204: 3,-12 + 205: 4,-13 + 206: 4,-13 + 207: 4,-13 + 208: 3,-12 + 209: 2,-12 + 210: 2,-13 + 211: 1,-12 + 212: 2,-2 + 213: 1,-2 + 214: -5,-2 + 215: -6,-2 + 216: -4,-2 + 217: 4,-12 + 218: 4,-12 + 219: 4,-12 + 220: 4,-12 + 221: -1,-12 + 222: -2,-12 + 223: 3,-13 + 224: -2,-14 + 225: -1,-15 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 819 + -1,0: + 0: 4095 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + -1,-2: + 0: 65535 + -2,-1: + 0: 61183 + -3,-2: + 0: 65535 + -2,-2: + 0: 65535 + 0,-2: + 0: 65535 + 1,-2: + 0: 65535 + 2,-3: + 0: 28691 + -4,-3: + 0: 49152 + 1,-1: + 0: 5631 + -3,-1: + 0: 2252 + 2,-2: + 0: 14199 + -2,-3: + 0: 65279 + -1,-3: + 0: 65535 + 0,-3: + 0: 65535 + -4,-2: + 0: 2184 + 0,-4: + 0: 65535 + -2,-4: + 0: 65535 + 1,-4: + 0: 14199 + -1,-4: + 0: 65535 + -3,-3: + 0: 63727 + 1,-3: + 0: 62975 + 1,-5: + 0: 30583 + -3,-4: + 0: 2184 + 0,-6: + 0: 63280 + 0,-5: + 0: 65535 + 1,-6: + 0: 12288 + -3,-5: + 0: 34952 + -2,-6: + 0: 63488 + -2,-5: + 0: 65535 + -1,-6: + 0: 65520 + -1,-5: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Mayflower + type: BecomesStation +- proto: Airlock + entities: + - uid: 3 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 13 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 19 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform +- proto: AirlockMercenaryGlassLocked + entities: + - uid: 5 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - links: + - 285 + type: DeviceLinkSink +- proto: AirlockMercenaryLocked + entities: + - uid: 2 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform +- proto: AirlockShuttle + entities: + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 208 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 210 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 210 + components: + - flags: InContainer + type: MetaData + - parent: 208 + type: Transform + - canCollide: False + type: Physics + - uid: 283 + components: + - pos: 0.48323703,-16.528206 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: 0.19157034,-16.507359 + parent: 1 + type: Transform +- proto: AmeShielding + entities: + - uid: 17 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 22 + components: + - pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 39 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - hasAccess: True + lastExternalState: Good + lastChargeState: Full + type: Apc + - uid: 40 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 41 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 60 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform +- proto: BedsheetUSA + entities: + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 65 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaMiddle + entities: + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaRight + entities: + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BlastDoor + entities: + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 682 + type: DeviceLinkSink + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 682 + type: DeviceLinkSink +- proto: BoozeDispenser + entities: + - uid: 70 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: BoxZiptie + entities: + - uid: 76 + components: + - pos: 1.2497222,-1.586154 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 15 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 2.5,-17.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 2.5,-19.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: -6.5,-19.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 2.5,-16.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 689 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: -1.5,-12.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 30 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 36 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 740 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform +- proto: CargoPallet + entities: + - uid: 385 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 391 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform +- proto: ClothingHeadHatBH + entities: + - uid: 446 + components: + - pos: -2.521595,1.6588583 + parent: 1 + type: Transform +- proto: ClothingOuterCoatBHTrench + entities: + - uid: 588 + components: + - pos: -2.5111785,1.7005539 + parent: 1 + type: Transform +- proto: Cobweb1 + entities: + - uid: 406 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform +- proto: Cobweb2 + entities: + - uid: 414 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 415 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 785 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 423 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 424 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 425 + components: + - pos: -2.5558772,1.1215649 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 426 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 75 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform +- proto: DoorElectronics + entities: + - uid: 428 + components: + - flags: InContainer + type: MetaData + - parent: 427 + type: Transform + - canCollide: False + type: Physics + - uid: 430 + components: + - flags: InContainer + type: MetaData + - parent: 429 + type: Transform + - canCollide: False + type: Physics + - uid: 432 + components: + - flags: InContainer + type: MetaData + - parent: 431 + type: Transform + - canCollide: False + type: Physics + - uid: 434 + components: + - flags: InContainer + type: MetaData + - parent: 433 + type: Transform + - canCollide: False + type: Physics + - uid: 436 + components: + - flags: InContainer + type: MetaData + - parent: 435 + type: Transform + - canCollide: False + type: Physics + - uid: 438 + components: + - flags: InContainer + type: MetaData + - parent: 437 + type: Transform + - canCollide: False + type: Physics + - uid: 440 + components: + - flags: InContainer + type: MetaData + - parent: 439 + type: Transform + - canCollide: False + type: Physics + - uid: 442 + components: + - flags: InContainer + type: MetaData + - parent: 441 + type: Transform + - canCollide: False + type: Physics +- proto: DrinkGlass + entities: + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: -3.6303406,-7.296933 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -3.2449188,-7.255266 + parent: 1 + type: Transform +- proto: DrinkMugDog + entities: + - uid: 456 + components: + - pos: -2.6394038,1.270113 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 301 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 461 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 462 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 463 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 464 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 477 + - 478 + type: DeviceNetwork + - devices: + - 478 + - 477 + type: DeviceList + - uid: 465 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 470 + - 471 + type: DeviceNetwork + - devices: + - 470 + - 471 + type: DeviceList + - uid: 466 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 469 + - 482 + - 481 + - 468 + - 480 + - 479 + type: DeviceNetwork + - devices: + - 480 + - 468 + - 481 + - 482 + - 469 + - 479 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 467 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - locked: False + type: Lock +- proto: Firelock + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 466 + type: DeviceNetwork + - uid: 469 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 466 + type: DeviceNetwork + - uid: 470 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 465 + type: DeviceNetwork + - uid: 471 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 465 + type: DeviceNetwork +- proto: FirelockEdge + entities: + - uid: 181 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 464 + type: DeviceNetwork + - uid: 478 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 464 + type: DeviceNetwork + - uid: 479 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 466 + type: DeviceNetwork + - uid: 480 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 466 + type: DeviceNetwork + - uid: 481 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 466 + type: DeviceNetwork + - uid: 482 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 466 + type: DeviceNetwork +- proto: FoodPlateSmallTrash + entities: + - uid: 486 + components: + - pos: -3.6462908,-7.458515 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -2.3754575,-6.4480987 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 101 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 150 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 489 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 221 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 275 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 88 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 151 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 195 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 199 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 205 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 229 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 273 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 276 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 277 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 506 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 508 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 509 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 511 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 512 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 521 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 523 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 526 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 265 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 527 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 529 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 531 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 534 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 536 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 106 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 215 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 274 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 537 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 538 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 539 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 540 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 545 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 546 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 322 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 402 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 553 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 556 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 557 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 558 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 559 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 573 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 577 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform +- proto: GunSafeShuttleT2Spawner + entities: + - uid: 607 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 581 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + type: Transform +- proto: HighSecCaptainLocked + entities: + - uid: 219 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform +- proto: IntercomCommon + entities: + - uid: 586 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 587 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform +- proto: LightTubeBroken + entities: + - uid: 291 + components: + - flags: InContainer + type: MetaData + - parent: 12 + type: Transform + - canCollide: False + type: Physics + - uid: 334 + components: + - flags: InContainer + type: MetaData + - parent: 349 + type: Transform + - canCollide: False + type: Physics + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: -5.2790174,-3.3795156 + parent: 1 + type: Transform + - uid: 445 + components: + - flags: InContainer + type: MetaData + - parent: 297 + type: Transform + - canCollide: False + type: Physics + - uid: 609 + components: + - flags: InContainer + type: MetaData + - parent: 84 + type: Transform + - canCollide: False + type: Physics + - uid: 617 + components: + - flags: InContainer + type: MetaData + - parent: 260 + type: Transform + - canCollide: False + type: Physics + - uid: 619 + components: + - flags: InContainer + type: MetaData + - parent: 290 + type: Transform + - canCollide: False + type: Physics + - uid: 623 + components: + - flags: InContainer + type: MetaData + - parent: 613 + type: Transform + - canCollide: False + type: Physics + - uid: 685 + components: + - flags: InContainer + type: MetaData + - parent: 615 + type: Transform + - canCollide: False + type: Physics +- proto: LockerMercenaryFilled + entities: + - uid: 603 + components: + - anchored: True + pos: -5.5,-11.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 589 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 394 + components: + - pos: 2.5,-19.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerWallMedicalFilled + entities: + - uid: 591 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MachineFrameDestroyed + entities: + - uid: 593 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 596 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 485 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 598 + components: + - name: space lizard plushie (Ash) + type: MetaData + - pos: -2.4632607,1.6259737 + parent: 1 + type: Transform + - originalName: space lizard plushie + currentLabel: Ash + type: Label +- proto: PosterContrabandBountyHunters + entities: + - uid: 599 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform +- proto: PosterContrabandLustyExomorph + entities: + - uid: 130 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 602 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 26 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 722 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 733 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 12 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 291 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 617 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 290 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 619 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 445 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 334 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 452 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 1 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - enabled: False + type: PointLight + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 609 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 613 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: PointLight + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 623 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 615 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - enabled: False + type: PointLight + - containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 685 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 622 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 72 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 74 + components: + - pos: 3.8222036,-1.2021818 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 3.4472036,-1.1917572 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 3.5826201,-1.5565939 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 3.2805371,-1.6191378 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 172 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 635 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform +- proto: RandomSpawner100 + entities: + - uid: 604 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 652 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 658 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 660 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 662 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 663 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform +- proto: ShuttersWindowOpen + entities: + - uid: 427 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 428 + type: ContainerContainer + - address: 7AD6-CAD9 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 429 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 430 + type: ContainerContainer + - address: 3166-CC55 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 431 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 432 + type: ContainerContainer + - address: 3B80-A1A0 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 433 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 434 + type: ContainerContainer + - address: 2F85-2492 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 435 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 436 + type: ContainerContainer + - address: 04F7-DBDF + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 438 + type: ContainerContainer + - address: 782C-670A + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 440 + type: ContainerContainer + - address: 5183-70B3 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink + - uid: 441 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 442 + type: ContainerContainer + - address: 4560-6F49 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 400 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - linkedPorts: + 5: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - linkedPorts: + 439: + - Pressed: Toggle + 441: + - Pressed: Toggle + 427: + - Pressed: Toggle + 429: + - Pressed: Toggle + 431: + - Pressed: Toggle + 433: + - Pressed: Toggle + 435: + - Pressed: Toggle + 437: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 682 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + type: Transform + - linkedPorts: + 69: + - Pressed: Toggle + 68: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown +- proto: SignArmory + entities: + - uid: 686 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: SignGravity + entities: + - uid: 688 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 218 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform +- proto: SignSecureSmallRed + entities: + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 690 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 71 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 693 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointMercenary + entities: + - uid: 694 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform +- proto: SpiderWeb + entities: + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 681 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 700 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 701 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 702 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 703 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 705 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 706 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 709 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 790 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform +- proto: Stairs + entities: + - uid: 716 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 717 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 718 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 720 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 721 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageEVAPrisoner + entities: + - uid: 57 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageMercenary + entities: + - uid: 73 + components: + - pos: -6.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: Table + entities: + - uid: 723 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 724 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 725 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 727 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 728 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 729 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 86 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 216 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-20.5 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 750 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 753 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 756 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 760 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 37 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 550 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 766 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 767 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 776 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 779 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 797 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 801 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + type: Transform + - uid: 804 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: -2.5,-22.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 38 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-13.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 371 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 397 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 597 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 600 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 647 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 656 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 821 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 822 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 823 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 834 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 835 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 8 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 1 + type: Transform + - uid: 590 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - uid: 707 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 838 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 840 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 841 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - uid: 842 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 843 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 845 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 846 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 853 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 855 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 858 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 393 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: WarpPointShip + entities: + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - id: Mayflower + type: BecomesStation +- proto: WeaponRackWallmountedMercenary + entities: + - uid: 280 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: WebNest + entities: + - uid: 697 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 714 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 732 + components: + - pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 863 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 23 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 866 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 868 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/_NF/Shuttles/mccargo.yml b/Resources/Maps/_NF/Shuttles/mccargo.yml new file mode 100644 index 00000000000..66f0f231d06 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/mccargo.yml @@ -0,0 +1,7496 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 43: FloorFreezer + 59: FloorKitchen + 72: FloorRGlass + 97: FloorTechMaint + 106: FloorWhiteMono + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.6875 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: DAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAADAAAAAAADAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYQAAAAAADAAAAAAADAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAagAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAagAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAADAAAAAAADAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAADAAAAAAADAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAADAAAAAAADAAAAAAADAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAADAAAAAAADAAAAAAADAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAADAAAAAAASAAAAAAASAAAAAAASAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: cgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 337: -9,14 + 338: -9,13 + 339: -9,12 + 340: -8,12 + 341: -8,13 + 342: -8,14 + 343: -7,14 + 344: -7,13 + 345: -7,12 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 289: 6,9 + 290: 7,9 + 291: 9,9 + 292: 6,8 + 293: 7,8 + 294: 6,7 + 295: 7,7 + 296: 9,7 + 297: 6,6 + 298: 7,6 + 299: 6,5 + 300: 7,5 + 301: 9,5 + 302: 8,5 + 303: 7,4 + 304: 8,7 + 305: 8,9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 205: -4,3 + 206: -6,3 + 208: -8,3 + 212: -8,8 + 216: -6,8 + 219: -5,10 + 222: -5,12 + 225: -2,12 + 226: 0,12 + 236: -5,15 + 286: 7,14 + 287: 6,11 + 288: -1,10 + 330: -5,3 + 331: -7,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 4: 7,13 + 5: 7,12 + 215: -7,8 + 221: -3,10 + 224: -3,12 + 229: 0,14 + 232: -3,14 + 239: 0,15 + 240: 0,13 + 282: 6,12 + 327: -5,4 + 329: -8,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 0: -8,3 + 1: -1,12 + 207: -4,4 + 209: -4,5 + 210: -8,6 + 213: -8,9 + 228: 0,13 + 231: -2,14 + 233: -4,14 + 237: -1,15 + 332: -6,3 + 333: -5,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 2: 7,12 + 3: 9,11 + 211: -8,7 + 214: -7,9 + 217: -6,9 + 218: -5,9 + 220: -4,10 + 223: -4,12 + 227: -1,13 + 230: -1,14 + 234: -5,14 + 235: -4,15 + 238: -2,15 + 283: 6,14 + 284: 6,13 + 285: 7,11 + 328: -8,4 + 334: -5,5 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerNe + decals: + 252: 4,8 + 264: 4,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerNw + decals: + 253: -2,8 + 265: 2,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSe + decals: + 255: 4,3 + 266: 4,10 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSw + decals: + 254: -2,3 + 267: 2,10 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerNe + decals: + 193: 4,-4 + 194: 0,-3 + 195: -4,-3 + 196: -8,-4 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerNw + decals: + 197: -4,-4 + 198: 0,-3 + 199: 4,-3 + 200: 8,-4 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerSe + decals: + 201: 4,-1 + 202: 0,0 + 203: -4,0 + 204: -8,-1 + - node: + color: '#A46106FF' + id: MiniTileWhiteInnerSw + decals: + 189: -4,-1 + 190: 0,0 + 191: 4,0 + 192: 8,-1 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineE + decals: + 161: 4,-3 + 162: 4,-2 + 163: 0,-1 + 164: 0,-2 + 165: -4,-1 + 166: -4,-2 + 167: -8,-2 + 168: -8,-3 + 256: 4,4 + 257: 4,5 + 258: 4,6 + 259: 4,7 + 271: 4,11 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineN + decals: + 149: -5,-4 + 150: -6,-4 + 151: -7,-4 + 152: -3,-3 + 153: -2,-3 + 154: -1,-3 + 155: 1,-3 + 156: 2,-3 + 157: 3,-3 + 158: 5,-4 + 159: 6,-4 + 160: 7,-4 + 242: -1,8 + 243: 0,8 + 244: 1,8 + 245: 2,8 + 246: 3,8 + 270: 3,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineS + decals: + 169: -7,-1 + 170: -6,-1 + 171: -5,-1 + 172: -3,0 + 173: -2,0 + 174: -1,0 + 175: 1,0 + 176: 2,0 + 177: 3,0 + 178: 5,-1 + 179: 6,-1 + 180: 7,-1 + 247: -1,3 + 248: 0,3 + 249: 1,3 + 250: 2,3 + 251: 3,3 + 269: 3,10 + - node: + color: '#A46106FF' + id: MiniTileWhiteLineW + decals: + 181: 8,-2 + 182: 8,-3 + 183: 4,-1 + 184: 4,-2 + 185: 0,-1 + 186: 0,-2 + 187: -4,-2 + 188: -4,-3 + 260: -2,4 + 261: -2,5 + 262: -2,6 + 263: -2,7 + 268: 2,11 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNE + decals: + 277: 7,14 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNW + decals: + 276: 6,14 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSE + decals: + 274: 7,11 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSW + decals: + 275: 6,11 + - node: + color: '#A4610696' + id: WarnCornerNE + decals: + 116: -4,5 + 144: 0,15 + - node: + color: '#A4610696' + id: WarnCornerNW + decals: + 109: -8,9 + 143: -5,15 + - node: + color: '#A4610696' + id: WarnCornerSE + decals: + 98: -4,3 + 99: -1,10 + 100: 0,12 + - node: + color: '#9FED5896' + id: WarnCornerSW + decals: + 142: -8,3 + - node: + color: '#9FED5896' + id: WarnCornerSmallNE + decals: + 324: -8,4 + - node: + color: '#A4610696' + id: WarnCornerSmallNE + decals: + 126: -5,10 + 127: -5,12 + 326: -5,5 + - node: + color: '#9FED5896' + id: WarnCornerSmallNW + decals: + 325: -5,4 + - node: + color: '#A4610696' + id: WarnCornerSmallNW + decals: + 128: -1,10 + 129: -1,12 + 138: -5,9 + - node: + color: '#A4610696' + id: WarnCornerSmallSE + decals: + 130: -8,8 + 131: -5,12 + 132: -5,14 + 136: -1,12 + 137: -5,10 + - node: + color: '#A4610696' + id: WarnCornerSmallSW + decals: + 133: -1,14 + 134: -1,12 + 135: -5,8 + - node: + color: '#B02E26FF' + id: WarnFullGreyscale + decals: + 241: 4,12 + - node: + color: '#9FED5896' + id: WarnLineE + decals: + 321: -8,5 + - node: + color: '#A4610696' + id: WarnLineE + decals: + 72: -6,-8 + 73: 8,-8 + 89: -5,9 + 90: -5,8 + 91: -5,7 + 92: -5,6 + 93: -4,4 + 94: -5,11 + 95: -5,13 + 96: 0,13 + 97: 0,14 + 110: -8,6 + 111: -8,7 + 123: -1,11 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 23: 11,-1 + 24: 11,-2 + 25: 11,-3 + 26: -11,-1 + 27: -11,-2 + 34: -13,-1 + 35: -13,-2 + 36: -13,-3 + 37: 13,-1 + 38: 13,-2 + 39: 13,-3 + 65: -3,3 + 66: 5,3 + 67: 8,3 + 68: 5,14 + 69: 1,14 + 309: 8,5 + 310: 8,7 + 311: 8,9 + 315: -11,-3 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 278: 7,13 + 279: 7,12 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 280: 6,12 + 281: 6,13 + - node: + color: '#9FED5896' + id: WarnLineN + decals: + 141: -6,3 + 317: -7,3 + 319: -5,3 + - node: + color: '#A4610696' + id: WarnLineN + decals: + 78: 12,-3 + 79: -12,-3 + 80: -4,14 + 81: -3,14 + 82: -2,14 + 83: -4,12 + 84: -3,12 + 85: -2,12 + 86: -4,10 + 87: -3,10 + 88: -2,10 + 112: -7,8 + 113: -6,8 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 17: -8,-7 + 18: -7,-7 + 19: -6,-7 + 20: 6,-7 + 21: 7,-7 + 22: 8,-7 + 40: -4,2 + 41: 6,10 + 47: 6,15 + 52: 3,9 + 59: -8,-9 + 60: -7,-9 + 61: -6,-9 + 62: 6,-9 + 63: 7,-9 + 64: 8,-9 + 70: -1,9 + 313: 7,4 + - node: + color: '#9FED5896' + id: WarnLineS + decals: + 320: -5,5 + 322: -8,5 + 323: -8,4 + - node: + color: '#A4610696' + id: WarnLineS + decals: + 76: -8,-8 + 77: 6,-8 + 101: -8,6 + 102: -8,7 + 103: -8,8 + 104: -5,10 + 105: -5,11 + 106: -5,12 + 107: -5,13 + 108: -5,14 + 114: -5,7 + 115: -5,6 + 124: -1,11 + 125: -1,13 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 6: -11,-1 + 7: -11,-2 + 8: 11,-1 + 9: 11,-2 + 10: 11,-3 + 28: 13,-3 + 29: 13,-2 + 30: 13,-1 + 31: -13,-3 + 32: -13,-2 + 33: -13,-1 + 42: -3,3 + 43: 5,3 + 44: 8,3 + 45: 1,14 + 46: 5,14 + 306: 8,9 + 307: 8,7 + 308: 8,5 + 314: -11,-3 + - node: + color: '#9FED5896' + id: WarnLineW + decals: + 316: -6,4 + 318: -7,4 + - node: + color: '#A4610696' + id: WarnLineW + decals: + 74: -12,-1 + 75: 12,-1 + 117: -4,12 + 118: -3,12 + 119: -2,12 + 120: -2,10 + 121: -3,10 + 122: -4,10 + 139: -7,9 + 140: -6,9 + 145: -4,15 + 146: -3,15 + 147: -2,15 + 148: -1,15 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 11: 6,-7 + 12: 7,-7 + 13: 8,-7 + 14: -8,-7 + 15: -7,-7 + 16: -6,-7 + 48: 6,15 + 49: -4,2 + 50: 6,10 + 51: 3,9 + 53: 8,-9 + 54: 7,-9 + 55: 6,-9 + 56: -8,-9 + 57: -7,-9 + 58: -6,-9 + 71: -1,9 + 312: 7,4 + - node: + angle: -1.5707963267948966 rad + color: '#A4610696' + id: food + decals: + 352: -12,-1 + 353: -12,-3 + - node: + color: '#A4610696' + id: food + decals: + 346: 6,-8 + 347: 8,-8 + 350: -8,-8 + 351: -6,-8 + - node: + angle: 1.5707963267948966 rad + color: '#A4610696' + id: food + decals: + 348: 12,-1 + 349: 12,-3 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 30719 + 2,1: + 0: 30583 + 2,2: + 0: 30583 + 2,3: + 1: 17 + 0: 30566 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -2,-1: + 0: 65535 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 1,-1: + 0: 65535 + 2,-1: + 0: 65535 + -3,0: + 0: 52463 + -3,1: + 0: 52428 + -3,2: + 0: 50380 + 1: 2048 + -3,3: + 0: 52428 + -3,-2: + 0: 60616 + -3,-1: + 0: 65535 + -2,-2: + 0: 65535 + -1,-2: + 0: 65296 + 0,-2: + 0: 65280 + 1,-2: + 0: 65534 + 2,-2: + 0: 63347 + -2,4: + 0: 12 + -1,4: + 0: 15 + 0,4: + 0: 15 + 1,4: + 0: 15 + 2,4: + 0: 7 + 3,0: + 0: 3 + -4,0: + 0: 8 + -4,-1: + 0: 34952 + -3,-3: + 0: 32768 + -2,-3: + 0: 61440 + 1,-3: + 0: 57344 + 2,-3: + 0: 12288 + 3,-1: + 0: 13107 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 901 + components: + - anchored: True + pos: 8.5,11.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockCargo + entities: + - uid: 8 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - links: + - 691 + type: DeviceLinkSink + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 300 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 301 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 838 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 935 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 936 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 937 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 938 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 939 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 940 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 941 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 943 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 944 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 945 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 946 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink +- proto: AirlockFreezer + entities: + - uid: 412 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 35 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 925 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 926 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 927 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 210 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 862 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 863 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 863 + components: + - flags: InContainer + type: MetaData + - parent: 862 + type: Transform + - canCollide: False + type: Physics + - uid: 881 + components: + - pos: -5.7486897,12.630705 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -5.4986897,12.755705 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: -5.2591066,12.661955 + parent: 1 + type: Transform +- proto: AmeShielding + entities: + - uid: 52 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 108 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 392 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 578 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 48 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 905 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 906 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: BannerCargo + entities: + - uid: 14 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 555 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform +- proto: BedsheetQM + entities: + - uid: 729 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 93 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 117 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaRight + entities: + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 599 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 600 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 601 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics + - uid: 603 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BorgCharger + entities: + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + type: Transform +- proto: BoxFolderClipboard + entities: + - uid: 164 + components: + - flags: InContainer + type: MetaData + - parent: 123 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BrbSign + entities: + - uid: 755 + components: + - pos: -6.0586023,7.0368977 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: -6.2252693,6.8702307 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 768 + components: + - pos: -3.7585487,6.0110874 + parent: 1 + type: Transform + - uid: 769 + components: + - pos: -3.2481322,6.0215044 + parent: 1 + type: Transform +- proto: ButchCleaver + entities: + - uid: 235 + components: + - pos: 2.4287968,5.620631 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 13 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 488 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 491 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 500 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 504 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 505 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 515 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 518 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 592 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 661 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 733 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 196 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 25 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 577 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 580 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 658 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 965 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 76 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: 3.141592653589793 rad + pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 466 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 760 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 867 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + type: Transform + - uid: 868 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 869 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 870 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 896 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 897 + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 900 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform +- proto: CigCartonRed + entities: + - uid: 178 + components: + - pos: 2.5538254,4.7630134 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 2.5119457,4.5921946 + parent: 1 + type: Transform +- proto: CigPackBlack + entities: + - uid: 190 + components: + - pos: -5.9440193,7.422314 + parent: 1 + type: Transform +- proto: CigPackRed + entities: + - uid: 704 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: ClosetJanitorFilled + entities: + - uid: 857 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClosetWallFireFilledRandom + entities: + - uid: 249 + components: + - rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + type: Transform +- proto: ClothingBeltPlantFilled + entities: + - uid: 765 + components: + - pos: -5.817134,6.56853 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 192 + components: + - pos: -5.533075,6.638674 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 873 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 872 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 874 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots + - uid: 498 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateFoodBarSupply + entities: + - uid: 195 + components: + - pos: 0.5805821,10.414998 + parent: 1 + type: Transform +- proto: CrateFoodCooking + entities: + - uid: 748 + components: + - pos: 0.5849985,11.125421 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 858 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform +- proto: CrateFunMysteryFigurines + entities: + - uid: 1014 + components: + - pos: 0.58529973,11.835589 + parent: 1 + type: Transform +- proto: CrateFunParty + entities: + - uid: 230 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 105 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 671 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 753 + components: + - pos: -6.4043546,7.0158014 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: -6.6647716,7.067885 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 931 + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 932 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 933 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 499 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 142 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 804 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 26 + components: + - pos: 1.260719,4.8653827 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 1.5211356,4.8653827 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 1.7711357,4.8549657 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 1.2503023,4.7299657 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 1.4690523,4.7299657 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 1.5315523,4.584132 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 1.7815523,4.6049657 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 1.7190523,4.7299657 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -7.36764,1.8236554 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 1.291969,4.584132 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -7.6488905,1.8132387 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -7.9197235,1.8028221 + parent: 1 + type: Transform +- proto: DrinkSodaWaterCan + entities: + - uid: 705 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: EmergencyLight + entities: + - uid: 67 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 980 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 982 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 57 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 888 + components: + - rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 232 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 154 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - devices: + - 39 + - 41 + - 70 + - 79 + - 646 + - 647 + - 644 + - 645 + type: DeviceList + - uid: 978 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 647 + - 644 + type: DeviceNetwork + - devices: + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 647 + - 644 + type: DeviceList + - uid: 979 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 647 + - 644 + type: DeviceNetwork + - devices: + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 647 + - 644 + type: DeviceList +- proto: Firelock + entities: + - uid: 39 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 291 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 635 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 967 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 968 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 969 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 970 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 971 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + type: DeviceNetwork + - uid: 972 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 973 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 974 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 975 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 976 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork + - uid: 977 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 978 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 157 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoodBurgerPlain + entities: + - uid: 706 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: FoodCondimentBottleBBQ + entities: + - uid: 986 + components: + - pos: -0.99494433,2.6808286 + parent: 1 + type: Transform +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 987 + components: + - pos: -0.7970277,2.6808286 + parent: 1 + type: Transform +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 988 + components: + - pos: -0.5991111,2.6704118 + parent: 1 + type: Transform +- proto: FoodCondimentPacketBbq + entities: + - uid: 707 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics +- proto: FoodCondimentSqueezeBottleKetchup + entities: + - uid: 278 + components: + - pos: -5.6390567,-0.87675166 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 2.3429747,0.13168675 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -1.6674421,0.15252006 + parent: 1 + type: Transform + - uid: 651 + components: + - pos: 6.3440824,-0.8683133 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: -0.37388593,2.6495857 + parent: 1 + type: Transform +- proto: FoodCondimentSqueezeBottleMustard + entities: + - uid: 299 + components: + - pos: 2.6386054,0.12955117 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: -1.3736303,0.15038455 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: 6.635249,-0.86358 + parent: 1 + type: Transform + - uid: 687 + components: + - pos: -5.368223,-0.8663349 + parent: 1 + type: Transform + - uid: 1039 + components: + - pos: -0.10305256,2.6391692 + parent: 1 + type: Transform +- proto: FoodPlatePlastic + entities: + - uid: 89 + components: + - pos: -5.5395737,1.7718108 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: 9.511152,1.7718108 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 9.507014,1.948894 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -5.5395737,1.917644 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: -5.529157,1.605144 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: 9.517431,1.5843108 + parent: 1 + type: Transform +- proto: FoodShakerPepper + entities: + - uid: 255 + components: + - pos: -1.3912189,-0.22746682 + parent: 1 + type: Transform + - uid: 713 + components: + - pos: 2.642523,-0.23788351 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 6.6272316,-1.2427661 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: -6.4424706,1.794488 + parent: 1 + type: Transform + - uid: 794 + components: + - pos: -6.244554,1.794488 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: -6.338304,1.606988 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: -5.3754034,-1.2621489 + parent: 1 + type: Transform +- proto: FoodShakerSalt + entities: + - uid: 296 + components: + - pos: 2.3422444,-0.23089886 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -1.6308024,-0.22746682 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -5.618223,-1.2621683 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 6.3471923,-1.2308989 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -7.0674367,1.7711829 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: -6.859103,1.7711829 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: -6.9736867,1.5940995 + parent: 1 + type: Transform +- proto: GasDualPortVentPump + entities: + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 637 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 757 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 630 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 657 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 663 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 993 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 998 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 999 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1004 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 716 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 789 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 790 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 47 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 199 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 254 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 452 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 573 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 652 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 655 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 662 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 673 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 674 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 779 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 832 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 994 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 995 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 996 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 997 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1000 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1001 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1002 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1003 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1005 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1006 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1007 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1008 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1009 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 46 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 155 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 251 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 387 + components: + - rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 784 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 788 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 717 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 744 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 992 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 644 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + - 978 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1010 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1011 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1012 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 158 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 645 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 646 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 647 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 979 + - 978 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 653 + components: + - rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 886 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 238 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 442 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 642 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 850 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 904 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform +- proto: GunSafeShuttleCaptain + entities: + - uid: 123 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 164 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: Gyroscope + entities: + - uid: 817 + components: + - rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 147 + components: + - pos: 0.61389744,5.578879 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -5.5434914,7.0192184 + parent: 1 + type: Transform +- proto: HappyHonk + entities: + - uid: 128 + components: + - pos: 0.70903397,4.7924657 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 0.36528397,4.938299 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 0.70903397,4.9487157 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 0.35486734,4.8028827 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 0.33403397,4.657049 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 0.69861734,4.657049 + parent: 1 + type: Transform + - uid: 703 + components: + - name: happy honk meal (McCargo Meal) + type: MetaData + - pos: -1.4680494,4.705127 + parent: 1 + type: Transform + - storageUsed: 21 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 704 + - 705 + - 706 + - 707 + - 708 + type: ContainerContainer + - originalName: happy honk meal + currentLabel: McCargo Meal + type: Label +- proto: HospitalCurtainsOpen + entities: + - uid: 902 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 62 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 202 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 184 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: KitchenElectricGrill + entities: + - uid: 929 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 234 + components: + - pos: 1.4792413,5.5648255 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 149 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 531 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 268 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 156 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform +- proto: Lighter + entities: + - uid: 708 + components: + - flags: InContainer + type: MetaData + - parent: 703 + type: Transform + - canCollide: False + type: Physics + - uid: 828 + components: + - pos: -5.829664,7.266064 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 830 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 865 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 989 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 990 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 991 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + type: Transform +- proto: OilJarGhee + entities: + - uid: 45 + components: + - pos: 4.7203918,4.6294155 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 4.3766418,4.868999 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 4.6995583,4.8585825 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 4.3558083,4.650249 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 341 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 861 + components: + - pos: 7.5084047,16.45018 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 204 + components: + - pos: -5.9083214,7.6910467 + parent: 1 + type: Transform + - stampedName: Unknown + type: Stamp + - uid: 205 + components: + - pos: -5.91171,7.5681477 + parent: 1 + type: Transform + - stampedName: Unknown + type: Stamp +- proto: PortableScrubber + entities: + - uid: 9 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform +- proto: PosterContrabandSpaceUp + entities: + - uid: 742 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 273 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 287 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 833 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 959 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 960 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 961 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 962 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 64 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 309 + components: + - rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 730 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 712 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: RandomSnacks + entities: + - uid: 762 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 831 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 104 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 102 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 143 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - links: + - 751 + type: DeviceLinkSink + - uid: 336 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - links: + - 331 + type: DeviceLinkSink + - uid: 337 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 150 + type: DeviceLinkSink + - uid: 344 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 749 + type: DeviceLinkSink + - uid: 345 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - links: + - 750 + type: DeviceLinkSink + - uid: 346 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - links: + - 752 + type: DeviceLinkSink + - uid: 364 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 669 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 670 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 676 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 677 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 678 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 679 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 680 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 681 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 682 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 683 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 684 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - links: + - 675 + type: DeviceLinkSink + - uid: 689 + components: + - pos: 9.5,14.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 758 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 771 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 772 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 773 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 774 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 775 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 776 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 777 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - links: + - 770 + type: DeviceLinkSink + - uid: 808 + components: + - pos: 9.5,13.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 839 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 840 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 841 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 842 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 843 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 844 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - links: + - 116 + type: DeviceLinkSink + - uid: 854 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 951 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 952 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - links: + - 947 + type: DeviceLinkSink + - uid: 953 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 954 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - links: + - 948 + type: DeviceLinkSink + - uid: 955 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 956 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - links: + - 949 + type: DeviceLinkSink + - uid: 957 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink + - uid: 958 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - links: + - 950 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 116 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 839: + - Pressed: Toggle + 840: + - Pressed: Toggle + 841: + - Pressed: Toggle + 842: + - Pressed: Toggle + 843: + - Pressed: Toggle + 844: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 150 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 337: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 331 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - linkedPorts: + 336: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 683: + - Pressed: Toggle + 676: + - Pressed: Toggle + 677: + - Pressed: Toggle + 678: + - Pressed: Toggle + 679: + - Pressed: Toggle + 680: + - Pressed: Toggle + 681: + - Pressed: Toggle + 682: + - Pressed: Toggle + 684: + - Pressed: Toggle + 193: + - Pressed: DoorBolt + 300: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 691 + components: + - rot: -1.5707963267948966 rad + pos: 1.4849963,15.219261 + parent: 1 + type: Transform + - linkedPorts: + 27: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 749 + components: + - pos: 9.317261,6.5 + parent: 1 + type: Transform + - linkedPorts: + 344: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 750 + components: + - pos: 9.317261,8.5 + parent: 1 + type: Transform + - linkedPorts: + 345: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 751 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - linkedPorts: + 143: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 752 + components: + - pos: 9.317261,10.5 + parent: 1 + type: Transform + - linkedPorts: + 346: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 770 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 771: + - Pressed: Toggle + 772: + - Pressed: Toggle + 773: + - Pressed: Toggle + 774: + - Pressed: Toggle + 775: + - Pressed: Toggle + 776: + - Pressed: Toggle + 777: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 885 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 838: + - Pressed: DoorBolt + 102: + - Pressed: Toggle + 364: + - Pressed: Toggle + 758: + - Pressed: Toggle + 670: + - Pressed: Toggle + 689: + - Pressed: Toggle + 808: + - Pressed: Toggle + 669: + - Pressed: Toggle + 854: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 947 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 946: + - Pressed: DoorBolt + 945: + - Pressed: DoorBolt + 944: + - Pressed: DoorBolt + 952: + - Pressed: Toggle + 951: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 948 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 937: + - Pressed: DoorBolt + 936: + - Pressed: DoorBolt + 935: + - Pressed: DoorBolt + 953: + - Pressed: Toggle + 954: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 949 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 941: + - Pressed: DoorBolt + 942: + - Pressed: DoorBolt + 943: + - Pressed: DoorBolt + 956: + - Pressed: Toggle + 955: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 950 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - linkedPorts: + 940: + - Pressed: DoorBolt + 939: + - Pressed: DoorBolt + 938: + - Pressed: DoorBolt + 957: + - Pressed: Toggle + 958: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignDirectionalFood + entities: + - uid: 738 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 739 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 741 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform +- proto: SignDirectionalHydro + entities: + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: -2.4910388,4.210334 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 433 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 791 + components: + - rot: 1.5707963267948966 rad + pos: 6.4667277,6.32853 + parent: 1 + type: Transform + - uid: 1013 + components: + - rot: 1.5707963267948966 rad + pos: 6.487561,5.3289747 + parent: 1 + type: Transform + - uid: 1036 + components: + - rot: 1.5707963267948966 rad + pos: 6.4771442,7.3422375 + parent: 1 + type: Transform + - uid: 1037 + components: + - rot: 1.5707963267948966 rad + pos: 6.456311,8.332492 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 981 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 271 + components: + - pos: -7.5,11.5 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform +- proto: SpawnMobCow + entities: + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 803 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 181 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 17 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 23 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 602 + components: + - pos: 6.5,14.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 177 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 800 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 59 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 289 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 308 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraSupply + entities: + - uid: 225 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 2 + type: SurveillanceCamera + - uid: 636 + components: + - rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Janitor + type: SurveillanceCamera + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 1 + type: SurveillanceCamera + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Freezer + type: SurveillanceCamera + - uid: 726 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 1 + type: SurveillanceCamera + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 2 + type: SurveillanceCamera + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Kitchen + type: SurveillanceCamera +- proto: TableCounterMetal + entities: + - uid: 2 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 94 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 307 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 692 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 693 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 126 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 275 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 764 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 801 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 148 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 534 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 81 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 455 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineColaBlack + entities: + - uid: 851 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 127 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: VendingMachineCuddlyCritterVend + entities: + - uid: 852 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 146 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 819 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineHappyHonk + entities: + - uid: 853 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 444 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 725 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 198 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachinePride + entities: + - uid: 866 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineRestockBooze + entities: + - uid: 894 + components: + - pos: -2.606868,13.727668 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: -2.356868,13.654751 + parent: 1 + type: Transform +- proto: VendingMachineRestockChefvend + entities: + - uid: 349 + components: + - pos: -3.3606324,7.799815 + parent: 1 + type: Transform + - uid: 581 + components: + - pos: -3.589799,7.9143987 + parent: 1 + type: Transform +- proto: VendingMachineRestockCondimentStation + entities: + - uid: 892 + components: + - pos: -2.5964513,13.863084 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: -2.325618,13.769334 + parent: 1 + type: Transform +- proto: VendingMachineRestockCostumes + entities: + - uid: 91 + components: + - pos: -3.6016417,8.945648 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: -3.3099751,8.851898 + parent: 1 + type: Transform +- proto: VendingMachineRestockCuddlyCritterVend + entities: + - uid: 806 + components: + - pos: -2.3244715,11.857673 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: -2.5848882,11.96184 + parent: 1 + type: Transform +- proto: VendingMachineRestockDinnerware + entities: + - uid: 306 + components: + - pos: -3.631466,7.695648 + parent: 1 + type: Transform + - uid: 576 + components: + - pos: -3.3397992,7.633148 + parent: 1 + type: Transform +- proto: VendingMachineRestockDonut + entities: + - uid: 170 + components: + - pos: -3.5964513,13.915168 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: -3.325618,13.811001 + parent: 1 + type: Transform +- proto: VendingMachineRestockGetmoreChocolateCorp + entities: + - uid: 890 + components: + - pos: -3.6277013,13.717251 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: -3.325618,13.633918 + parent: 1 + type: Transform +- proto: VendingMachineRestockHappyHonk + entities: + - uid: 221 + components: + - pos: -1.5844793,13.925584 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -1.3032293,13.831834 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -1.3136461,13.675584 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -1.6261461,13.769334 + parent: 1 + type: Transform +- proto: VendingMachineRestockNutriMax + entities: + - uid: 563 + components: + - pos: -3.3308084,8.643565 + parent: 1 + type: Transform +- proto: VendingMachineRestockPride + entities: + - uid: 805 + components: + - pos: -2.6369717,11.753507 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: -2.3244715,11.670173 + parent: 1 + type: Transform +- proto: VendingMachineRestockRobustSoftdrinks + entities: + - uid: 591 + components: + - pos: -1.626555,11.732673 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: -1.3036382,11.68059 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -1.3036382,11.83684 + parent: 1 + type: Transform + - uid: 685 + components: + - pos: -1.5848882,11.920173 + parent: 1 + type: Transform +- proto: VendingMachineRestockSeeds + entities: + - uid: 562 + components: + - pos: -3.6433086,8.758148 + parent: 1 + type: Transform +- proto: VendingMachineRestockSmokes + entities: + - uid: 686 + components: + - pos: -3.310824,11.640575 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -3.644157,11.723909 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: -3.3316572,11.813148 + parent: 1 + type: Transform + - uid: 711 + components: + - pos: -3.581657,11.927731 + parent: 1 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 536 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform +- proto: VendingMachineSnackGreen + entities: + - uid: 560 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform +- proto: WallmountTelevisionFrame + entities: + - uid: 737 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 1 + type: Transform + - uid: 317 + components: + - rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 322 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 424 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 521 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 594 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 638 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 641 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 718 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 734 + components: + - rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 10 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 250 + components: + - rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 284 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 590 + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 694 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 65 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 256 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 263 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 640 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 736 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 327 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 277 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - links: + - 827 + type: DeviceLinkSink + - linkedPorts: + 827: + - DoorStatus: Close + type: DeviceLinkSource + - uid: 827 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - links: + - 141 + type: DeviceLinkSink + - linkedPorts: + 141: + - DoorStatus: Close + type: DeviceLinkSource +- proto: WindowFrostedDirectional + entities: + - uid: 12 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/praeda.yml b/Resources/Maps/_NF/Shuttles/praeda.yml similarity index 92% rename from Resources/Maps/Shuttles/praeda.yml rename to Resources/Maps/_NF/Shuttles/praeda.yml index df637d1ee56..ccb16a03b4a 100644 --- a/Resources/Maps/Shuttles/praeda.yml +++ b/Resources/Maps/_NF/Shuttles/praeda.yml @@ -3,17 +3,17 @@ meta: postmapinit: false tilemap: 0: Space - 15: FloorBlueCircuit - 71: FloorRGlass - 72: FloorReinforced - 84: FloorSteel - 91: FloorSteelMini - 100: FloorWhite - 104: FloorWhiteMini - 109: FloorWhitePlastic - 110: FloorWood - 112: Lattice - 113: Plating + 16: FloorBlueCircuit + 72: FloorRGlass + 73: FloorReinforced + 85: FloorSteel + 92: FloorSteelMini + 101: FloorWhite + 105: FloorWhiteMini + 110: FloorWhitePlastic + 111: FloorWood + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -26,35 +26,35 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: bgAAAAACbgAAAAABbgAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAACbwAAAAABbwAAAAADcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAACbwAAAAACcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACcgAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACcgAAAAAAcgAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAADwAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAbwAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACcgAAAAAAEAAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcgAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: bgAAAAABbgAAAAADbgAAAAABbgAAAAADbgAAAAACcQAAAAAAbQAAAAABbQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAADbgAAAAACcQAAAAAAbgAAAAACcQAAAAAAbQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAABbQAAAAABbQAAAAAAbQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAADcQAAAAAAbgAAAAABcQAAAAAAbQAAAAADbQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABbgAAAAABcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAABbwAAAAADbwAAAAABbwAAAAADbwAAAAACcgAAAAAAbgAAAAABbgAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAADbwAAAAACcgAAAAAAbwAAAAACcgAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAADbwAAAAABbgAAAAABbgAAAAAAbgAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAACbwAAAAADcgAAAAAAbwAAAAABcgAAAAAAbgAAAAADbgAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbgAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADcgAAAAAAVQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACVQAAAAACcgAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACcgAAAAAAVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABcgAAAAAAVQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAABbwAAAAABcgAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: VAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADDwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAADwAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADDwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAARwAAAAAAbgAAAAABbgAAAAAAcQAAAAAAbQAAAAADbQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAcgAAAAAAVQAAAAACVQAAAAADVQAAAAAAEAAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAABcgAAAAAAVQAAAAADcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAEAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAACVQAAAAABcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABcgAAAAAAVQAAAAABVQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAADVQAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAADEAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASAAAAAAAbwAAAAABbwAAAAAAcgAAAAAAbgAAAAADbgAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADDwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWwAAAAAAWwAAAAACWwAAAAABVAAAAAACVAAAAAACDwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACcgAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADEAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABVQAAAAACVQAAAAACEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAbQAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAbgAAAAACbgAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAaQAAAAABaQAAAAAAcgAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAaQAAAAAAcgAAAAAAbwAAAAACcgAAAAAAbwAAAAADbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAABZQAAAAAAbgAAAAACbwAAAAABbwAAAAABbwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAACZQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADcgAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADcgAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAADcgAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAVQAAAAABcgAAAAAAbwAAAAACbwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAADwAAAAAAbgAAAAACbgAAAAACbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAADwAAAAAAbgAAAAACbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAADaAAAAAACcQAAAAAAbgAAAAADbgAAAAADRwAAAAAAbgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAbwAAAAACbwAAAAABcgAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAABbwAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAbwAAAAADbwAAAAABcgAAAAAAcgAAAAAAcgAAAAAAEAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAACbwAAAAAAcgAAAAAAbwAAAAADcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAbwAAAAABbwAAAAADcgAAAAAAbwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAEAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAVQAAAAADVQAAAAACcgAAAAAAEAAAAAAAbwAAAAACbwAAAAACbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAABVQAAAAACcgAAAAAAEAAAAAAAbwAAAAACbwAAAAACbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAACcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAADcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAEAAAAAAAVQAAAAACVQAAAAACVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAACbwAAAAADbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAaQAAAAADaQAAAAACcgAAAAAAbwAAAAADbwAAAAADSAAAAAAAbwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAADwAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAEAAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAEAAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAABVQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -444,8 +444,8 @@ entities: 0,-4: 0: 65535 0,-3: - 0: 65407 - 1: 128 + 0: 65311 + 1: 224 0,-2: 0: 65535 0,-1: @@ -1257,75 +1257,57 @@ entities: - uid: 61 components: - rot: -1.5707963267948966 rad - pos: -7.5,4.5 + pos: -7.5,2.5 parent: 1 type: Transform - - name: 'Side dock #1 (left)' - type: Docking - uid: 62 components: - rot: 1.5707963267948966 rad - pos: 8.5,2.5 + pos: 8.5,4.5 parent: 1 type: Transform - - name: 'Side dock #3 (right)' - type: Docking - uid: 63 components: - rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 1 type: Transform - - name: 'Side dock #2 (right)' - type: Docking - uid: 64 components: - rot: 1.5707963267948966 rad - pos: 8.5,4.5 + pos: 8.5,2.5 parent: 1 type: Transform - - name: 'Side dock #1 (right)' - type: Docking - uid: 65 components: - rot: -1.5707963267948966 rad - pos: -7.5,2.5 + pos: -7.5,4.5 parent: 1 type: Transform - - name: 'Side dock #3 (left)' - type: Docking - uid: 66 components: - rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 1 type: Transform - - name: 'Side dock #2 (left)' - type: Docking - uid: 67 components: - rot: 3.141592653589793 rad - pos: -0.5,10.5 + pos: 1.5,10.5 parent: 1 type: Transform - - name: 'Main dock #3 (front)' - type: Docking - uid: 68 components: - rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 1 type: Transform - - name: 'Main dock #2 (front)' - type: Docking - uid: 69 components: - rot: 3.141592653589793 rad - pos: 1.5,10.5 + pos: -0.5,10.5 parent: 1 type: Transform - - name: 'Main dock #1 (front)' - type: Docking - proto: AirlockMedicalGlass entities: - uid: 70 @@ -1349,7 +1331,8 @@ entities: - pos: 5.5,-30.5 parent: 1 type: Transform - - injecting: True + - injectionAmount: 4 + injecting: True type: AmeController - containers: AmeFuel: !type:ContainerSlot @@ -1399,7 +1382,7 @@ entities: - pos: 4.5,-28.5 parent: 1 type: Transform - - radius: 1 + - radius: 2 enabled: True type: PointLight - uid: 80 @@ -1407,7 +1390,7 @@ entities: - pos: 3.5,-28.5 parent: 1 type: Transform - - radius: 1 + - radius: 2 enabled: True type: PointLight - uid: 81 @@ -1508,11 +1491,6 @@ entities: type: Transform - proto: AppraisalTool entities: - - uid: 99 - components: - - pos: -1.7131324,-21.819618 - parent: 1 - type: Transform - uid: 100 components: - pos: 3.298502,-2.4168472 @@ -1763,7 +1741,7 @@ entities: entities: - uid: 160 components: - - desc: A banner displaying the colors of the cargo department. Hail Cargonia! + - desc: A banner displaying the colors of the cargo department. name: Cargo banner type: MetaData - pos: 0.5,-4.5 @@ -1771,7 +1749,7 @@ entities: type: Transform - uid: 161 components: - - desc: A banner displaying the colors of the cargo department. Hail Cargonia! + - desc: A banner displaying the colors of the cargo department. name: Cargo banner type: MetaData - pos: -4.5,-19.5 @@ -1779,7 +1757,7 @@ entities: type: Transform - uid: 162 components: - - desc: A banner displaying the colors of the cargo department. Hail Cargonia! + - desc: A banner displaying the colors of the cargo department. name: Cargo banner type: MetaData - pos: 5.5,-19.5 @@ -2122,26 +2100,6 @@ entities: - pos: -0.5,-12.5 parent: 1 type: Transform -- proto: BoxShotgunIncendiary - entities: - - uid: 218 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 219 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: Bucket entities: - uid: 248 @@ -6125,7 +6083,7 @@ entities: type: Transform - uid: 1023 components: - - pos: -0.7390743,0.7418492 + - pos: -0.5613496,1.0679312 parent: 1 type: Transform - uid: 1024 @@ -6213,17 +6171,6 @@ entities: - pos: -9.5,-30.5 parent: 1 type: Transform -- proto: ClothingBackpackCaptain - entities: - - uid: 220 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingBackpackDuffelSurgeryFilled entities: - uid: 1035 @@ -6231,50 +6178,6 @@ entities: - pos: -6.3591137,-16.300005 parent: 1 type: Transform -- proto: ClothingBeltSheathFilled - entities: - - uid: 221 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 222 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 223 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesCaptain - entities: - - uid: 224 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingHeadHatBowlerHat entities: - uid: 1044 @@ -6282,17 +6185,6 @@ entities: - pos: 1.3621204,-17.150785 parent: 1 type: Transform -- proto: ClothingHeadHatCaptain - entities: - - uid: 225 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingHeadHatCone entities: - uid: 1045 @@ -6300,28 +6192,6 @@ entities: - pos: 4.469919,-30.10354 parent: 1 type: Transform -- proto: ClothingHeadHatFancyCrown - entities: - - uid: 104 - components: - - flags: InContainer - type: MetaData - - parent: 103 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatPirate - entities: - - uid: 1047 - components: - - flags: InContainer - type: MetaData - - parent: 1046 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingHeadHelmetEVA entities: - uid: 1051 @@ -6329,90 +6199,6 @@ entities: - pos: 10.221624,-32.356922 parent: 1 type: Transform -- proto: ClothingMaskItalianMoustache - entities: - - uid: 226 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckCloakCap - entities: - - uid: 227 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckCloakCapFormal - entities: - - uid: 228 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckCloakPirateCap - entities: - - uid: 1048 - components: - - flags: InContainer - type: MetaData - - parent: 1046 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorCaptainCarapace - entities: - - uid: 229 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]50%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]35%[/color]. - priority: 0 - component: Armor - title: null - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingOuterHardsuitEVA entities: - uid: 1052 @@ -6420,61 +6206,6 @@ entities: - pos: 10.643499,-32.59146 parent: 1 type: Transform -- proto: ClothingOuterWinterCap - entities: - - uid: 230 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtCapFormalDress - entities: - - uid: 231 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtCaptain - entities: - - uid: 232 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCapFormal - entities: - - uid: 233 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitCaptain - entities: - - uid: 234 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ComfyChair entities: - uid: 1055 @@ -6920,45 +6651,6 @@ entities: - pos: 2.5,-30.5 parent: 1 type: Transform -- proto: CratePirate - entities: - - uid: 1046 - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1050 - - 1049 - - 1047 - - 1048 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: CrowbarRed entities: - uid: 1109 @@ -7812,7 +7504,7 @@ entities: entities: - uid: 1254 components: - - pos: 4.4121666,-24.277555 + - pos: 4.2452617,-24.44838 parent: 1 type: Transform - proto: DrinkGlass @@ -7836,31 +7528,9 @@ entities: entities: - uid: 1258 components: - - pos: -1.4439895,-21.777922 + - pos: -1.6703883,-21.962532 parent: 1 type: Transform -- proto: DrinkMugDog - entities: - - uid: 235 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: DrinkRumBottleFull - entities: - - uid: 236 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: DrinkRumGlass entities: - uid: 1259 @@ -7974,36 +7644,11 @@ entities: pos: -3.5,-7.5 parent: 1 type: Transform -- proto: EncryptionKeyCommand - entities: - - uid: 1280 - components: - - pos: -1.2307451,-22.015284 - parent: 1 - type: Transform -- proto: EncryptionKeyEngineering - entities: - - uid: 1281 - components: - - pos: -0.97588915,-30.425823 - parent: 1 - type: Transform -- proto: EnergyCutlass - entities: - - uid: 1049 - components: - - flags: InContainer - type: MetaData - - parent: 1046 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: FaxMachineShip entities: - - uid: 1282 + - uid: 104 components: - - pos: -0.5,1.5 + - pos: -1.5,-21.5 parent: 1 type: Transform - proto: FireAlarm @@ -11711,6 +11356,8 @@ entities: entities: - uid: 1708 components: + - name: uranium safe + type: MetaData - pos: 0.5,-27.5 parent: 1 type: Transform @@ -11739,10 +11386,6 @@ entities: showEnts: False occludes: True ents: - - 1711 - - 1710 - - 1713 - - 1712 - 1709 paper_label: !type:ContainerSlot showEnts: False @@ -11839,10 +11482,10 @@ entities: type: Transform - proto: LampGold entities: - - uid: 1728 + - uid: 211 components: - - rot: 3.141592653589793 rad - pos: 4.7820306,-24.235859 + - rot: -1.5707963267948966 rad + pos: 4.6780534,-24.275356 parent: 1 type: Transform - proto: LockerBoozeFilled @@ -11872,71 +11515,13 @@ entities: type: EntityStorage - locked: False type: Lock -- proto: LockerCaptain +- proto: LockerCaptainFilled entities: - - uid: 217 + - uid: 212 components: - pos: -1.5,-24.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 243 - - 244 - - 242 - - 238 - - 226 - - 237 - - 245 - - 235 - - 236 - - 229 - - 224 - - 246 - - 231 - - 233 - - 228 - - 220 - - 247 - - 222 - - 227 - - 232 - - 221 - - 225 - - 241 - - 223 - - 218 - - 230 - - 239 - - 219 - - 234 - - 240 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerChiefEngineerFilledHardsuit entities: - uid: 106 @@ -12008,17 +11593,6 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 104 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerSalvageSpecialistFilled entities: - uid: 1730 @@ -12026,8 +11600,6 @@ entities: - pos: -2.5,-10.5 parent: 1 type: Transform - - locked: False - type: Lock - air: volume: 200 immutable: False @@ -12046,24 +11618,11 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1731 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - uid: 1732 components: - pos: 3.5,-10.5 parent: 1 type: Transform - - locked: False - type: Lock - air: volume: 200 immutable: False @@ -12082,17 +11641,6 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1733 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - uid: 1734 @@ -12183,26 +11731,6 @@ entities: - 0 - 0 type: EntityStorage -- proto: MagazineBoxMagnum - entities: - - uid: 237 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 238 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: Matchbox entities: - uid: 1743 @@ -12212,7 +11740,7 @@ entities: type: Transform - uid: 1744 components: - - pos: -0.62868136,1.0963256 + - pos: -0.27773947,0.9905455 parent: 1 type: Transform - uid: 1745 @@ -12262,9 +11790,12 @@ entities: entities: - uid: 1752 components: - - pos: 5.5,-32.5 + - anchored: True + pos: 5.5,-32.5 parent: 1 type: Transform + - bodyType: Static + type: Physics - proto: OperatingTable entities: - uid: 1753 @@ -12283,9 +11814,12 @@ entities: entities: - uid: 1755 components: - - pos: 4.5,-32.5 + - anchored: True + pos: 4.5,-32.5 parent: 1 type: Transform + - bodyType: Static + type: Physics - proto: PaintingSkeletonBoof entities: - uid: 1756 @@ -12313,13 +11847,6 @@ entities: - pos: -1.3206933,-22.118023 parent: 1 type: Transform -- proto: PhoneInstrument - entities: - - uid: 1760 - components: - - pos: -1.5209062,-21.368505 - parent: 1 - type: Transform - proto: PillDexalin entities: - uid: 1761 @@ -12554,26 +12081,6 @@ entities: - pos: -6.5,-28.5 parent: 1 type: Transform -- proto: PowerCellHyper - entities: - - uid: 239 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 240 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: Poweredlight entities: - uid: 112 @@ -13002,20 +12509,9 @@ entities: entities: - uid: 1863 components: - - pos: -0.80478126,0.49763185 + - pos: -0.3421964,1.6612247 parent: 1 type: Transform -- proto: RubberStampCaptain - entities: - - uid: 241 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: RubberStampCE entities: - uid: 1864 @@ -13027,7 +12523,7 @@ entities: entities: - uid: 1865 components: - - pos: -0.81724185,0.883254 + - pos: -0.600023,1.4806572 parent: 1 type: Transform - proto: SheetUranium @@ -13677,8 +13173,6 @@ entities: - linkedPorts: 1811: - Pressed: Toggle - invalid: - - Pressed: Toggle 1799: - Pressed: Toggle 1812: @@ -14255,60 +13749,6 @@ entities: type: Transform - proto: SpeedLoaderMagnum entities: - - uid: 242 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 243 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 244 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1710 - components: - - flags: InContainer - type: MetaData - - parent: 1708 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1711 - components: - - flags: InContainer - type: MetaData - - parent: 1708 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1712 - components: - - flags: InContainer - type: MetaData - - parent: 1708 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 1737 components: - flags: InContainer @@ -14327,11 +13767,6 @@ entities: - canCollide: False type: Physics - type: InsideEntityStorage - - uid: 2043 - components: - - pos: 4.4148893,-24.544632 - parent: 1 - type: Transform - proto: SpeedLoaderMagnumRubber entities: - uid: 1739 @@ -14400,9 +13835,9 @@ entities: type: Transform - proto: SuitStorageCaptain entities: - - uid: 2053 + - uid: 99 components: - - pos: -1.5,-25.5 + - pos: -0.5,-25.5 parent: 1 type: Transform - proto: SuitStorageCE @@ -14502,11 +13937,47 @@ entities: - pos: 1.5,-10.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - uid: 2061 components: - pos: 2.5,-10.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: SurveillanceCameraCommand entities: - uid: 2062 @@ -14813,9 +14284,9 @@ entities: - pos: -0.5,0.5 parent: 1 type: Transform -- proto: TelecomServerFilled +- proto: TelecomServerFilledShuttle entities: - - uid: 2111 + - uid: 213 components: - pos: -7.5,-33.5 parent: 1 @@ -15006,17 +14477,6 @@ entities: pos: 6.5,-9.5 parent: 1 type: Transform -- proto: ToyFigurineCaptain - entities: - - uid: 245 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: TwoWayLever entities: - uid: 2143 @@ -16727,77 +16187,8 @@ entities: - pos: 2.5,-22.5 parent: 1 type: Transform -- proto: WeaponDisabler - entities: - - uid: 246 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponLaserGun - entities: - - uid: 247 - components: - - flags: InContainer - type: MetaData - - parent: 217 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponProtoKineticAccelerator - entities: - - uid: 1731 - components: - - flags: InContainer - type: MetaData - - parent: 1730 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 1733 - components: - - flags: InContainer - type: MetaData - - parent: 1732 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponRevolverDeckard - entities: - - uid: 2406 - components: - - pos: 2.4326227,-22.201796 - parent: 1 - type: Transform -- proto: WeaponRevolverPirate - entities: - - uid: 1050 - components: - - flags: InContainer - type: MetaData - - parent: 1046 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: WeaponRevolverPython entities: - - uid: 1713 - components: - - flags: InContainer - type: MetaData - - parent: 1708 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - uid: 1740 components: - flags: InContainer diff --git a/Resources/Maps/_NF/Shuttles/publicts.yml b/Resources/Maps/_NF/Shuttles/publicts.yml new file mode 100644 index 00000000000..a635515f84b --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/publicts.yml @@ -0,0 +1,959 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 28: FloorDark + 33: FloorDarkMono + 37: FloorDarkPlastic + 44: FloorGlass + 93: FloorSteelMono + 97: FloorTechMaint + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 8756 + components: + - name: Public Transport Shuttle + type: MetaData + - parent: invalid + type: Transform + - chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAABJQAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAADJQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAJQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAJQAAAAADJQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAIQAAAAACJQAAAAAAXQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAIQAAAAACJQAAAAADJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAABcgAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: JQAAAAAAIQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAALAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAXQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADXQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAACXQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADIQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 41: -3,-1 + 42: -3,0 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 43: 1,-1 + 44: 1,0 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 45: -3,-1 + 46: -3,0 + 47: 1,0 + 48: 1,-1 + 49: -3,-3 + 50: -1,-3 + 51: -1,-2 + 52: -1,-1 + 53: 1,-3 + 54: -2,-6 + 55: -1,-6 + 56: 0,-6 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Bot + decals: + 16: 1,-4 + 17: 1,-5 + 18: -3,-4 + 19: -3,-5 + 20: -1,-4 + - node: + cleanable: True + color: '#83543273' + id: Dirt + decals: + 22: -4,-1 + 23: -1,-1 + 25: -1,-2 + 27: -2,-4 + 28: -2,-5 + 29: 0,-5 + 30: 0,-4 + 32: 0,-1 + 33: -1,2 + 34: -2,2 + 35: 0,-1 + 37: 2,-1 + 40: 1,0 + type: DecalGrid + - version: 2 + data: + tiles: + -1,-1: + 0: 65535 + -1,0: + 0: 61439 + 0,0: + 0: 14335 + 0,-1: + 0: 65535 + -2,-1: + 0: 34952 + -1,-2: + 0: 65534 + -1,-3: + 0: 49152 + -2,0: + 0: 136 + -1,1: + 0: 206 + 0,1: + 0: 19 + 0,-3: + 0: 4096 + 0,-2: + 0: 30579 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid +- proto: AirlockExternalGlassShuttleTransit + entities: + - uid: 3 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 8756 + type: Transform + - uid: 19 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 8756 + type: Transform + - uid: 61 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 8756 + type: Transform + - uid: 66 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 8756 + type: Transform +- proto: APCBasic + entities: + - uid: 8819 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 5 + components: + - pos: 2.5,-0.5 + parent: 8756 + type: Transform + - uid: 8 + components: + - pos: -3.5,-0.5 + parent: 8756 + type: Transform + - uid: 11 + components: + - pos: -3.5,0.5 + parent: 8756 + type: Transform + - uid: 25 + components: + - pos: 2.5,0.5 + parent: 8756 + type: Transform +- proto: CableApcExtension + entities: + - uid: 12 + components: + - pos: -0.5,2.5 + parent: 8756 + type: Transform + - uid: 8830 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8831 + components: + - pos: 1.5,-4.5 + parent: 8756 + type: Transform + - uid: 8832 + components: + - pos: 1.5,-3.5 + parent: 8756 + type: Transform + - uid: 8833 + components: + - pos: 1.5,-2.5 + parent: 8756 + type: Transform + - uid: 8834 + components: + - pos: 1.5,-1.5 + parent: 8756 + type: Transform + - uid: 8835 + components: + - pos: 1.5,-0.5 + parent: 8756 + type: Transform + - uid: 8836 + components: + - pos: 1.5,0.5 + parent: 8756 + type: Transform + - uid: 8837 + components: + - pos: 0.5,0.5 + parent: 8756 + type: Transform + - uid: 8838 + components: + - pos: 0.5,1.5 + parent: 8756 + type: Transform + - uid: 8839 + components: + - pos: 0.5,2.5 + parent: 8756 + type: Transform + - uid: 8843 + components: + - pos: -1.5,2.5 + parent: 8756 + type: Transform + - uid: 8844 + components: + - pos: -1.5,1.5 + parent: 8756 + type: Transform + - uid: 8845 + components: + - pos: -1.5,0.5 + parent: 8756 + type: Transform + - uid: 8846 + components: + - pos: -2.5,0.5 + parent: 8756 + type: Transform + - uid: 8847 + components: + - pos: -2.5,-0.5 + parent: 8756 + type: Transform + - uid: 8849 + components: + - pos: -2.5,-2.5 + parent: 8756 + type: Transform + - uid: 8850 + components: + - pos: -2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8851 + components: + - pos: -2.5,-4.5 + parent: 8756 + type: Transform + - uid: 8852 + components: + - pos: -2.5,-5.5 + parent: 8756 + type: Transform + - uid: 8853 + components: + - pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8854 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8855 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8856 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform +- proto: CableHV + entities: + - uid: 2 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 26 + components: + - pos: 2.5,-5.5 + parent: 8756 + type: Transform + - uid: 52 + components: + - pos: -3.5,-5.5 + parent: 8756 + type: Transform + - uid: 8821 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8822 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8823 + components: + - pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8824 + components: + - pos: -2.5,-5.5 + parent: 8756 + type: Transform +- proto: CableMV + entities: + - uid: 8825 + components: + - pos: -2.5,-5.5 + parent: 8756 + type: Transform + - uid: 8826 + components: + - pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8827 + components: + - pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8828 + components: + - pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8829 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 8756 + type: Transform + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 24 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 8756 + type: Transform + - uid: 29 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 8756 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 8756 + type: Transform + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 67 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 8756 + type: Transform + - uid: 68 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 8756 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 8756 + type: Transform + - uid: 8857 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8858 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 8756 + type: Transform + - uid: 8859 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 8756 + type: Transform + - uid: 8860 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 8756 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 27 + components: + - pos: -2.5,1.5 + parent: 8756 + type: Transform +- proto: ComputerRadar + entities: + - uid: 63 + components: + - pos: -1.5,1.5 + parent: 8756 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 74 + components: + - pos: 0.5,1.5 + parent: 8756 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 76 + components: + - pos: 1.5,1.5 + parent: 8756 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 8756 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 8756 + type: Transform +- proto: GasPipeBend + entities: + - uid: 30 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 8756 + type: Transform + - uid: 48 + components: + - pos: 2.5,-5.5 + parent: 8756 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 7 + components: + - pos: -0.5,-4.5 + parent: 8756 + type: Transform + - uid: 14 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 8756 + type: Transform + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 8756 + type: Transform + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 34 + components: + - pos: -0.5,-2.5 + parent: 8756 + type: Transform + - uid: 41 + components: + - pos: -0.5,-3.5 + parent: 8756 + type: Transform + - uid: 45 + components: + - pos: -0.5,-1.5 + parent: 8756 + type: Transform + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 50 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 8756 + type: Transform + - uid: 58 + components: + - pos: -0.5,-0.5 + parent: 8756 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 13 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 8756 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 18 + components: + - pos: -0.5,0.5 + parent: 8756 + type: Transform +- proto: GeneratorWallmountAPU + entities: + - uid: 51 + components: + - pos: 2.5,-5.5 + parent: 8756 + type: Transform + - uid: 53 + components: + - pos: -3.5,-5.5 + parent: 8756 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 17 + components: + - pos: -0.5,2.5 + parent: 8756 + type: Transform +- proto: Grille + entities: + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 8756 + type: Transform + - uid: 43 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 8756 + type: Transform + - uid: 56 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 8756 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 8756 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8802 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 8756 + type: Transform + - uid: 8809 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 8756 + type: Transform + - uid: 8810 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 8756 + type: Transform + - uid: 8816 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8817 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 8756 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 49 + components: + - pos: 1.5,-1.5 + parent: 8756 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 70 + components: + - pos: -2.5,-1.5 + parent: 8756 + type: Transform +- proto: Poweredlight + entities: + - uid: 4 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 8756 + type: Transform + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 8756 + type: Transform + - uid: 8879 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8880 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 8756 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: RandomPosterLegit + entities: + - uid: 55 + components: + - pos: -3.5,-1.5 + parent: 8756 + type: Transform + - uid: 65 + components: + - pos: 2.5,-1.5 + parent: 8756 + type: Transform +- proto: ShuttleWindow + entities: + - uid: 10 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 8756 + type: Transform + - uid: 59 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 8756 + type: Transform + - uid: 62 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 8756 + type: Transform + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 8756 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 8756 + type: Transform + - uid: 8801 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 8756 + type: Transform + - uid: 8805 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8807 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 8756 + type: Transform + - uid: 8812 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 8756 + type: Transform + - uid: 8814 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 8756 + type: Transform +- proto: SignShipDock + entities: + - uid: 1 + components: + - pos: -3.5,1.5 + parent: 8756 + type: Transform + - uid: 44 + components: + - pos: 2.5,1.5 + parent: 8756 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 8818 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 8756 + type: Transform +- proto: Thruster + entities: + - uid: 54 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 8756 + type: Transform + - uid: 8881 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 8756 + type: Transform +- proto: WallShuttle + entities: + - uid: 20 + components: + - pos: -3.5,1.5 + parent: 8756 + type: Transform + - uid: 21 + components: + - pos: -2.5,1.5 + parent: 8756 + type: Transform + - uid: 22 + components: + - pos: 0.5,2.5 + parent: 8756 + type: Transform + - uid: 23 + components: + - pos: 2.5,1.5 + parent: 8756 + type: Transform + - uid: 35 + components: + - pos: 1.5,1.5 + parent: 8756 + type: Transform + - uid: 37 + components: + - pos: -3.5,-1.5 + parent: 8756 + type: Transform + - uid: 38 + components: + - pos: 2.5,-1.5 + parent: 8756 + type: Transform + - uid: 39 + components: + - pos: -1.5,2.5 + parent: 8756 + type: Transform + - uid: 8765 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 8756 + type: Transform + - uid: 8766 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 8756 + type: Transform + - uid: 8767 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 8756 + type: Transform + - uid: 8768 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 8756 + type: Transform + - uid: 8779 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 8756 + type: Transform + - uid: 8781 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 8756 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 8756 + type: Transform + - uid: 40 + components: + - pos: -1.5,3.5 + parent: 8756 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 8756 + type: Transform + - uid: 75 + components: + - pos: -2.5,2.5 + parent: 8756 + type: Transform +- proto: WarpPoint + entities: + - uid: 15 + components: + - pos: -0.5,-1.5 + parent: 8756 + type: Transform + - location: Public Transport Shuttle + type: WarpPoint +... diff --git a/Resources/Maps/Shuttles/sprinter.yml b/Resources/Maps/_NF/Shuttles/sprinter.yml similarity index 71% rename from Resources/Maps/Shuttles/sprinter.yml rename to Resources/Maps/_NF/Shuttles/sprinter.yml index 2b3bc8e8d60..3b1d4dced50 100644 --- a/Resources/Maps/Shuttles/sprinter.yml +++ b/Resources/Maps/_NF/Shuttles/sprinter.yml @@ -3,15 +3,16 @@ meta: postmapinit: false tilemap: 0: Space - 27: FloorDark - 40: FloorElevatorShaft - 62: FloorMetalDiamond - 70: FloorPlastic - 89: FloorSteelDirty - 96: FloorTechMaint - 109: FloorWhitePlastic - 112: Lattice - 113: Plating + 28: FloorDark + 41: FloorElevatorShaft + 63: FloorMetalDiamond + 71: FloorPlastic + 85: FloorSteel + 90: FloorSteelDirty + 97: FloorTechMaint + 110: FloorWhitePlastic + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -24,19 +25,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: WQAAAAAAWQAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKAAAAAAAcAAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAGwAAAAACGwAAAAABGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAGwAAAAADGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAGwAAAAADGwAAAAADGwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WgAAAAAAWgAAAAAAHAAAAAABHAAAAAADHAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAcQAAAAAAKQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAHAAAAAACHAAAAAABHAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAHAAAAAADHAAAAAADHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAHAAAAAACHAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAHAAAAAAAHAAAAAABHAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAHAAAAAACHAAAAAADHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAHAAAAAAAHAAAAAACHAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAHAAAAAADHAAAAAADHAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAADHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKAAAAAAAcAAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAcQAAAAAAKQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAACHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAARgAAAAACRgAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKAAAAAAAcAAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWgAAAAAARwAAAAACRwAAAAACWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAcQAAAAAAKQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAKQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAKQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAARgAAAAABWQAAAAAAWQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAARgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAGwAAAAADWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAKAAAAAAAcAAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAbQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAGwAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAARwAAAAABWgAAAAAAWgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAARwAAAAAAcgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAHAAAAAADWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAcQAAAAAAKQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAbgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAHAAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAKQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABHAAAAAACcgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAcgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAKQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADcQAAAAAAcQAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -62,732 +63,646 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 474: -12,-3 - 475: -11,-3 - 476: -10,-3 - 477: 9,-3 - 478: 10,-3 - 479: 11,-3 + 429: -12,-3 + 430: -11,-3 + 431: -10,-3 + 432: 9,-3 + 433: 10,-3 + 434: 11,-3 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Bot decals: - 26: -5,-7 - 27: -4,-7 - 28: -3,-7 - 29: -3,-8 - 30: -4,-8 - 31: -5,-8 - 32: -5,-9 - 33: -4,-9 - 34: -3,-9 - - node: - color: '#787878FF' - id: BrickTileSteelLineE - decals: - 12: 5.7666655,-3.9822545 - 13: 5.7666655,-4.9822545 - - node: - color: '#8C8C8CFF' - id: BrickTileSteelLineE - decals: - 10: 6.0010405,-3.9978795 - 11: 6.0166655,-4.9822545 - - node: - color: '#A0A0A0FF' - id: BrickTileSteelLineE - decals: - 8: 6.2510405,-3.9978795 - 9: 6.2666655,-4.9822545 - - node: - color: '#B4B4B4FF' - id: BrickTileSteelLineE - decals: - 6: 6.5010405,-3.9978795 - 7: 6.5010405,-4.9822545 - - node: - color: '#C8C8C8FF' - id: BrickTileSteelLineE - decals: - 4: 6.7510405,-3.9978795 - 5: 6.7510405,-4.9822545 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 2: 7,-4 - 3: 7,-5 - - node: - color: '#8C8C8CFF' - id: BrickTileSteelLineW - decals: - 22: -6.795757,-4.0040007 - 23: -6.795757,-4.9883757 - - node: - color: '#A0A0A0FF' - id: BrickTileSteelLineW - decals: - 20: -7.043778,-4.981266 - 21: -7.045757,-3.9883757 - - node: - color: '#B4B4B4FF' - id: BrickTileSteelLineW - decals: - 18: -7.2781525,-4.012516 - 19: -7.2781525,-4.981266 - - node: - color: '#C8C8C8FF' - id: BrickTileSteelLineW - decals: - 16: -7.5125275,-3.9968908 - 17: -7.5125275,-4.981266 - - node: - color: '#DCDCDCFF' - id: BrickTileSteelLineW - decals: - 14: -7.7625275,-3.9968908 - 15: -7.7625275,-4.981266 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 0: -8,-4 - 1: -8,-5 + 2: -5,-7 + 3: -4,-7 + 4: -3,-7 + 5: -3,-8 + 6: -4,-8 + 7: -5,-8 + 8: -5,-9 + 9: -4,-9 + 10: -3,-9 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 520: 11,-6 + 475: 11,-6 - node: cleanable: True color: '#FFFFFFFF' id: Caution decals: - 209: -4,-4 + 184: -4,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 24: -12,-4 - 521: -12,-6 + 0: -12,-4 + 476: -12,-6 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 25: 11,-4 + 1: 11,-4 - node: cleanable: True color: '#C7621F47' id: Dirt decals: - 210: -5,-2 - 211: -5,-2 - 212: -5,-2 - 213: -5,-2 - 214: -5,-2 - 215: -6,-2 - 216: -6,-2 - 217: -5,-2 - 218: -6,-2 - 219: -6,-2 - 220: -4,-2 - 221: 7,-4 - 222: 7,-5 - 223: 7,-4 - 224: 6,-5 - 225: -8,-5 - 226: -8,-4 - 227: -8,-4 - 228: -8,-4 - 229: -8,-5 - 230: -7,-4 - 231: -7,-5 - 232: -8,-5 - 233: -8,-5 - 234: 1,-1 - 235: 1,0 - 236: 1,-2 - 237: -2,9 - 238: -3,10 - 239: -2,10 - 240: -1,9 - 241: 0,9 - 242: 0,9 - 243: 0,10 - 244: -1,10 - 245: -2,9 - 246: -2,9 - 247: -1,9 - 248: 0,9 - 249: 1,9 - 250: 0,10 - 251: -1,10 - 252: -2,10 - 253: -2,11 - 254: 0,11 - 255: 0,11 + 185: -5,-2 + 186: -5,-2 + 187: -5,-2 + 188: -5,-2 + 189: -5,-2 + 190: -6,-2 + 191: -6,-2 + 192: -5,-2 + 193: -6,-2 + 194: -6,-2 + 195: -4,-2 + 196: 1,-1 + 197: 1,0 + 198: 1,-2 + 199: -2,9 + 200: -3,10 + 201: -2,10 + 202: -1,9 + 203: 0,9 + 204: 0,9 + 205: 0,10 + 206: -1,10 + 207: -2,9 + 208: -2,9 + 209: -1,9 + 210: 0,9 + 211: 1,9 + 212: 0,10 + 213: -1,10 + 214: -2,10 + 215: -2,11 + 216: 0,11 + 217: 0,11 - node: cleanable: True color: '#FF0000FF' id: Dirt decals: - 68: -4,-1 - 69: -5,-1 - 70: -4,-1 - 71: -4,-1 - 72: -5,0 - 73: -4,0 - 74: -4,0 + 44: -4,-1 + 45: -5,-1 + 46: -4,-1 + 47: -4,-1 + 48: -5,0 + 49: -4,0 + 50: -4,0 - node: cleanable: True angle: 4.71238898038469 rad color: '#FF9F4DFF' id: Dirt decals: - 35: -3,-11 - 36: -3,-11 - 37: -2,-11 - 38: -2,-11 - 39: -3,-11 - 40: -3,-10 - 41: -3,-10 - 42: -2.5055575,-10.488877 - 47: -5,-8 - 48: -3,-7 + 11: -3,-11 + 12: -3,-11 + 13: -2,-11 + 14: -2,-11 + 15: -3,-11 + 16: -3,-10 + 17: -3,-10 + 18: -2.5055575,-10.488877 + 23: -5,-8 + 24: -3,-7 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 133: 10,-5 - 134: 11,-5 - 135: 11,-4 - 489: -11,-6 - 490: -11,-6 - 491: -11,-6 - 492: -11,-3 - 493: -11,-3 - 494: -11,-3 - 495: 10,-6 - 496: 10,-6 - 497: 10,-6 - 498: 10,-3 - 499: 10,-3 - 500: 10,-3 - 501: -12,-8 - 502: -11,-8 - 503: -11,-8 - 504: -10,-8 - 505: -10,-8 - 506: -12,-1 - 507: -12,-1 - 508: -11,-1 - 509: -10,-1 - 510: 9,-8 - 511: 9,-8 - 512: 10,-8 - 513: 11,-8 - 514: 11,-8 - 515: 11,-1 - 516: 10,-1 - 517: 10,-1 - 518: 9,-1 - 519: 9,-1 + 109: 10,-5 + 110: 11,-5 + 111: 11,-4 + 444: -11,-6 + 445: -11,-6 + 446: -11,-6 + 447: -11,-3 + 448: -11,-3 + 449: -11,-3 + 450: 10,-6 + 451: 10,-6 + 452: 10,-6 + 453: 10,-3 + 454: 10,-3 + 455: 10,-3 + 456: -12,-8 + 457: -11,-8 + 458: -11,-8 + 459: -10,-8 + 460: -10,-8 + 461: -12,-1 + 462: -12,-1 + 463: -11,-1 + 464: -10,-1 + 465: 9,-8 + 466: 9,-8 + 467: 10,-8 + 468: 11,-8 + 469: 11,-8 + 470: 11,-1 + 471: 10,-1 + 472: 10,-1 + 473: 9,-1 + 474: 9,-1 + 487: 6,-5 - node: cleanable: True color: '#FF0000FF' id: DirtHeavy decals: - 75: -4,-2 - 76: -4,-2 - 77: -4,-1 - 78: -4,-1 + 51: -4,-2 + 52: -4,-2 + 53: -4,-1 + 54: -4,-1 - node: color: '#FFFFFFCA' id: DirtHeavy decals: - 325: 3,4 - 326: 3,5 - 327: 3,6 - 328: 3,6 - 329: 3,6 - 330: 3,7 - 331: 2,6 - 332: 3,5 - 333: 3,4 - 334: 3,4 - 335: 3,1 - 336: 2,1 - 337: 2,1 - 338: 3,2 - 339: 3,2 - 340: 3,2 - 341: 2,1 - 342: 2,2 - 343: 3,2 - 344: 0,2 - 345: 0,1 - 346: 0,2 - 347: -1,1 - 348: -1,1 - 349: -1,10 - 350: -1,9 - 351: 0,9 - 352: 0,10 - 353: -2,10 - 354: -3,9 - 355: -2,10 - 356: 1,10 - 357: 1,9 + 287: 3,4 + 288: 3,5 + 289: 3,6 + 290: 3,6 + 291: 3,6 + 292: 3,7 + 293: 2,6 + 294: 3,5 + 295: 3,4 + 296: 3,4 + 297: 3,1 + 298: 2,1 + 299: 2,1 + 300: 3,2 + 301: 3,2 + 302: 3,2 + 303: 2,1 + 304: 2,2 + 305: 3,2 + 306: 0,2 + 307: 0,1 + 308: 0,2 + 309: -1,1 + 310: -1,1 + 311: -1,10 + 312: -1,9 + 313: 0,9 + 314: 0,10 + 315: -2,10 + 316: -3,9 + 317: -2,10 + 318: 1,10 + 319: 1,9 - node: cleanable: True color: '#FFFFFFCA' id: DirtHeavy decals: - 364: -4,7 - 365: -4,7 + 326: -4,7 + 327: -4,7 + 328: -4,6 + 329: -4,5 + 330: -3,4 + 331: -3,4 + 332: -2,5 + 333: -4,6 + 334: -4,4 + 335: -2,4 + 336: -2,6 + 337: -4,6 + 338: -5,5 + 339: -5,5 + 340: -4,4 + 341: -3,5 + 342: -3,6 + 343: -2,7 + 344: -2,7 + 345: -2,7 + 346: -2,7 + 347: -2,7 + 348: 0,6 + 349: 0,7 + 350: 0,7 + 351: 0,7 + 352: -2,6 + 353: -1,6 + 354: -1,7 + 355: -1,7 + 356: 0,6 + 357: -1,5 + 358: -1,4 + 359: -1,4 + 360: -3,4 + 361: -4,4 + 362: -4,4 + 363: -4,4 + 364: -4,6 + 365: -4,6 366: -4,6 367: -4,5 - 368: -3,4 - 369: -3,4 - 370: -2,5 - 371: -4,6 - 372: -4,4 - 373: -2,4 - 374: -2,6 - 375: -4,6 - 376: -5,5 - 377: -5,5 - 378: -4,4 - 379: -3,5 - 380: -3,6 - 381: -2,7 - 382: -2,7 - 383: -2,7 - 384: -2,7 - 385: -2,7 - 386: 0,6 - 387: 0,7 - 388: 0,7 - 389: 0,7 - 390: -2,6 - 391: -1,6 - 392: -1,7 - 393: -1,7 - 394: 0,6 - 395: -1,5 - 396: -1,4 - 397: -1,4 - 398: -3,4 - 399: -4,4 - 400: -4,4 - 401: -4,4 - 402: -4,6 - 403: -4,6 - 404: -4,6 - 405: -4,5 - 406: -4,5 - 407: -4,5 - 408: 2,7 - 409: 2,7 - 410: 1,9 - 411: 1,9 - 412: 2,9 - 413: 2,9 - 414: 2,9 - 415: 2,9 - 416: 1,9 - 417: -3,0 - 418: -3,0 - 419: -3,1 - 420: -3,1 - 421: -2,2 - 422: -2,2 - 423: -3,1 - 424: -3,1 - 425: -3,1 - 426: -2,2 - 427: -2,0 - 428: -1,0 - 429: -1,-1 - 430: 3,-8 - 431: 3,-8 - 432: 3,-7 - 433: 3,-7 - 434: 5,-7 - 435: 2,-7 - 436: 2,-7 - 437: -4,-8 - 438: -4,-9 - 439: -5,-9 - 440: -5,-9 - 441: -5,-8 - 442: -4,-7 - 443: -3,-8 - 444: -3,-8 - 445: -4,-7 - 446: -5,-7 - 447: -5,-7 - 448: -4,-10 - 449: -4,-10 - 463: 1,-5 - 464: 1,-5 - 465: 0,-5 - 466: 0,-5 - 467: 4,-5 - 468: 2,-5 - 469: 5,-4 - 470: 7,-5 - 471: 6,-4 - 472: 6,-4 - 473: 7,-4 + 368: -4,5 + 369: -4,5 + 370: 2,7 + 371: 2,7 + 372: 1,9 + 373: 1,9 + 374: 2,9 + 375: 2,9 + 376: 2,9 + 377: 2,9 + 378: 1,9 + 379: -3,0 + 380: -3,0 + 381: -3,1 + 382: -3,1 + 383: -2,2 + 384: -2,2 + 385: -3,1 + 386: -3,1 + 387: -3,1 + 388: -2,2 + 389: -2,0 + 390: -1,0 + 391: -1,-1 + 392: 3,-8 + 393: 3,-8 + 394: 3,-7 + 395: 3,-7 + 396: 5,-7 + 397: 2,-7 + 398: 2,-7 + 399: -4,-8 + 400: -4,-9 + 401: -5,-9 + 402: -5,-9 + 403: -5,-8 + 404: -4,-7 + 405: -3,-8 + 406: -3,-8 + 407: -4,-7 + 408: -5,-7 + 409: -5,-7 + 410: -4,-10 + 411: -4,-10 + 422: 1,-5 + 423: 1,-5 + 424: 0,-5 + 425: 0,-5 + 426: 4,-5 + 427: 2,-5 + 428: 5,-4 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 97: -2,-9 - 98: -1,-1 - 99: -1,0 - 100: -3,1 - 101: -2,-1 - 102: -2,-2 - 103: 0,-1 - 104: 0,0 - 105: -2,1 - 106: -3,2 - 107: 1,5 - 108: 2,5 - 109: 2,6 - 110: 1,7 - 111: 1,6 - 112: 2,7 - 113: -1,4 - 114: -2,4 - 115: -3,5 - 116: -2,6 - 117: -2,6 - 118: -3,7 - 119: -3,7 - 120: -1,5 - 121: -2,4 - 122: -3,4 - 123: -1,5 - 124: -1,7 - 125: -1,7 - 126: 10,-5 - 127: 10,-4 - 128: 9,-4 - 129: 9,-5 - 130: 11,-3 - 131: 10,-4 - 132: 11,-5 - 153: -12,-5 - 154: -11,-3 - 155: -12,-3 - 156: -12,-3 - 157: -12,-4 - 158: -11,-4 - 159: -7,-5 - 160: -3,-5 - 161: -4,-4 - 162: -6,-4 - 163: -5,-5 - 164: -1,-5 - 165: -1,-4 - 166: 1,-4 - 167: 2,-5 - 168: 5,-5 - 169: 4,-4 - 170: 3,-4 - 171: -1,-5 - 172: -2,-4 - 173: 2,-2 - 174: 2,-1 - 175: 3,-1 - 176: 3,-2 - 177: 4,-2 - 178: 3,-2 - 179: 2,-1 - 180: 2,-2 - 303: -1,-9 - 304: -1,-9 - 305: -1,-8 - 306: -1,-7 - 307: 0,-7 - 308: 0,-7 - 309: 0,-9 - 310: 0,-10 - 311: -2,-11 - 312: -2,-11 - 313: 0,-12 - 314: -1,-11 - 315: -1,-10 - 316: 0,-11 + 73: -2,-9 + 74: -1,-1 + 75: -1,0 + 76: -3,1 + 77: -2,-1 + 78: -2,-2 + 79: 0,-1 + 80: 0,0 + 81: -2,1 + 82: -3,2 + 83: 1,5 + 84: 2,5 + 85: 2,6 + 86: 1,7 + 87: 1,6 + 88: 2,7 + 89: -1,4 + 90: -2,4 + 91: -3,5 + 92: -2,6 + 93: -2,6 + 94: -3,7 + 95: -3,7 + 96: -1,5 + 97: -2,4 + 98: -3,4 + 99: -1,5 + 100: -1,7 + 101: -1,7 + 102: 10,-5 + 103: 10,-4 + 104: 9,-4 + 105: 9,-5 + 106: 11,-3 + 107: 10,-4 + 108: 11,-5 + 129: -12,-5 + 130: -11,-3 + 131: -12,-3 + 132: -12,-3 + 133: -12,-4 + 134: -11,-4 + 135: -3,-5 + 136: -4,-4 + 137: -6,-4 + 138: -5,-5 + 139: -1,-5 + 140: -1,-4 + 141: 1,-4 + 142: 2,-5 + 143: 5,-5 + 144: 4,-4 + 145: 3,-4 + 146: -1,-5 + 147: -2,-4 + 148: 2,-2 + 149: 2,-1 + 150: 3,-1 + 151: 3,-2 + 152: 4,-2 + 153: 3,-2 + 154: 2,-1 + 155: 2,-2 + 265: -1,-9 + 266: -1,-9 + 267: -1,-8 + 268: -1,-7 + 269: 0,-7 + 270: 0,-7 + 271: 0,-9 + 272: 0,-10 + 273: -2,-11 + 274: -2,-11 + 275: 0,-12 + 276: -1,-11 + 277: -1,-10 + 278: 0,-11 + 485: -7,-4 + 486: -8,-5 + 488: 6,-4 + 489: 7,-4 - node: cleanable: True color: '#FF0000FF' id: DirtLight decals: - 79: -6,-1 - 80: -6,-1 - 81: -6,-1 - 82: -6,-2 - 83: -5,-1 - 84: -5,-1 - 85: -5,-1 - 86: -4,0 - 87: -4,0 - 88: -4,0 - 89: -4,-1 - 90: -4,-1 - 91: -4,-2 - 92: -4,-2 - 93: -6,-2 - 94: -6,-2 - 95: -6,-2 - 96: -6,-2 + 55: -6,-1 + 56: -6,-1 + 57: -6,-1 + 58: -6,-2 + 59: -5,-1 + 60: -5,-1 + 61: -5,-1 + 62: -4,0 + 63: -4,0 + 64: -4,0 + 65: -4,-1 + 66: -4,-1 + 67: -4,-2 + 68: -4,-2 + 69: -6,-2 + 70: -6,-2 + 71: -6,-2 + 72: -6,-2 - node: cleanable: True angle: 4.71238898038469 rad color: '#FF0000FF' id: DirtLight decals: - 49: 4,-7 - 50: 4,-8 - 51: 4,-7 - 52: 4,-7 - 53: 4,-7 - 54: 4,-8 - 55: 4,-8 - 56: 4,-8 - 57: 4,-8 - 58: 3,-8 - 59: 3,-8 - 60: 5,-7 - 61: 5,-7 - 62: 5,-7 - 63: 5,-7 - 64: 5,-7 - 65: 5,-7 - 66: 5,-7 - 67: 5,-7 + 25: 4,-7 + 26: 4,-8 + 27: 4,-7 + 28: 4,-7 + 29: 4,-7 + 30: 4,-8 + 31: 4,-8 + 32: 4,-8 + 33: 4,-8 + 34: 3,-8 + 35: 3,-8 + 36: 5,-7 + 37: 5,-7 + 38: 5,-7 + 39: 5,-7 + 40: 5,-7 + 41: 5,-7 + 42: 5,-7 + 43: 5,-7 - node: cleanable: True angle: 4.71238898038469 rad color: '#FF9F4DFF' id: DirtLight decals: - 43: -2,-10 - 44: -4,-8 - 45: -3,-9 + 19: -2,-10 + 20: -4,-8 + 21: -3,-9 - node: cleanable: True color: '#FFFFFF98' id: DirtLight decals: - 277: 2.956286,4.7591314 + 239: 2.956286,4.7591314 - node: cleanable: True color: '#FFFFFFCA' id: DirtLight decals: - 358: -4,7 - 359: -4,7 - 360: -4,7 - 361: -3,7 - 362: -3,7 - 363: -4,7 + 320: -4,7 + 321: -4,7 + 322: -4,7 + 323: -3,7 + 324: -3,7 + 325: -4,7 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 136: 9,-3 - 137: 10,-4 - 138: 10,-5 - 139: -11,-5 - 140: -11,-3 - 141: -10,-4 - 142: -11,-5 - 143: -12,-4 - 144: -12,-3 - 145: -11,-3 - 146: -10,-4 - 147: -10,-5 - 181: 3,-1 - 182: 4,-1 - 183: 4,-1 - 184: 2,0 - 185: 3,0 - 186: 2,0 - 278: 3,5 - 279: 3,5 - 280: 3,6 - 281: 3,6 - 282: 3,7 - 283: 3,7 - 284: 3,6 - 285: 3,6 - 286: 3,5 - 287: -1,-12 - 288: -1,-11 - 289: -1,-11 - 290: -1,-11 - 291: 0,-11 - 292: -1,-11 - 293: -1,-11 - 294: -1,-10 - 295: -1,-9 - 296: 0,-9 - 297: 0,-8 - 298: 0,-8 - 299: 0,-7 - 300: -1,-7 - 301: -1,-7 - 302: -1,-8 - 480: -11,-6 - 481: -11,-6 - 482: -10,-6 - 483: -11,-6 - 484: 10,-6 - 485: 10,-6 - 486: 10,-6 - 487: 9,-6 - 488: 10,-6 + 112: 9,-3 + 113: 10,-4 + 114: 10,-5 + 115: -11,-5 + 116: -11,-3 + 117: -10,-4 + 118: -11,-5 + 119: -12,-4 + 120: -12,-3 + 121: -11,-3 + 122: -10,-4 + 123: -10,-5 + 156: 3,-1 + 157: 4,-1 + 158: 4,-1 + 159: 2,0 + 160: 3,0 + 161: 2,0 + 240: 3,5 + 241: 3,5 + 242: 3,6 + 243: 3,6 + 244: 3,7 + 245: 3,7 + 246: 3,6 + 247: 3,6 + 248: 3,5 + 249: -1,-12 + 250: -1,-11 + 251: -1,-11 + 252: -1,-11 + 253: 0,-11 + 254: -1,-11 + 255: -1,-11 + 256: -1,-10 + 257: -1,-9 + 258: 0,-9 + 259: 0,-8 + 260: 0,-8 + 261: 0,-7 + 262: -1,-7 + 263: -1,-7 + 264: -1,-8 + 435: -11,-6 + 436: -11,-6 + 437: -10,-6 + 438: -11,-6 + 439: 10,-6 + 440: 10,-6 + 441: 10,-6 + 442: 9,-6 + 443: 10,-6 - node: cleanable: True angle: 4.71238898038469 rad color: '#FF9F4DFF' id: DirtMedium decals: - 46: -4,-9 + 22: -4,-9 - node: cleanable: True color: '#FFFFFFCA' id: DirtMedium decals: - 450: -1,-2 - 451: -1,-2 - 452: 0,-2 - 453: 0,-1 - 454: 3,7 - 455: 2,7 - 456: 2,7 - 457: 7,-5 - 458: 6,-4 - 459: 6,-5 - 460: 10,-3 - 461: 9,-3 - 462: 9,-4 + 412: -1,-2 + 413: -1,-2 + 414: 0,-2 + 415: 0,-1 + 416: 3,7 + 417: 2,7 + 418: 2,7 + 419: 10,-3 + 420: 9,-3 + 421: 9,-4 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 148: -12,-5 - 149: -11,-5 - 150: -10,-5 - 151: -10,-4 - 152: -10,-3 - 187: 3,-2 - 188: 4,-1 - 189: 4,-1 - 190: 4,-5 - 191: 3,-5 - 192: 2,-5 - 193: 5,-4 - 194: 5,-4 - 195: -1,-4 - 196: 0,-4 - 197: 0,-4 - 198: -1,-3 - 199: -1,-3 - 200: -1,-3 - 201: -1,-6 - 202: -1,-6 - 203: -1,-6 - 204: -1,-6 - 205: 0,-6 - 206: 0,-6 - 207: 0,-6 - 208: 0,-6 - 522: -12,-6 - 523: -12,-6 - 524: 11,-6 - 525: 11,-6 - 526: 3,-9 - 527: 3,-9 - 528: 3,-9 - 529: 4,-9 + 124: -12,-5 + 125: -11,-5 + 126: -10,-5 + 127: -10,-4 + 128: -10,-3 + 162: 3,-2 + 163: 4,-1 + 164: 4,-1 + 165: 4,-5 + 166: 3,-5 + 167: 2,-5 + 168: 5,-4 + 169: 5,-4 + 170: -1,-4 + 171: 0,-4 + 172: 0,-4 + 173: -1,-3 + 174: -1,-3 + 175: -1,-3 + 176: -1,-6 + 177: -1,-6 + 178: -1,-6 + 179: -1,-6 + 180: 0,-6 + 181: 0,-6 + 182: 0,-6 + 183: 0,-6 + 477: -12,-6 + 478: -12,-6 + 479: 11,-6 + 480: 11,-6 + 481: 3,-9 + 482: 3,-9 + 483: 3,-9 + 484: 4,-9 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 275: -2,-9 - 276: -2,-8 + 237: -2,-9 + 238: -2,-8 - node: cleanable: True color: '#FFFFFFDB' id: Rust decals: - 256: -3,-8 - 257: -4,-7 - 258: -3,-7 - 259: -2,-7 - 260: -2,-8 - 261: -2,-7 + 218: -3,-8 + 219: -4,-7 + 220: -3,-7 + 221: -2,-7 + 222: -2,-8 + 223: -2,-7 - node: color: '#FFFFFFCA' id: WarnLineE decals: - 323: 0,-12 - 324: 0,-11 + 285: 0,-12 + 286: 0,-11 - node: color: '#FFFFFFCA' id: WarnLineS decals: - 317: -1,-7 - 318: -1,-8 - 319: -1,-9 - 320: -1,-10 - 321: -1,-11 - 322: -1,-12 + 279: -1,-7 + 280: -1,-8 + 281: -1,-9 + 282: -1,-10 + 283: -1,-11 + 284: -1,-12 - node: cleanable: True color: '#92000050' id: largebrush decals: - 262: 4.6452923,-7.4165974 - 263: 5.0359173,-6.9478474 - 264: 4.7702923,-7.0415974 - 265: 4.6452923,-7.7134724 - 266: 4.6609173,-7.0884724 - 267: 5.3784537,-7.2633767 - 268: 5.4253287,-6.9040017 - 269: 5.1440787,-6.9665017 - 270: -3.3899674,-1.5190489 - 271: -3.6087174,-1.3315489 - 272: -3.8587174,-1.0502989 - 273: -3.5149674,-0.8159237 - 274: -3.1868424,-0.9096737 + 224: 4.6452923,-7.4165974 + 225: 5.0359173,-6.9478474 + 226: 4.7702923,-7.0415974 + 227: 4.6452923,-7.7134724 + 228: 4.6609173,-7.0884724 + 229: 5.3784537,-7.2633767 + 230: 5.4253287,-6.9040017 + 231: 5.1440787,-6.9665017 + 232: -3.3899674,-1.5190489 + 233: -3.6087174,-1.3315489 + 234: -3.8587174,-1.0502989 + 235: -3.5149674,-0.8159237 + 236: -3.1868424,-0.9096737 type: DecalGrid - version: 2 data: tiles: 0,0: - 0: 65535 + 0: 65407 + 1: 128 -1,0: 0: 65535 0,1: 0: 63359 - 1: 2176 + 2: 128 + 3: 2048 0,2: 0: 32767 0,3: @@ -827,37 +742,40 @@ entities: -3,-1: 0: 65535 -2,-2: - 0: 65535 + 0: 65279 + 1: 256 -2,-1: 0: 64511 - 2: 1024 + 4: 1024 -2,-3: 0: 61120 - 3: 8 + 5: 8 -1,-4: 0: 65216 -1,-3: 0: 65535 -1,-2: 0: 65519 - 4: 16 + 1: 16 -1,-1: 0: 49151 - 4: 16384 + 1: 16384 0,-4: 0: 63280 0,-3: 0: 65535 0,-2: - 0: 65531 - 4: 4 + 0: 65467 + 1: 68 0,-1: - 0: 65535 + 0: 63487 + 1: 2048 1,-3: 0: 30512 - 3: 1 + 5: 1 1,-2: - 0: 65535 + 0: 63487 + 1: 2048 1,-1: 0: 65535 2,-3: @@ -873,9 +791,9 @@ entities: 3,-1: 0: 4369 -2,-4: - 3: 32768 + 5: 32768 1,-4: - 3: 4096 + 5: 4096 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -892,6 +810,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -910,8 +843,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 + - 23.710548 + - 89.19683 - 0 - 0 - 0 @@ -925,8 +858,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -938,10 +871,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -958,13 +891,16 @@ entities: - type: RadiationGridResistance - id: Sprinter type: BecomesStation -- proto: AirlockCaptainGlassLocked +- proto: AirCanister entities: - - uid: 2 + - uid: 446 components: - - pos: -3.5,-2.5 + - anchored: True + pos: -2.5,7.5 parent: 1 type: Transform + - bodyType: Static + type: Physics - proto: AirlockCargoGlass entities: - uid: 3 @@ -1075,18 +1011,28 @@ entities: pos: -12.5,-5.5 parent: 1 type: Transform -- proto: AirlockMaintCaptainLocked +- proto: AirlockMaintGlass entities: - - uid: 21 + - uid: 22 components: - - pos: 1.5,5.5 + - pos: 3.5,-5.5 parent: 1 type: Transform -- proto: AirlockMaintGlass +- proto: AirlockMercenaryGlassLocked entities: - - uid: 22 + - uid: 2 components: - - pos: 3.5,-5.5 + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - links: + - 412 + type: DeviceLinkSink +- proto: AirlockMercenaryLocked + entities: + - uid: 21 + components: + - pos: 1.5,5.5 parent: 1 type: Transform - proto: AmeController @@ -1116,7 +1062,7 @@ entities: type: Physics - uid: 25 components: - - pos: 0.54973245,7.5791607 + - pos: 0.71468806,7.6303167 parent: 1 type: Transform - proto: AmeShielding @@ -1171,32 +1117,37 @@ entities: type: Transform - proto: APCBasic entities: - - uid: 35 + - uid: 178 components: - - rot: 3.141592653589793 rad - pos: 2.5,8.5 + - pos: 7.5,-1.5 parent: 1 type: Transform - - uid: 36 + - uid: 200 components: - - pos: 1.5,-9.5 + - pos: -7.5,-1.5 parent: 1 type: Transform -- proto: APCHighCapacity - entities: - - uid: 37 + - uid: 337 components: - - pos: -7.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 38 + - uid: 338 components: - - pos: 7.5,-1.5 + - pos: -2.5,-5.5 parent: 1 type: Transform - - uid: 39 + - uid: 461 components: - - pos: 0.5,-2.5 + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 462 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 parent: 1 type: Transform - proto: AtmosDeviceFanTiny @@ -1375,83 +1326,33 @@ entities: - pos: 2.5,2.5 parent: 1 type: Transform -- proto: BoxShellTranquilizer - entities: - - uid: 578 - components: - - flags: InContainer - type: MetaData - - parent: 576 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 579 - components: - - flags: InContainer - type: MetaData - - parent: 576 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxZiptie +- proto: BoxMedicalTrackingImplants entities: - - uid: 68 + - uid: 399 components: - - pos: 2.3657243,7.608989 + - pos: 3.3875737,4.814908 parent: 1 type: Transform - - uid: 69 + - uid: 414 components: - - pos: 2.7719743,7.452739 + - pos: 3.6584072,4.616992 parent: 1 type: Transform - proto: CableApcExtension entities: - - uid: 70 + - uid: 36 components: - - pos: 1.5,-7.5 + - pos: 4.5,-3.5 parent: 1 type: Transform - uid: 71 components: - - pos: 2.5,-7.5 + - pos: 3.5,-4.5 parent: 1 type: Transform - uid: 72 components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 73 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 76 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 77 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 78 - components: - - pos: -9.5,-3.5 + - pos: -2.5,-3.5 parent: 1 type: Transform - uid: 79 @@ -1554,31 +1455,6 @@ entities: - pos: -9.5,1.5 parent: 1 type: Transform - - uid: 99 - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform - - uid: 100 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 101 - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 102 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 103 - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform - uid: 104 components: - pos: 10.5,-3.5 @@ -1679,1519 +1555,1198 @@ entities: - pos: 11.5,-9.5 parent: 1 type: Transform - - uid: 124 + - uid: 129 components: - - pos: 0.5,-2.5 + - pos: 2.5,-0.5 parent: 1 type: Transform - - uid: 125 + - uid: 130 components: - - pos: 0.5,-3.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - - uid: 126 + - uid: 131 components: - - pos: 4.5,-3.5 + - pos: -1.5,-0.5 parent: 1 type: Transform - - uid: 127 + - uid: 132 components: - - pos: -0.5,-4.5 + - pos: -0.5,-0.5 parent: 1 type: Transform - - uid: 128 + - uid: 133 components: - - pos: -1.5,-4.5 + - pos: 5.5,-3.5 parent: 1 type: Transform - - uid: 129 + - uid: 134 components: - - pos: -2.5,-4.5 + - pos: -0.5,-3.5 parent: 1 type: Transform - - uid: 130 + - uid: 145 components: - - pos: -2.5,-3.5 + - pos: 3.5,-3.5 parent: 1 type: Transform - - uid: 131 + - uid: 146 components: - - pos: -4.5,-4.5 + - pos: 8.5,-3.5 parent: 1 type: Transform - - uid: 132 + - uid: 160 components: - - pos: -5.5,-4.5 + - pos: -2.5,-7.5 parent: 1 type: Transform - - uid: 133 + - uid: 161 components: - - pos: -3.5,-10.5 + - pos: -0.5,-10.5 parent: 1 type: Transform - - uid: 134 + - uid: 162 components: - - pos: -3.5,-9.5 + - pos: -1.5,-7.5 parent: 1 type: Transform - - uid: 135 + - uid: 163 components: - - pos: 2.5,-3.5 + - pos: 7.5,-1.5 parent: 1 type: Transform - - uid: 136 + - uid: 164 components: - - pos: 4.5,-4.5 + - pos: -0.5,-6.5 parent: 1 type: Transform - - uid: 137 + - uid: 165 components: - - pos: 5.5,-4.5 + - pos: -0.5,-7.5 parent: 1 type: Transform - - uid: 138 + - uid: 166 components: - - pos: 6.5,-4.5 + - pos: -2.5,-6.5 parent: 1 type: Transform - - uid: 139 + - uid: 167 components: - pos: -4.5,-3.5 parent: 1 type: Transform - - uid: 140 + - uid: 177 components: - - pos: -3.5,-5.5 + - pos: 7.5,-3.5 parent: 1 type: Transform - - uid: 141 + - uid: 179 components: - - pos: -3.5,-6.5 + - pos: -3.5,-1.5 parent: 1 type: Transform - - uid: 142 + - uid: 181 components: - - pos: -3.5,-7.5 + - pos: 0.5,8.5 parent: 1 type: Transform - - uid: 143 + - uid: 184 components: - - pos: -3.5,-8.5 + - pos: 0.5,9.5 parent: 1 type: Transform - - uid: 144 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 146 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 147 + - uid: 185 components: - - pos: -3.5,-0.5 + - pos: 0.5,10.5 parent: 1 type: Transform - - uid: 148 + - uid: 186 components: - - pos: -3.5,0.5 + - pos: -0.5,9.5 parent: 1 type: Transform - - uid: 149 + - uid: 187 components: - - pos: 3.5,-3.5 + - pos: 2.5,5.5 parent: 1 type: Transform - - uid: 150 + - uid: 188 components: - - pos: 3.5,-2.5 + - pos: 1.5,-0.5 parent: 1 type: Transform - - uid: 151 + - uid: 189 components: - - pos: 3.5,-1.5 + - pos: 3.5,-0.5 parent: 1 type: Transform - - uid: 152 + - uid: 201 components: - - pos: 3.5,-0.5 + - pos: -0.5,-5.5 parent: 1 type: Transform - - uid: 153 + - uid: 202 components: - - pos: 3.5,0.5 + - pos: 9.5,-3.5 parent: 1 type: Transform - - uid: 154 + - uid: 203 components: - - pos: 3.5,-5.5 + - pos: 0.5,-3.5 parent: 1 type: Transform - - uid: 155 + - uid: 204 components: - - pos: 3.5,-6.5 + - pos: -0.5,-8.5 parent: 1 type: Transform - - uid: 156 + - uid: 205 components: - - pos: 3.5,-7.5 + - pos: -0.5,-9.5 parent: 1 type: Transform - - uid: 157 + - uid: 206 components: - - pos: 3.5,-8.5 + - pos: -3.5,-3.5 parent: 1 type: Transform - - uid: 158 + - uid: 207 components: - - pos: 0.5,-5.5 + - pos: -3.5,-2.5 parent: 1 type: Transform - - uid: 159 + - uid: 208 components: - - pos: 0.5,-6.5 + - pos: -1.5,-3.5 parent: 1 type: Transform - - uid: 160 + - uid: 209 components: - - pos: 0.5,-7.5 + - pos: -0.5,-4.5 parent: 1 type: Transform - - uid: 161 + - uid: 210 components: - - pos: 0.5,-8.5 + - pos: -7.5,-3.5 parent: 1 type: Transform - - uid: 162 + - uid: 211 components: - - pos: 0.5,-9.5 + - pos: -8.5,-3.5 parent: 1 type: Transform - - uid: 163 + - uid: 212 components: - - pos: 0.5,-10.5 + - pos: -9.5,-3.5 parent: 1 type: Transform - - uid: 164 + - uid: 219 components: - - pos: 0.5,-11.5 + - pos: -3.5,-10.5 parent: 1 type: Transform - - uid: 165 + - uid: 220 components: - - pos: -0.5,-10.5 + - pos: -2.5,-10.5 parent: 1 type: Transform - - uid: 166 + - uid: 221 components: - pos: -1.5,-10.5 parent: 1 type: Transform - - uid: 167 + - uid: 222 components: - - pos: -2.5,-10.5 + - pos: 0.5,-10.5 parent: 1 type: Transform - - uid: 168 + - uid: 223 components: - pos: 1.5,-10.5 parent: 1 type: Transform - - uid: 169 + - uid: 224 components: - - pos: 2.5,-10.5 + - pos: -3.5,-7.5 parent: 1 type: Transform - - uid: 170 + - uid: 225 components: - - pos: 1.5,-9.5 + - pos: -4.5,-7.5 parent: 1 type: Transform - - uid: 171 + - uid: 227 components: - - pos: 0.5,-1.5 + - pos: 1.5,-3.5 parent: 1 type: Transform - - uid: 172 + - uid: 228 components: - - pos: 0.5,-0.5 + - pos: 2.5,-3.5 parent: 1 type: Transform - - uid: 173 + - uid: 229 components: - - pos: 0.5,0.5 + - pos: 3.5,-7.5 parent: 1 type: Transform - - uid: 174 + - uid: 230 components: - - pos: 0.5,1.5 + - pos: 3.5,-6.5 parent: 1 type: Transform - - uid: 175 + - uid: 231 components: - - pos: 0.5,2.5 + - pos: 4.5,-0.5 parent: 1 type: Transform - - uid: 176 + - uid: 232 components: - - pos: -0.5,2.5 + - pos: -0.5,1.5 parent: 1 type: Transform - - uid: 177 + - uid: 233 components: - - pos: -1.5,2.5 + - pos: -0.5,0.5 parent: 1 type: Transform - - uid: 178 + - uid: 234 components: - - pos: -1.5,3.5 + - pos: 3.5,1.5 parent: 1 type: Transform - - uid: 179 + - uid: 235 components: - - pos: -1.5,4.5 + - pos: 3.5,0.5 parent: 1 type: Transform - - uid: 180 + - uid: 240 components: - - pos: -1.5,5.5 + - pos: -2.5,-5.5 parent: 1 type: Transform - - uid: 181 + - uid: 322 components: - - pos: -1.5,6.5 + - pos: 0.5,5.5 parent: 1 type: Transform - - uid: 182 + - uid: 328 components: - - pos: -0.5,6.5 + - pos: 7.5,-2.5 parent: 1 type: Transform - - uid: 183 + - uid: 331 components: - pos: 0.5,6.5 parent: 1 type: Transform - - uid: 184 + - uid: 352 components: - pos: 1.5,6.5 parent: 1 type: Transform - - uid: 185 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 186 + - uid: 353 components: - - pos: -0.5,8.5 + - pos: 1.5,10.5 parent: 1 type: Transform - - uid: 187 + - uid: 435 components: - - pos: -0.5,9.5 + - pos: 2.5,6.5 parent: 1 type: Transform - - uid: 188 + - uid: 441 components: - - pos: 0.5,9.5 + - pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 189 + - uid: 450 components: - - pos: 1.5,9.5 + - pos: -0.5,5.5 parent: 1 type: Transform - - uid: 190 + - uid: 452 components: - - pos: -0.5,10.5 + - pos: -1.5,9.5 parent: 1 type: Transform - - uid: 191 + - uid: 469 components: - - pos: 1.5,8.5 + - pos: 3.5,-5.5 parent: 1 type: Transform - - uid: 192 + - uid: 496 components: - - pos: 2.5,8.5 + - pos: -7.5,-2.5 parent: 1 type: Transform - - uid: 193 + - uid: 497 components: - - pos: -0.5,11.5 + - pos: -7.5,-1.5 parent: 1 type: Transform - proto: CableHV entities: - - uid: 194 + - uid: 37 components: - - pos: 3.5,-10.5 + - pos: -5.5,0.5 parent: 1 type: Transform - - uid: 195 + - uid: 73 components: - - pos: -2.5,4.5 + - pos: -4.5,-0.5 parent: 1 type: Transform - - uid: 196 + - uid: 74 components: - - pos: -2.5,5.5 + - pos: -5.5,-0.5 parent: 1 type: Transform - - uid: 197 + - uid: 75 components: - - pos: -5.5,-7.5 + - pos: -3.5,-0.5 parent: 1 type: Transform - - uid: 198 + - uid: 76 components: - - pos: -3.5,5.5 + - pos: 5.5,0.5 parent: 1 type: Transform - - uid: 199 + - uid: 77 components: - - pos: -3.5,-11.5 + - pos: 4.5,-0.5 parent: 1 type: Transform - - uid: 200 + - uid: 101 components: - - pos: -3.5,-9.5 + - pos: 2.5,4.5 parent: 1 type: Transform - - uid: 201 + - uid: 102 components: - - pos: -3.5,-10.5 + - pos: 2.5,3.5 parent: 1 type: Transform - - uid: 202 + - uid: 103 components: - - pos: -3.5,4.5 + - pos: -0.5,-5.5 parent: 1 type: Transform - - uid: 203 + - uid: 124 components: - - pos: 3.5,-11.5 + - pos: -0.5,-4.5 parent: 1 type: Transform - - uid: 204 + - uid: 125 components: - - pos: 3.5,-9.5 + - pos: 8.5,-3.5 parent: 1 type: Transform - - uid: 205 + - uid: 126 components: - - pos: -3.5,6.5 + - pos: 9.5,-3.5 parent: 1 type: Transform - - uid: 206 + - uid: 127 components: - - pos: -2.5,6.5 + - pos: 10.5,-3.5 parent: 1 type: Transform - - uid: 207 + - uid: 128 components: - - pos: -1.5,6.5 + - pos: 11.5,-3.5 parent: 1 type: Transform - - uid: 208 + - uid: 135 components: - - pos: -1.5,5.5 + - pos: 5.5,-9.5 parent: 1 type: Transform - - uid: 209 + - uid: 136 components: - - pos: -1.5,4.5 + - pos: 5.5,-8.5 parent: 1 type: Transform - - uid: 210 + - uid: 137 components: - - pos: -1.5,7.5 + - pos: 4.5,-8.5 parent: 1 type: Transform - - uid: 211 + - uid: 138 components: - - pos: -1.5,8.5 + - pos: 4.5,-7.5 parent: 1 type: Transform - - uid: 212 + - uid: 139 components: - - pos: -1.5,3.5 + - pos: 3.5,-7.5 parent: 1 type: Transform - - uid: 213 + - uid: 140 components: - - pos: -1.5,2.5 + - pos: 0.5,-7.5 parent: 1 type: Transform - - uid: 214 + - uid: 141 components: - - pos: -1.5,1.5 + - pos: -0.5,-7.5 parent: 1 type: Transform - - uid: 215 + - uid: 142 components: - - pos: -1.5,0.5 + - pos: -0.5,-6.5 parent: 1 type: Transform - - uid: 216 + - uid: 143 components: - - pos: -1.5,-0.5 + - pos: 2.5,-7.5 parent: 1 type: Transform - - uid: 217 + - uid: 144 components: - - pos: -1.5,-1.5 + - pos: 1.5,-7.5 parent: 1 type: Transform - - uid: 218 + - uid: 182 components: - - pos: -1.5,-2.5 + - pos: 7.5,-3.5 parent: 1 type: Transform - - uid: 219 + - uid: 183 components: - - pos: -1.5,-3.5 + - pos: 6.5,-3.5 parent: 1 type: Transform - - uid: 220 + - uid: 213 components: - - pos: -1.5,-4.5 + - pos: 0.5,9.5 parent: 1 type: Transform - - uid: 221 + - uid: 214 components: - - pos: -1.5,-5.5 + - pos: -0.5,5.5 parent: 1 type: Transform - - uid: 222 + - uid: 215 components: - - pos: -1.5,-6.5 + - pos: -0.5,6.5 parent: 1 type: Transform - - uid: 223 + - uid: 216 components: - - pos: -1.5,-7.5 + - pos: -0.5,7.5 parent: 1 type: Transform - - uid: 224 + - uid: 217 components: - - pos: 1.5,-7.5 + - pos: -0.5,8.5 parent: 1 type: Transform - - uid: 225 + - uid: 218 components: - - pos: -2.5,-2.5 + - pos: -0.5,9.5 parent: 1 type: Transform - uid: 226 components: - - pos: -3.5,-2.5 + - pos: 3.5,-0.5 parent: 1 type: Transform - - uid: 227 + - uid: 236 components: - - pos: -4.5,-2.5 + - pos: 2.5,10.5 parent: 1 type: Transform - - uid: 228 + - uid: 239 components: - - pos: -5.5,-2.5 + - pos: -0.5,4.5 parent: 1 type: Transform - - uid: 229 + - uid: 241 components: - - pos: -0.5,-2.5 + - pos: 2.5,1.5 parent: 1 type: Transform - - uid: 230 + - uid: 278 components: - - pos: 0.5,-2.5 + - pos: 3.5,-3.5 parent: 1 type: Transform - - uid: 231 + - uid: 281 components: - - pos: 1.5,-2.5 + - pos: -12.5,-5.5 parent: 1 type: Transform - - uid: 232 + - uid: 282 components: - - pos: 2.5,-2.5 + - pos: -12.5,-4.5 parent: 1 type: Transform - - uid: 233 + - uid: 283 components: - - pos: 3.5,-2.5 + - pos: -12.5,-3.5 parent: 1 type: Transform - - uid: 234 + - uid: 284 components: - - pos: 4.5,-2.5 + - pos: -12.5,-2.5 parent: 1 type: Transform - - uid: 235 + - uid: 294 components: - - pos: -2.5,-5.5 + - pos: 12.5,-5.5 parent: 1 type: Transform - - uid: 236 + - uid: 295 components: - - pos: -3.5,-5.5 + - pos: 12.5,-4.5 parent: 1 type: Transform - - uid: 237 + - uid: 296 components: - - pos: -4.5,-5.5 + - pos: 12.5,-3.5 parent: 1 type: Transform - - uid: 238 + - uid: 297 components: - - pos: -0.5,-5.5 + - pos: 12.5,-2.5 parent: 1 type: Transform - - uid: 239 + - uid: 298 components: - - pos: 0.5,-5.5 + - pos: 1.5,9.5 parent: 1 type: Transform - - uid: 240 + - uid: 300 components: - - pos: 1.5,-5.5 + - pos: 1.5,11.5 parent: 1 type: Transform - - uid: 241 + - uid: 303 components: - - pos: 2.5,-5.5 + - pos: -1.5,11.5 parent: 1 type: Transform - - uid: 242 + - uid: 304 components: - - pos: 3.5,-5.5 + - pos: -2.5,11.5 parent: 1 type: Transform - - uid: 243 + - uid: 305 components: - - pos: 4.5,-5.5 + - pos: 2.5,11.5 parent: 1 type: Transform - - uid: 244 + - uid: 306 components: - - pos: -2.5,0.5 + - pos: 1.5,12.5 parent: 1 type: Transform - - uid: 245 + - uid: 307 components: - - pos: -3.5,0.5 + - pos: 0.5,12.5 parent: 1 type: Transform - - uid: 246 + - uid: 308 components: - - pos: -4.5,0.5 + - pos: -0.5,12.5 parent: 1 type: Transform - - uid: 247 + - uid: 309 components: - - pos: -5.5,0.5 + - pos: -1.5,12.5 parent: 1 type: Transform - - uid: 248 + - uid: 311 components: - - pos: -0.5,0.5 + - pos: 2.5,9.5 parent: 1 type: Transform - - uid: 249 + - uid: 312 components: - - pos: 0.5,0.5 + - pos: 2.5,8.5 parent: 1 type: Transform - - uid: 250 + - uid: 313 components: - - pos: 1.5,0.5 + - pos: 5.5,-3.5 parent: 1 type: Transform - - uid: 251 + - uid: 319 components: - - pos: 2.5,0.5 + - pos: -11.5,-3.5 parent: 1 type: Transform - - uid: 252 + - uid: 320 components: - - pos: 3.5,0.5 + - pos: -10.5,-3.5 parent: 1 type: Transform - - uid: 253 + - uid: 321 components: - - pos: 4.5,0.5 + - pos: -0.5,-0.5 parent: 1 type: Transform - - uid: 254 + - uid: 323 components: - - pos: 5.5,0.5 + - pos: -4.5,-3.5 parent: 1 type: Transform - - uid: 255 + - uid: 324 components: - - pos: -1.5,-8.5 + - pos: -5.5,-3.5 parent: 1 type: Transform - - uid: 256 + - uid: 329 components: - - pos: -2.5,-8.5 + - pos: -2.5,-3.5 parent: 1 type: Transform - - uid: 257 + - uid: 350 components: - - pos: -3.5,-8.5 + - pos: 2.5,-3.5 parent: 1 type: Transform - - uid: 258 + - uid: 351 components: - - pos: -4.5,-8.5 + - pos: 1.5,-3.5 parent: 1 type: Transform - - uid: 259 + - uid: 357 components: - - pos: -5.5,-8.5 + - pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 260 + - uid: 358 components: - - pos: -0.5,-8.5 + - pos: -1.5,-0.5 parent: 1 type: Transform - - uid: 261 + - uid: 359 components: - - pos: 0.5,-8.5 + - pos: 2.5,0.5 parent: 1 type: Transform - - uid: 262 + - uid: 360 components: - - pos: 1.5,-8.5 + - pos: 2.5,7.5 parent: 1 type: Transform - - uid: 263 + - uid: 361 components: - - pos: 2.5,-8.5 + - pos: 2.5,6.5 parent: 1 type: Transform - - uid: 264 + - uid: 362 components: - - pos: 3.5,-8.5 + - pos: 2.5,5.5 parent: 1 type: Transform - - uid: 265 + - uid: 363 components: - - pos: 4.5,-8.5 + - pos: -9.5,-3.5 parent: 1 type: Transform - - uid: 266 + - uid: 378 components: - - pos: 5.5,-8.5 + - pos: -0.5,-3.5 parent: 1 type: Transform - - uid: 267 + - uid: 379 components: - - pos: 0.5,8.5 + - pos: -1.5,-3.5 parent: 1 type: Transform - - uid: 268 + - uid: 380 components: - - pos: -0.5,6.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - - uid: 269 + - uid: 381 components: - - pos: 0.5,6.5 + - pos: 2.5,-0.5 parent: 1 type: Transform - - uid: 270 + - uid: 382 components: - - pos: 1.5,6.5 + - pos: -3.5,-3.5 parent: 1 type: Transform - - uid: 271 + - uid: 383 components: - - pos: 1.5,7.5 + - pos: -0.5,-2.5 parent: 1 type: Transform - - uid: 272 + - uid: 384 components: - - pos: 1.5,8.5 + - pos: -0.5,-1.5 parent: 1 type: Transform - - uid: 273 + - uid: 392 components: - - pos: -7.5,-6.5 + - pos: -7.5,-3.5 parent: 1 type: Transform - - uid: 274 + - uid: 405 components: - - pos: -6.5,-6.5 + - pos: -6.5,-3.5 parent: 1 type: Transform - - uid: 275 + - uid: 416 components: - - pos: -5.5,-6.5 + - pos: -8.5,-3.5 parent: 1 type: Transform - - uid: 276 + - uid: 436 components: - - pos: -8.5,-6.5 + - pos: 0.5,-3.5 parent: 1 type: Transform - - uid: 277 + - uid: 443 components: - - pos: -9.5,-6.5 + - pos: 5.5,-0.5 parent: 1 type: Transform - - uid: 278 + - uid: 444 components: - - pos: -10.5,-6.5 + - pos: 2.5,2.5 parent: 1 type: Transform - - uid: 279 + - uid: 445 components: - - pos: -11.5,-6.5 + - pos: 1.5,-0.5 parent: 1 type: Transform - - uid: 280 + - uid: 453 components: - - pos: -12.5,-6.5 + - pos: 4.5,-3.5 parent: 1 type: Transform - - uid: 281 + - uid: 466 components: - - pos: -12.5,-5.5 + - pos: 1.5,4.5 parent: 1 type: Transform - - uid: 282 +- proto: CableMV + entities: + - uid: 35 components: - - pos: -12.5,-4.5 + - pos: -2.5,-7.5 parent: 1 type: Transform - - uid: 283 + - uid: 38 components: - - pos: -12.5,-3.5 + - pos: 1.5,4.5 parent: 1 type: Transform - - uid: 284 + - uid: 153 components: - - pos: -12.5,-2.5 + - pos: -5.5,-3.5 parent: 1 type: Transform - - uid: 285 + - uid: 154 components: - - pos: 5.5,-7.5 + - pos: -3.5,-3.5 parent: 1 type: Transform - - uid: 286 + - uid: 155 components: - - pos: 5.5,-6.5 + - pos: -0.5,-3.5 parent: 1 type: Transform - - uid: 287 + - uid: 156 components: - - pos: 6.5,-6.5 + - pos: 1.5,-3.5 parent: 1 type: Transform - - uid: 288 + - uid: 157 components: - - pos: 7.5,-6.5 + - pos: -0.5,-6.5 parent: 1 type: Transform - - uid: 289 + - uid: 158 components: - - pos: 8.5,-6.5 + - pos: -2.5,-6.5 parent: 1 type: Transform - - uid: 290 + - uid: 159 components: - - pos: 9.5,-6.5 + - pos: 2.5,-3.5 parent: 1 type: Transform - - uid: 291 + - uid: 168 components: - - pos: 10.5,-6.5 + - pos: -0.5,-0.5 parent: 1 type: Transform - - uid: 292 + - uid: 169 components: - - pos: 11.5,-6.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - - uid: 293 + - uid: 170 components: - - pos: 12.5,-6.5 + - pos: -1.5,-0.5 parent: 1 type: Transform - - uid: 294 + - uid: 171 components: - - pos: 12.5,-5.5 + - pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 295 + - uid: 172 components: - - pos: 12.5,-4.5 + - pos: 1.5,6.5 parent: 1 type: Transform - - uid: 296 + - uid: 190 components: - - pos: 12.5,-3.5 + - pos: 0.5,0.5 parent: 1 type: Transform - - uid: 297 + - uid: 191 components: - - pos: 12.5,-2.5 + - pos: 0.5,1.5 parent: 1 type: Transform - - uid: 298 + - uid: 192 components: - - pos: 1.5,9.5 + - pos: 0.5,2.5 parent: 1 type: Transform - - uid: 299 + - uid: 193 components: - - pos: 1.5,10.5 + - pos: 5.5,-3.5 parent: 1 type: Transform - - uid: 300 + - uid: 194 components: - - pos: 1.5,11.5 + - pos: 0.5,3.5 parent: 1 type: Transform - - uid: 301 + - uid: 195 components: - - pos: 0.5,11.5 + - pos: 0.5,4.5 parent: 1 type: Transform - - uid: 302 + - uid: 196 components: - - pos: -0.5,11.5 + - pos: 0.5,5.5 parent: 1 type: Transform - - uid: 303 + - uid: 197 components: - - pos: -1.5,11.5 + - pos: 0.5,6.5 parent: 1 type: Transform - - uid: 304 + - uid: 198 components: - - pos: -2.5,11.5 + - pos: 0.5,7.5 parent: 1 type: Transform - - uid: 305 + - uid: 199 components: - - pos: 2.5,11.5 + - pos: 0.5,8.5 parent: 1 type: Transform - - uid: 306 + - uid: 237 components: - - pos: 1.5,12.5 + - pos: 4.5,-3.5 parent: 1 type: Transform - - uid: 307 + - uid: 238 components: - - pos: 0.5,12.5 + - pos: 3.5,-3.5 parent: 1 type: Transform - - uid: 308 + - uid: 272 components: - - pos: -0.5,12.5 + - pos: -4.5,-3.5 parent: 1 type: Transform - - uid: 309 + - uid: 273 components: - - pos: -1.5,12.5 + - pos: -2.5,-3.5 parent: 1 type: Transform - - uid: 310 + - uid: 274 components: - - pos: -0.5,4.5 + - pos: -0.5,-5.5 parent: 1 type: Transform - - uid: 311 + - uid: 275 components: - - pos: 2.5,9.5 + - pos: -2.5,-5.5 parent: 1 type: Transform - - uid: 312 + - uid: 339 components: - - pos: 2.5,8.5 + - pos: 1.5,-7.5 parent: 1 type: Transform - - uid: 313 + - uid: 340 components: - - pos: 5.5,-9.5 + - pos: -1.5,-7.5 parent: 1 type: Transform -- proto: CableMV - entities: - - uid: 314 + - uid: 389 components: - - pos: 2.5,8.5 + - pos: 0.5,-7.5 parent: 1 type: Transform - - uid: 315 + - uid: 390 components: - - pos: 1.5,-7.5 + - pos: -0.5,-7.5 parent: 1 type: Transform - - uid: 316 + - uid: 442 components: - - pos: 0.5,-7.5 + - pos: -0.5,-4.5 parent: 1 type: Transform - - uid: 317 + - uid: 454 components: - - pos: -0.5,-7.5 + - pos: -1.5,-3.5 parent: 1 type: Transform - - uid: 318 + - uid: 459 components: - - pos: -1.5,-7.5 + - pos: 0.5,-3.5 parent: 1 type: Transform - - uid: 319 + - uid: 498 components: - - pos: -1.5,-6.5 + - pos: -6.5,-3.5 parent: 1 type: Transform - - uid: 320 + - uid: 499 components: - - pos: -1.5,-5.5 + - pos: -7.5,-3.5 parent: 1 type: Transform - - uid: 321 + - uid: 500 components: - - pos: -1.5,-4.5 + - pos: -7.5,-2.5 parent: 1 type: Transform - - uid: 322 + - uid: 501 components: - - pos: -1.5,8.5 + - pos: -7.5,-1.5 parent: 1 type: Transform - - uid: 323 + - uid: 502 components: - - pos: -1.5,7.5 + - pos: 7.5,-1.5 parent: 1 type: Transform - - uid: 324 + - uid: 503 components: - - pos: -1.5,6.5 + - pos: 7.5,-2.5 parent: 1 type: Transform - - uid: 325 + - uid: 504 components: - - pos: -1.5,5.5 + - pos: 7.5,-3.5 parent: 1 type: Transform - - uid: 326 + - uid: 505 components: - - pos: -1.5,4.5 + - pos: 6.5,-3.5 parent: 1 type: Transform - - uid: 327 +- proto: CableTerminal + entities: + - uid: 364 components: - - pos: -1.5,3.5 + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 parent: 1 type: Transform - - uid: 328 +- proto: CargoPallet + entities: + - uid: 365 components: - - pos: -1.5,2.5 + - pos: -9.5,-2.5 parent: 1 type: Transform - - uid: 329 + - uid: 366 components: - - pos: -1.5,1.5 + - pos: 9.5,-5.5 parent: 1 type: Transform - - uid: 330 + - uid: 367 components: - - pos: -1.5,0.5 + - pos: -9.5,-5.5 parent: 1 type: Transform - - uid: 331 + - uid: 368 components: - - pos: -1.5,-0.5 + - pos: 9.5,-2.5 parent: 1 type: Transform - - uid: 332 +- proto: Catwalk + entities: + - uid: 369 components: - - pos: -1.5,-1.5 + - pos: -0.5,7.5 parent: 1 type: Transform - - uid: 333 + - uid: 370 components: - - pos: -1.5,-2.5 + - pos: 0.5,5.5 parent: 1 type: Transform - - uid: 334 + - uid: 371 components: - - pos: -1.5,-3.5 + - pos: 0.5,4.5 parent: 1 type: Transform - - uid: 335 + - uid: 372 components: - - pos: -2.5,-3.5 + - pos: -0.5,5.5 parent: 1 type: Transform - - uid: 336 + - uid: 373 components: - - pos: -3.5,-3.5 + - pos: -0.5,6.5 parent: 1 type: Transform - - uid: 337 +- proto: ChairOfficeDark + entities: + - uid: 374 components: - - pos: -4.5,-3.5 + - pos: 3.5,-7.5 parent: 1 type: Transform - - uid: 338 +- proto: ChairPilotSeat + entities: + - uid: 375 components: - - pos: -5.5,-3.5 + - rot: 3.141592653589793 rad + pos: 0.5,10.5 parent: 1 type: Transform - - uid: 339 + - uid: 376 components: - - pos: -6.5,-3.5 + - rot: 3.141592653589793 rad + pos: -1.5,10.5 parent: 1 type: Transform - - uid: 340 +- proto: CheckerBoard + entities: + - uid: 377 components: - - pos: -7.5,-3.5 + - pos: -1.9841328,2.5913696 parent: 1 type: Transform - - uid: 341 +- proto: ClothingOuterWinterPara + entities: + - uid: 395 components: - - pos: -7.5,-2.5 + - pos: 2.53125,-6.401108 parent: 1 type: Transform - - uid: 342 - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 343 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 344 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 345 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 346 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 347 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 348 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 349 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 350 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 351 - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 352 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform - - uid: 354 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 356 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 357 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 358 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 359 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 360 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 362 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform -- proto: CableTerminal +- proto: ComputerSalvageExpedition entities: - - uid: 364 + - uid: 402 components: - rot: 1.5707963267948966 rad - pos: 1.5,9.5 + pos: -2.5,9.5 parent: 1 type: Transform -- proto: CargoPallet +- proto: ComputerShuttle entities: - - uid: 365 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 368 + - uid: 403 components: - - pos: 9.5,-2.5 + - pos: 0.5,11.5 parent: 1 type: Transform -- proto: Catwalk +- proto: ComputerStationRecords entities: - - uid: 369 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 370 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 373 + - uid: 401 components: - - pos: -0.5,6.5 + - pos: -1.5,11.5 parent: 1 type: Transform -- proto: ChairOfficeDark +- proto: DefibrillatorCabinetFilled entities: - - uid: 374 + - uid: 487 components: - - pos: 3.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 parent: 1 type: Transform -- proto: ChairPilotSeat +- proto: DiceBag entities: - - uid: 375 + - uid: 407 components: - - rot: 3.141592653589793 rad - pos: 0.5,10.5 + - pos: -1.3747578,2.6226196 parent: 1 type: Transform - - uid: 376 +- proto: EmergencyLight + entities: + - uid: 68 components: - rot: 3.141592653589793 rad - pos: -1.5,10.5 + pos: 1.5,-4.5 parent: 1 type: Transform -- proto: CheckerBoard - entities: - - uid: 377 + - uid: 406 components: - - pos: -1.9841328,2.5913696 + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 parent: 1 type: Transform -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 379 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 380 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesCombat - entities: - - uid: 381 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHeadHatHoshat - entities: - - uid: 382 - components: - - flags: InContainer - desc: There's a new bounty hunter in the sector. - name: bounty hunter's hat - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 383 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterCoatHoSTrench - entities: - - uid: 384 - components: - - flags: InContainer - desc: A greatcoat enhanced with a special alloy for some extra protection and style for those with a charismatic presence. - name: bounty hunter's flak trenchcoat - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitBasic - entities: - - uid: 385 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]15%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: This decreases your speed by [color=yellow]20%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - type: GroupExamine - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterPara - entities: - - uid: 395 + - uid: 409 components: - - pos: 2.6429324,-6.3159156 + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 parent: 1 type: Transform -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 386 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 387 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 388 - components: - - flags: InContainer - type: MetaData - - parent: 378 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ComputerBroken - entities: - - uid: 401 + - uid: 471 components: - - pos: -1.5,11.5 + - rot: 3.141592653589793 rad + pos: 0.5,9.5 parent: 1 type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 402 + - uid: 479 components: - rot: 1.5707963267948966 rad - pos: -2.5,9.5 + pos: -1.5,-0.5 parent: 1 type: Transform -- proto: ComputerShuttle - entities: - - uid: 403 + - uid: 484 components: - - pos: 0.5,11.5 + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 parent: 1 type: Transform -- proto: ComputerStationRecords - entities: - - uid: 404 + - uid: 485 components: - rot: 3.141592653589793 rad - pos: 3.5,-8.5 + pos: -11.5,-5.5 parent: 1 type: Transform -- proto: CrateFoodCooking - entities: - - uid: 394 + - uid: 486 components: - - pos: 3.5,1.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 406 + - uid: 488 components: - rot: 3.141592653589793 rad - pos: 2.5,-9.5 + pos: 2.5,-8.5 parent: 1 type: Transform -- proto: DiceBag +- proto: ExtinguisherCabinetFilled entities: - - uid: 407 + - uid: 408 components: - - pos: -1.3747578,2.6226196 + - rot: 3.141592653589793 rad + pos: -1.5,8.5 parent: 1 type: Transform -- proto: DrinkNuclearColaGlass - entities: - - uid: 409 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 410 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: FaxMachineShip entities: - uid: 417 @@ -3206,6 +2761,20 @@ entities: - pos: -1.5,-6.5 parent: 1 type: Transform +- proto: Firelock + entities: + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform - proto: FirelockEdge entities: - uid: 419 @@ -3224,1079 +2793,951 @@ entities: components: - rot: 1.5707963267948966 rad pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 422 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 424 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 425 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 426 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 427 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- proto: FloorDrain - entities: - - uid: 428 - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 429 - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FoodBreadMoldy - entities: - - uid: 430 - components: - - pos: -0.5628208,11.671696 - parent: 1 - type: Transform -- proto: FoodBreadMoldySlice - entities: - - uid: 411 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 412 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: FoodPizzaMoldySlice - entities: - - uid: 413 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 414 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 415 - components: - - flags: InContainer - type: MetaData - - parent: 408 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: GasDualPortVentPump - entities: - - uid: 431 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 432 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 433 + parent: 1 + type: Transform + - uid: 422 components: - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 + pos: 2.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 434 + - uid: 423 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 + - pos: -3.5,-1.5 parent: 1 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasMixerFlipped +- proto: FirelockGlass entities: - - uid: 435 + - uid: 69 components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPassiveVent - entities: - - uid: 436 + - uid: 424 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 425 components: - rot: 1.5707963267948966 rad - pos: -5.5,3.5 + pos: 4.5,-2.5 parent: 1 type: Transform - - uid: 437 + - uid: 426 components: - - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + - pos: 1.5,-0.5 parent: 1 type: Transform -- proto: GasPipeBend - entities: - - uid: 438 + - uid: 427 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + - pos: 1.5,-1.5 parent: 1 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 439 + - uid: 481 components: - - pos: -2.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 440 + - uid: 489 components: - rot: -1.5707963267948966 rad - pos: 1.5,2.5 + pos: -0.5,-2.5 parent: 1 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 441 + - uid: 490 components: - - pos: -3.5,3.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-2.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 442 + - uid: 491 components: - - rot: 3.141592653589793 rad - pos: -3.5,2.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 443 + - uid: 492 components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 444 + - uid: 494 components: - rot: -1.5707963267948966 rad - pos: 3.5,2.5 + pos: -0.5,8.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 445 +- proto: FloorDrain + entities: + - uid: 428 components: - - pos: -1.5,2.5 + - pos: 2.5,-10.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 446 + - fixtures: {} + type: Fixtures + - uid: 429 components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 + - pos: -4.5,0.5 parent: 1 type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 447 + - fixtures: {} + type: Fixtures +- proto: FoodBreadMoldy + entities: + - uid: 430 + components: + - pos: -0.5628208,11.671696 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 175 components: - rot: 3.141592653589793 rad - pos: -1.5,1.5 + pos: -0.5,-10.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 448 +- proto: GasPassiveGate + entities: + - uid: 388 components: - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 + pos: -6.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 449 +- proto: GasPassiveVent + entities: + - uid: 349 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 450 +- proto: GasPipeBend + entities: + - uid: 173 components: - - pos: 2.5,-3.5 + - pos: 0.5,-10.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 451 + - uid: 345 components: - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 + pos: 7.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 452 + - uid: 347 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 453 +- proto: GasPipeFourway + entities: + - uid: 268 components: - - pos: 2.5,-2.5 + - pos: -0.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 454 + - uid: 269 components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + - pos: 0.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 455 +- proto: GasPipeStraight + entities: + - uid: 39 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 456 + - uid: 78 components: - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 + pos: 1.5,5.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 457 + - uid: 100 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + - pos: -0.5,6.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 458 + - uid: 148 components: - rot: 3.141592653589793 rad - pos: 2.5,-6.5 + pos: 0.5,8.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 459 + - uid: 149 components: - rot: 3.141592653589793 rad - pos: 1.5,-7.5 + pos: 0.5,7.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 460 + - uid: 150 components: - - pos: 1.5,-6.5 + - rot: 3.141592653589793 rad + pos: 0.5,6.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 461 + - uid: 151 components: - - pos: -0.5,7.5 + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 462 + - uid: 152 components: - - pos: -0.5,-3.5 + - pos: 0.5,4.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 463 + - uid: 242 components: - - pos: 1.5,-3.5 + - pos: 0.5,-6.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 464 + - uid: 243 components: - - pos: 0.5,5.5 + - pos: 0.5,-5.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 465 + - uid: 244 components: - - rot: 3.141592653589793 rad - pos: -0.5,-7.5 + - pos: 0.5,-4.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 466 + - uid: 245 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 467 + - uid: 247 components: - - pos: 2.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 468 + - uid: 248 components: - - rot: 3.141592653589793 rad - pos: 2.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 469 + - uid: 249 components: - - pos: -2.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 470 + - uid: 250 components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 471 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 472 + - uid: 252 components: - rot: -1.5707963267948966 rad - pos: 0.5,2.5 + pos: -2.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 473 + - uid: 253 components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 474 + - uid: 254 components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 475 + - uid: 257 components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 476 + - uid: 258 components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 + - pos: -4.5,-3.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 477 + - uid: 259 components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 + - pos: -0.5,-3.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 478 + - uid: 260 components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 + - pos: -0.5,-1.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 479 + - uid: 261 components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 + - pos: -0.5,1.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 480 + - uid: 262 components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 + - pos: -0.5,2.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 481 + - uid: 263 components: - - pos: -0.5,0.5 + - pos: -0.5,3.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 482 + - uid: 264 components: - - pos: -0.5,-0.5 + - pos: -0.5,4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 483 + - uid: 265 components: - - pos: -0.5,-1.5 + - pos: -0.5,5.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 484 + - uid: 266 components: - - pos: -0.5,-2.5 + - pos: -0.5,8.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 485 + - uid: 267 components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 + - pos: -0.5,0.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 486 + - uid: 270 components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 + - pos: 0.5,-2.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 487 + - uid: 271 components: - - rot: 3.141592653589793 rad - pos: 1.5,-2.5 + - pos: 0.5,-1.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 488 + - uid: 277 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 489 + - uid: 279 components: - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 + pos: -0.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 490 + - uid: 280 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 + - pos: 0.5,2.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 491 + - uid: 287 components: - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 + pos: -4.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 492 + - uid: 293 components: - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 + pos: -8.5,-4.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 493 + - uid: 301 components: - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 + pos: 8.5,-4.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 494 + - uid: 302 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 495 + - uid: 310 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 + - pos: -4.5,-2.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 496 + - uid: 314 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 497 + - uid: 315 components: - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 + pos: 3.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 498 + - uid: 316 components: - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 + pos: 4.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 499 + - uid: 318 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 parent: 1 type: Transform - - uid: 500 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 325 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 + - pos: 0.5,3.5 parent: 1 type: Transform - - uid: 501 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 326 components: - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 + pos: -3.5,-4.5 parent: 1 type: Transform - - uid: 502 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 327 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 + - pos: -3.5,-2.5 parent: 1 type: Transform - - uid: 503 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 330 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 1 type: Transform - - uid: 504 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 333 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 parent: 1 type: Transform - - uid: 505 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 336 components: - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 + pos: 9.5,-4.5 parent: 1 type: Transform - - uid: 506 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 341 components: - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 + pos: -9.5,-4.5 parent: 1 type: Transform - - uid: 507 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 342 components: - - pos: -0.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 508 + - uid: 343 components: - - pos: -0.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 509 + - uid: 346 components: - - pos: -0.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 510 + - uid: 354 components: - - pos: -0.5,-10.5 + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 511 + - uid: 355 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-10.5 + - pos: -0.5,-6.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 512 + - uid: 432 components: - - pos: 0.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 513 + - uid: 433 components: - - pos: 0.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-4.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 514 + - uid: 434 components: - - pos: 0.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 515 + - uid: 447 components: - rot: -1.5707963267948966 rad - pos: -2.5,2.5 + pos: -6.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 516 + - uid: 448 components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 517 + - uid: 449 components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 518 + - uid: 455 components: - rot: 3.141592653589793 rad - pos: 0.5,6.5 + pos: -0.5,-5.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 519 + - uid: 457 components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 + - pos: 0.5,1.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 520 + - uid: 460 components: - rot: 3.141592653589793 rad - pos: 0.5,8.5 + pos: -0.5,-9.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 521 +- proto: GasPipeTJunction + entities: + - uid: 99 components: - - rot: 3.141592653589793 rad - pos: -2.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 522 + - uid: 147 components: - rot: -1.5707963267948966 rad - pos: 1.5,5.5 + pos: -0.5,7.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 523 + - uid: 246 components: - - pos: 0.5,-6.5 + - pos: -1.5,-3.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 524 + - uid: 251 components: - - pos: -0.5,4.5 + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 525 + - uid: 255 components: - - pos: -0.5,3.5 + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 526 + - uid: 288 components: - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -0.5,-0.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 527 + - uid: 317 components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 528 + - uid: 344 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + - pos: 7.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 529 + - uid: 348 components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 + - pos: -7.5,-4.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 530 + - uid: 356 components: - rot: 3.141592653589793 rad - pos: 0.5,1.5 + pos: -4.5,-4.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 531 + - uid: 400 components: - rot: -1.5707963267948966 rad - pos: 1.5,1.5 + pos: -0.5,-8.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 532 + - uid: 438 components: - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 0.5,0.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 533 +- proto: GasPort + entities: + - uid: 174 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 534 + - uid: 180 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 535 + - uid: 456 components: - rot: 1.5707963267948966 rad - pos: -1.5,7.5 + pos: -2.5,7.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 536 +- proto: GasPressurePump + entities: + - uid: 458 components: - - rot: -1.5707963267948966 rad - pos: 0.5,6.5 + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 parent: 1 type: Transform -- proto: GasPressurePump + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump entities: - - uid: 537 + - uid: 176 components: - rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: -1.5,-8.5 parent: 1 type: Transform - - targetPressure: 4500 - type: GasPressurePump - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 538 + - uid: 289 components: - - rot: -1.5707963267948966 rad - pos: -4.5,3.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 1 type: Transform - - targetPressure: 4500 - type: GasPressurePump - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasVentPump - entities: - - uid: 539 + - uid: 292 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + - pos: 1.5,-3.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 540 + - uid: 332 components: - - pos: 1.5,9.5 + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 541 + - uid: 334 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-3.5 + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 parent: 1 type: Transform - - uid: 542 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 335 components: - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 + pos: 10.5,-4.5 parent: 1 type: Transform - - uid: 543 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 386 components: - - rot: 3.141592653589793 rad - pos: -0.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 parent: 1 type: Transform - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 544 + - uid: 387 components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 + - pos: -0.5,9.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - - uid: 545 + - uid: 431 components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 + - pos: -4.5,-1.5 parent: 1 type: Transform - - uid: 546 + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 285 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 547 + - uid: 286 components: - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 2.5,-7.5 parent: 1 type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 548 + - uid: 290 components: - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: 2.5,5.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 549 + - uid: 291 components: - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -0.5,0.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 550 + - uid: 299 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 + - pos: -7.5,-2.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 551 + - uid: 385 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 + - pos: 7.5,-2.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 552 + - uid: 393 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 553 + - uid: 439 components: - - pos: 0.5,9.5 + - pos: -3.5,-1.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 554 + - uid: 440 components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 + - pos: 0.5,9.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - proto: GravityGeneratorMini entities: - - uid: 555 + - uid: 437 components: - - pos: -2.5,7.5 + - pos: 0.5,6.5 parent: 1 type: Transform - proto: Grille @@ -4412,51 +3853,13 @@ entities: pos: 5.5,-9.5 parent: 1 type: Transform -- proto: GunSafe +- proto: GunSafeShuttleT1Spawner entities: - - uid: 576 + - uid: 70 components: - pos: 3.5,6.5 parent: 1 type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.14975 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 392 - - 390 - - 389 - - 393 - - 579 - - 391 - - 578 - - 577 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: Gyroscope entities: - uid: 580 @@ -4523,18 +3926,21 @@ entities: - pos: 1.501635,10.979151 parent: 1 type: Transform -- proto: IntercomCommand +- proto: IngotGold1 entities: - - uid: 591 + - uid: 463 components: - - pos: -2.5,10.5 + - pos: -2.6976614,2.3970013 parent: 1 type: Transform -- proto: IntercomSecurity - entities: - - uid: 592 + - uid: 464 components: - - pos: 1.5,10.5 + - pos: -2.4656172,2.5517735 + parent: 1 + type: Transform + - uid: 468 + components: + - pos: -2.6460953,2.7065454 parent: 1 type: Transform - proto: KitchenMicrowave @@ -4551,15 +3957,6 @@ entities: - pos: 3.5,-1.5 parent: 1 type: Transform -- proto: LockerFreezerBase - entities: - - uid: 408 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - locked: False - type: Lock - air: volume: 200 immutable: False @@ -4578,55 +3975,41 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 415 - - 414 - - 412 - - 410 - - 411 - - 413 - - 409 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer +- proto: LockerFreezerBase + entities: + - uid: 472 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: LockerMercenaryFilled + entities: + - uid: 276 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform - proto: LockerParamedicFilled entities: - - uid: 595 + - uid: 410 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSalvageSpecialistFilledHardsuit +- proto: LockerSalvageSpecialistFilled entities: - - uid: 596 + - uid: 411 components: - pos: -3.5,-6.5 parent: 1 type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 597 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform - air: volume: 200 immutable: False @@ -4637,56 +4020,19 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWallMedicalFilled - entities: - - uid: 597 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- proto: MagazineBoxMagnum - entities: - - uid: 389 - components: - - flags: InContainer - type: MetaData - - parent: 576 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MedicalBed - entities: - - uid: 598 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- proto: MedicalTrackingImplanter - entities: - - uid: 398 - components: - - pos: 2.646165,4.387697 - parent: 1 - type: Transform - - uid: 399 - components: - - pos: 2.3362565,4.5056906 - parent: 1 - type: Transform -- proto: MedkitCombatFilled + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: MedicalBed entities: - - uid: 599 + - uid: 598 components: - - pos: 2.490187,-6.4109445 + - pos: 5.5,-6.5 parent: 1 type: Transform - proto: Mirror @@ -4705,20 +4051,6 @@ entities: pos: 4.5,-9.5 parent: 1 type: Transform -- proto: NitrogenCanister - entities: - - uid: 602 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 603 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - proto: PaperBin10 entities: - uid: 604 @@ -4847,22 +4179,9 @@ entities: type: Transform - proto: Rack entities: - - uid: 624 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 625 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 626 + - uid: 394 components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 + - pos: 3.5,4.5 parent: 1 type: Transform - uid: 627 @@ -4945,6 +4264,28 @@ entities: type: Transform - proto: RandomSpawner entities: + - uid: 256 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform - uid: 641 components: - pos: -4.5,-1.5 @@ -4995,11 +4336,6 @@ entities: - pos: -2.5,-8.5 parent: 1 type: Transform - - uid: 651 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - uid: 652 components: - pos: 11.5,-2.5 @@ -5020,31 +4356,16 @@ entities: - pos: -11.5,-2.5 parent: 1 type: Transform - - uid: 656 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - uid: 657 components: - pos: 1.5,-3.5 parent: 1 type: Transform - - uid: 658 - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform - uid: 659 components: - pos: -1.5,-10.5 parent: 1 type: Transform - - uid: 660 - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform - uid: 661 components: - pos: 0.5,-8.5 @@ -5060,20 +4381,6 @@ entities: - pos: -0.5,11.5 parent: 1 type: Transform -- proto: RandomVendingDrinks - entities: - - uid: 664 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- proto: RandomVendingSnacks - entities: - - uid: 665 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - proto: ReinforcedWindow entities: - uid: 666 @@ -5243,6 +4550,15 @@ entities: type: DeviceLinkSink - proto: SignalButton entities: + - uid: 412 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 2: + - Pressed: DoorBolt + type: DeviceLinkSource - uid: 693 components: - pos: 1.5,11.5 @@ -5325,19 +4641,18 @@ entities: - pos: -4.5,0.5 parent: 1 type: Transform -- proto: SinkStemlessWater +- proto: SinkStemless entities: - - uid: 703 + - uid: 480 components: - - pos: 2.5,-10.5 + - pos: 3.5,2.5 parent: 1 type: Transform -- proto: SinkWide +- proto: SinkStemlessWater entities: - - uid: 704 + - uid: 703 components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 + - pos: 2.5,-10.5 parent: 1 type: Transform - proto: SMESBasic @@ -5354,55 +4669,6 @@ entities: - pos: 2.6583714,-10.571913 parent: 1 type: Transform -- proto: soda_dispenser - entities: - - uid: 707 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- proto: SpaceCash - entities: - - uid: 708 - components: - - pos: -2.6022344,2.537315 - parent: 1 - type: Transform - - uid: 709 - components: - - pos: -2.4616094,2.6545024 - parent: 1 - type: Transform - - uid: 710 - components: - - pos: -2.6256719,2.77169 - parent: 1 - type: Transform - - uid: 711 - components: - - pos: -2.6959844,2.7951274 - parent: 1 - type: Transform - - uid: 712 - components: - - pos: -2.3912969,2.7013774 - parent: 1 - type: Transform - - uid: 713 - components: - - pos: -2.4616094,2.67794 - parent: 1 - type: Transform - - uid: 714 - components: - - pos: -2.5553594,2.67794 - parent: 1 - type: Transform - - uid: 715 - components: - - pos: -2.5787969,2.818565 - parent: 1 - type: Transform - proto: SpawnPointBartender entities: - uid: 716 @@ -5424,9 +4690,9 @@ entities: type: Transform - proto: SpawnPointMercenary entities: - - uid: 719 + - uid: 398 components: - - pos: 4.5,-1.5 + - pos: 2.5,6.5 parent: 1 type: Transform - proto: SpawnPointParamedic @@ -5438,40 +4704,37 @@ entities: type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 721 + - uid: 415 components: - - pos: -2.5,-6.5 + - pos: -2.5,-7.5 parent: 1 type: Transform -- proto: SpeedLoaderMagnum +- proto: Stairs entities: - - uid: 390 + - uid: 473 components: - - flags: InContainer - type: MetaData - - parent: 576 + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 391 + - uid: 474 components: - - flags: InContainer - type: MetaData - - parent: 576 + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 392 + - uid: 475 components: - - flags: InContainer - type: MetaData - - parent: 576 + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: StoolBar entities: - uid: 722 @@ -5494,30 +4757,32 @@ entities: type: Transform - proto: SubstationWallBasic entities: - - uid: 725 + - uid: 465 components: - - pos: -1.5,8.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 parent: 1 type: Transform - - uid: 726 + - uid: 467 components: - - pos: 1.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 parent: 1 type: Transform -- proto: SuitStorageBase +- proto: SuitStorageEVA entities: - - uid: 378 + - uid: 727 components: - - pos: 3.5,5.5 + - pos: -7.5,-5.5 parent: 1 type: Transform - air: volume: 200 immutable: False - temperature: 293.14966 + temperature: 293.1496 moles: - - 1.8968438 - - 7.1357465 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -5529,34 +4794,29 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 387 - - 384 - - 385 - - 382 - - 388 - - 381 - - 383 - - 379 - - 386 - - 380 - type: ContainerContainer -- proto: SuitStorageEVA - entities: - - uid: 727 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - uid: 728 components: - pos: 7.5,-5.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: SuitStorageEVAPrisoner entities: - uid: 396 @@ -5582,6 +4842,27 @@ entities: - 0 - 0 type: EntityStorage +- proto: SuitStorageMercenary + entities: + - uid: 483 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform +- proto: SuitStorageParamedic + entities: + - uid: 404 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 482 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform - proto: TableCarpet entities: - uid: 729 @@ -5776,18 +5057,6 @@ entities: pos: 2.5,-11.5 parent: 1 type: Transform -- proto: TrackingImplanter - entities: - - uid: 762 - components: - - pos: 3.4641175,4.4740067 - parent: 1 - type: Transform - - uid: 763 - components: - - pos: 3.7141175,4.3958817 - parent: 1 - type: Transform - proto: VendingBarDrobe entities: - uid: 397 @@ -5804,6 +5073,13 @@ entities: - pos: 5.5,-1.5 parent: 1 type: Transform +- proto: VendingMachineBountyVend + entities: + - uid: 413 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 765 @@ -5836,15 +5112,13 @@ entities: - pos: -1.5,3.5 parent: 1 type: Transform -- proto: WallPlastitanium +- proto: WallReinforced entities: - - uid: 769 + - uid: 470 components: - pos: 1.5,-7.5 parent: 1 type: Transform -- proto: WallReinforced - entities: - uid: 770 components: - pos: 1.5,3.5 @@ -6665,28 +5939,6 @@ entities: - pos: 0.5,1.5 parent: 1 type: Transform -- proto: WeaponRevolverMateba - entities: - - uid: 393 - components: - - flags: InContainer - type: MetaData - - parent: 576 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponShotgunSawnEmpty - entities: - - uid: 577 - components: - - flags: InContainer - type: MetaData - - parent: 576 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: Windoor entities: - uid: 924 @@ -6703,4 +5955,11 @@ entities: pos: 1.5,-11.5 parent: 1 type: Transform +- proto: Wrench + entities: + - uid: 391 + components: + - pos: 0.4459281,7.562047 + parent: 1 + type: Transform ... diff --git a/Resources/Maps/_NF/Shuttles/stellaris.yml b/Resources/Maps/_NF/Shuttles/stellaris.yml new file mode 100644 index 00000000000..4a920483df1 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/stellaris.yml @@ -0,0 +1,4734 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 27: FloorDark + 30: FloorDarkHerringbone + 31: FloorDarkMini + 32: FloorDarkMono + 34: FloorDarkPavement + 42: FloorFreezer + 71: FloorRGlass + 72: FloorReinforced + 84: FloorSteel + 85: FloorSteelCheckerDark + 92: FloorSteelMono + 96: FloorTechMaint + 104: FloorWhiteMini + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.453125 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAGwAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAIAAAAAAAcQAAAAAAaAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Arrows + decals: + 63: -5,4 + 64: 5,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 50: -3,4 + 51: -2,4 + 52: 2,4 + 53: 3,4 + 54: 4,4 + 55: -4,4 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 10: 2,10 + 11: 2,10 + 12: 2,11 + 13: 2,11 + 14: 2,12 + 15: 2,12 + - node: + angle: 1.5707963267948966 rad + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 16: 2,12 + 17: 2,12 + 18: 1,12 + 19: 1,12 + 20: 0,12 + 21: 0,12 + 22: -1,12 + 23: -1,12 + 24: -2,12 + 25: -2,12 + - node: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 26: -2,12 + 27: -2,12 + 28: -2,11 + 29: -2,11 + 30: -2,10 + 31: -2,10 + - node: + angle: 4.71238898038469 rad + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 32: -2,10 + 33: -2,10 + 34: -1,10 + 35: -1,10 + 36: 1,10 + 37: 1,10 + 38: 2,10 + 39: 2,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 65: -7,-2 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 68: 7,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 0: 6,-6 + 4: 5,-6 + 5: 5,-5 + 61: -2,4 + 62: 2,4 + 69: 0,-9 + 70: 6,-9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1: 5,-5 + 2: 5,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7: 6,-6 + 8: 6,-6 + 45: -3,0 + 46: 4,1 + 47: 3,0 + 48: -4,2 + 49: -4,1 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 40: -3,2 + 41: -1,1 + 42: -3,0 + 43: 4,2 + 44: 2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 3: 6,-6 + 9: 5,-6 + 56: -4,5 + 57: -2,7 + 58: -3,4 + 59: 2,5 + 60: 5,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6: 5,-6 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 66: -7,-4 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 67: 7,-4 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65531 + 1: 4 + 0,2: + 0: 65535 + 0,3: + 0: 2047 + 1,0: + 0: 30583 + 1,1: + 0: 30583 + 1,2: + 0: 275 + 0,-3: + 0: 65520 + 0,-2: + 0: 65535 + 1,-3: + 0: 40816 + 2: 24576 + 1,-2: + 0: 65529 + 2: 6 + 1,-1: + 0: 65535 + 2,-2: + 0: 4096 + 2,-1: + 0: 4369 + -2,-2: + 0: 65262 + -2,-1: + 0: 65535 + -2,-3: + 0: 61120 + -1,-3: + 0: 65520 + -1,-2: + 0: 65535 + -2,0: + 0: 52428 + -2,1: + 0: 52428 + -2,2: + 0: 8 + -1,1: + 0: 65533 + 1: 2 + -1,2: + 0: 61439 + -1,3: + 0: 3310 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Stellaris + type: BecomesStation +- proto: AcousticGuitarInstrument + entities: + - uid: 418 + components: + - pos: -1.6301081,8.731225 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 584 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 601 + - 481 + - 567 + - 583 + - 582 + - 581 + - 580 + - 569 + type: DeviceNetwork + - devices: + - 580 + - 581 + - 582 + - 583 + - 567 + - 569 + - 481 + - 601 + type: DeviceList + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 519 + - 457 + - 566 + - 598 + type: DeviceNetwork + - devices: + - 519 + - 457 + - 566 + - 598 + type: DeviceList + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 476 + - 595 + - 509 + - 623 + - 622 + type: DeviceNetwork + - devices: + - 476 + - 595 + - 509 + - 623 + - 622 + type: DeviceList + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 594 + - 475 + - 510 + - 620 + - 621 + type: DeviceNetwork + - devices: + - 475 + - 594 + - 510 + - 620 + - 621 + type: DeviceList + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 483 + - 605 + - 596 + - 569 + type: DeviceNetwork + - devices: + - 483 + - 605 + - 596 + - 569 + type: DeviceList + - uid: 589 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 592 + - 497 + - 550 + - 558 + - 559 + - 570 + type: DeviceNetwork + - devices: + - 592 + - 497 + - 550 + - 558 + - 559 + - 570 + type: DeviceList + - uid: 590 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 599 + - 557 + - 507 + - 570 + type: DeviceNetwork + - devices: + - 599 + - 557 + - 507 + - 570 + type: DeviceList + - uid: 591 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 567 + - 583 + - 582 + - 581 + - 580 + - 558 + - 559 + - 466 + - 593 + - 531 + - 568 + - 566 + - 620 + - 621 + - 623 + - 622 + type: DeviceNetwork + - devices: + - 579 + - 578 + - 577 + - 576 + - 575 + - 574 + - 573 + - 572 + - 571 + - 531 + - 593 + - 466 + - 559 + - 558 + - 580 + - 581 + - 582 + - 583 + - 567 + - 568 + - 566 + - 620 + - 621 + - 623 + - 622 + type: DeviceList +- proto: AirCanister + entities: + - uid: 508 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 373 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockFreezer + entities: + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - links: + - 617 + type: DeviceLinkSink + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - links: + - 149 + type: DeviceLinkSink +- proto: AirlockGlassShuttle + entities: + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 592 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + type: DeviceNetwork + - uid: 593 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 594 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + type: DeviceNetwork + - uid: 595 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + type: DeviceNetwork + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 588 + type: DeviceNetwork + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 585 + type: DeviceNetwork + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 216 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 211 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: BenchSofaCorpCorner + entities: + - uid: 560 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - fixtures: {} + type: Fixtures +- proto: BenchSofaCorpLeft + entities: + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpRight + entities: + - uid: 249 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BikeHorn + entities: + - uid: 442 + components: + - pos: -1.6969528,12.535424 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 295 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 256 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 261 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 565 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 251 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 430 + components: + - pos: 4.2663493,4.33391 + parent: 1 + type: Transform +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 428 + components: + - pos: 4.2663493,4.77141 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 4.2663493,4.55266 + parent: 1 + type: Transform +- proto: ClothingHeadHatRedsoft + entities: + - uid: 12 + components: + - pos: -1.25,4.780121 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -1.2395834,4.5924907 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -1.1770834,4.40486 + parent: 1 + type: Transform +- proto: ClothingHeadHatWizardFake + entities: + - uid: 411 + components: + - pos: 2.3544002,12.45782 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitColorRed + entities: + - uid: 436 + components: + - pos: -1.7194183,4.6633625 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -1.7194183,4.5383625 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -1.7194183,4.3977375 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 431 + components: + - pos: 4.7663493,4.67766 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 4.7819743,4.52141 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 4.7819743,4.318285 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 384 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 376 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 381 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateFreezer + entities: + - uid: 210 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform +- proto: CrateFunToyBox + entities: + - uid: 404 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceTheatre + entities: + - uid: 435 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: DrinkCoffee + entities: + - uid: 387 + components: + - pos: -1.2800363,12.516339 + parent: 1 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 402 + components: + - pos: 1.2322425,4.6308975 + parent: 1 + type: Transform +- proto: DrinkMugGreen + entities: + - uid: 606 + components: + - pos: 1.3063598,7.710977 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: GreenTea + Quantity: 2 + - data: null + ReagentId: Water + Quantity: 1 + - data: null + ReagentId: SpaceDrugs + Quantity: 1 + type: SolutionContainerManager +- proto: ElectricGuitarInstrument + entities: + - uid: 419 + components: + - pos: -1.4113581,8.55935 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 383 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 558 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + - 591 + type: DeviceNetwork + - uid: 559 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + - 591 + type: DeviceNetwork + - uid: 566 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 585 + type: DeviceNetwork + - uid: 567 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 568 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 569 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 584 + - 588 + type: DeviceNetwork + - uid: 570 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + - 589 + type: DeviceNetwork + - uid: 580 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 620 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + - 591 + type: DeviceNetwork + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + - 591 + type: DeviceNetwork + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + - 591 + type: DeviceNetwork + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + - 591 + type: DeviceNetwork +- proto: FirelockEdge + entities: + - uid: 571 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 573 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 576 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 578 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 454 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoamCutlass + entities: + - uid: 425 + components: + - pos: 3.2427402,4.630785 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 3.4146152,4.49016 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 3.648841,4.382324 + parent: 1 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 612 + components: + - pos: 1.7737156,7.8469253 + parent: 1 + type: Transform +- proto: FoodPlateTin + entities: + - uid: 607 + components: + - desc: A cheap foil tin for cigs. + name: Ashtray + type: MetaData + - pos: 1.6501098,7.570352 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 489 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 495 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 505 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 548 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 458 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 461 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 462 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 464 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 465 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 468 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 469 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 470 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 490 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 494 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 506 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 511 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 512 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 515 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 516 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 517 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 518 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 526 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 528 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 529 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 530 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 533 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 534 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 535 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 536 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 537 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 538 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 551 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 552 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 554 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 555 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 602 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 603 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 459 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 467 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 471 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 514 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 532 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 549 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 600 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 457 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 585 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 466 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 475 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 476 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 481 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 584 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 588 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 497 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 509 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 510 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 585 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 531 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 550 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 557 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 601 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 584 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 588 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 230 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 405 + components: + - desc: To be? Or not to be? + type: MetaData + - pos: 1.8106693,4.6069775 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 205 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 206 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 201 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 11 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform +- proto: MicrophoneInstrument + entities: + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: 0.3989902,0.9814253 + parent: 1 + type: Transform +- proto: PianoInstrument + entities: + - uid: 250 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 232 + components: + - anchored: True + pos: -3.5,-8.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - endTime: 0 + type: InsertingMaterialStorage + - uid: 452 + components: + - anchored: True + pos: -3.5,-7.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - endTime: 0 + type: InsertingMaterialStorage +- proto: PottedPlantRandom + entities: + - uid: 626 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: PoweredlightExterior + entities: + - uid: 221 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 43 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 424 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 112 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 153 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: 0.010416657,4.4778275 + parent: 1 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 618 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - links: + - 59 + type: DeviceLinkSink + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - links: + - 627 + type: DeviceLinkSink +- proto: ShuttleWindow + entities: + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 618: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 396: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 399 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 616: + - Pressed: Toggle + 615: + - Pressed: Toggle + 614: + - Pressed: Toggle + 613: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 113: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 619: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignDirectionalWash + entities: + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 233 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform +- proto: SpacemenFigureSpawner + entities: + - uid: 409 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 415 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 412 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 440 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 413 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 414 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: StairStage + entities: + - uid: 115 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 38 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 234 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: SynthesizerInstrument + entities: + - uid: 420 + components: + - pos: -0.8644831,8.574975 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 60 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 609 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 407 + components: + - desc: This is the most disgusting object in existance. + name: extremely dirty toilet + type: MetaData + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - solutions: + toilet: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Water + Quantity: 130 + - data: null + ReagentId: SpaceDrugs + Quantity: 5 + - data: null + ReagentId: Beer + Quantity: 15 + - data: null + ReagentId: Mold + Quantity: 10 + - data: null + ReagentId: Vomit + Quantity: 30 + - data: null + ReagentId: Hooch + Quantity: 10 + type: SolutionContainerManager + - isSeatUp: True + type: Toilet +- proto: TomDrumsInstrument + entities: + - uid: 374 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: ToySword + entities: + - uid: 624 + components: + - pos: 2.5253882,4.8477974 + parent: 1 + type: Transform + - soundHit: !type:SoundPathSpecifier + params: + variation: null + playoffset: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxdistance: 25 + busname: Master + pitchscale: 1 + volume: 0 + attenuation: Default + path: /Audio/Weapons/genhit1.ogg + type: MeleeWeapon + - type: ItemCooldown +- proto: VendingMachineChefDrobe + entities: + - uid: 215 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 209 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 403 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 2 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 20 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 410 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 625 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/_NF/Shuttles/wasp.yml b/Resources/Maps/_NF/Shuttles/wasp.yml new file mode 100644 index 00000000000..63f92fe6bc5 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/wasp.yml @@ -0,0 +1,11975 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 28: FloorDark + 32: FloorDarkMini + 33: FloorDarkMono + 35: FloorDarkPavement + 41: FloorElevatorShaft + 43: FloorFreezer + 44: FloorGlass + 72: FloorRGlass + 73: FloorReinforced + 80: FloorShuttleRed + 85: FloorSteel + 87: FloorSteelCheckerLight + 93: FloorSteelMono + 94: FloorSteelOffset + 95: FloorSteelPavement + 101: FloorWhite + 106: FloorWhiteMono + 111: FloorWood + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: 0.22101265,1.687084 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: SQAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAUAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAUAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cgAAAAAAXQAAAAAAcgAAAAAAVQAAAAAAVwAAAAAAVwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAVwAAAAAAVwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAASAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAIwAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcgAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAXgAAAAAAcgAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAIQAAAAAAIwAAAAAAcgAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAKwAAAAAAKwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAAAagAAAAAAagAAAAAAcgAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAagAAAAAAcgAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAASQAAAAAASQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKQAAAAAAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAUAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAUAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAALAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: UAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#3AB3DAFF' + id: BotGreyscale + decals: + 103: -5,-3 + - node: + color: '#835432FF' + id: BotLeftGreyscale + decals: + 122: 8,-9 + 123: 9,-8 + 124: 10,-7 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelCornerNe + decals: + 85: -8,-4 + 104: -5,-7 + - node: + color: '#835432FF' + id: BrickTileSteelCornerNe + decals: + 105: 10,-4 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelCornerNw + decals: + 84: -10,-4 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelCornerSe + decals: + 95: -5,-9 + - node: + color: '#835432FF' + id: BrickTileSteelCornerSe + decals: + 111: 8,-9 + 112: 9,-8 + 113: 10,-7 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelCornerSw + decals: + 90: -8,-9 + 91: -9,-8 + 92: -10,-7 + - node: + color: '#835432FF' + id: BrickTileSteelCornerSw + decals: + 108: 4,-7 + 110: 5,-9 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelInnerNe + decals: + 100: -8,-7 + - node: + color: '#835432FF' + id: BrickTileSteelInnerSe + decals: + 118: 8,-8 + 119: 9,-7 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelInnerSw + decals: + 101: -8,-8 + 102: -9,-7 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineE + decals: + 87: -5,-8 + 98: -8,-6 + 99: -8,-5 + - node: + color: '#835432FF' + id: BrickTileSteelLineE + decals: + 114: 10,-6 + 115: 10,-5 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineN + decals: + 86: -9,-4 + 96: -6,-7 + 97: -7,-7 + - node: + color: '#835432FF' + id: BrickTileSteelLineN + decals: + 120: 9,-4 + 121: 8,-4 + 226: 7,-4 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineS + decals: + 88: -6,-9 + 89: -7,-9 + - node: + color: '#835432FF' + id: BrickTileSteelLineS + decals: + 116: 6,-9 + 117: 7,-9 + - node: + color: '#3AB3DAFF' + id: BrickTileSteelLineW + decals: + 93: -10,-6 + 94: -10,-5 + - node: + color: '#835432FF' + id: BrickTileSteelLineW + decals: + 106: 4,-5 + 107: 4,-6 + 109: 5,-8 + 227: 4,-4 + - node: + color: '#B02E26FF' + id: ConcreteTrimCornerNe + decals: + 125: -10,8 + 141: 12,8 + 210: -6,8 + 213: 8,8 + - node: + color: '#B02E26FF' + id: ConcreteTrimCornerNw + decals: + 126: -12,8 + 142: 10,8 + 151: -8,8 + 152: 7,8 + 211: 6,7 + 212: -1,8 + - node: + color: '#B02E26FF' + id: ConcreteTrimCornerSe + decals: + 128: -10,5 + 143: 12,5 + 167: 8,5 + 168: 4,3 + 169: -2,3 + - node: + color: '#B02E26FF' + id: ConcreteTrimCornerSw + decals: + 127: -12,5 + 144: 10,5 + 164: -8,5 + 165: -4,3 + 166: 2,3 + - node: + color: '#B02E26FF' + id: ConcreteTrimEndN + decals: + 153: 0,11 + - node: + color: '#B02E26FF' + id: ConcreteTrimEndS + decals: + 179: -6,4 + 180: 6,4 + 214: 0,4 + - node: + color: '#B02E26FF' + id: ConcreteTrimInnerNe + decals: + 177: 0,6 + 209: -6,7 + - node: + color: '#B02E26FF' + id: ConcreteTrimInnerNw + decals: + 197: 0,8 + 198: 6,6 + 199: 7,7 + 200: -1,7 + - node: + color: '#B02E26FF' + id: ConcreteTrimInnerSe + decals: + 187: -6,5 + 193: 6,5 + 194: 4,5 + 195: 0,5 + 196: -2,5 + - node: + color: '#B02E26FF' + id: ConcreteTrimInnerSw + decals: + 188: -6,5 + 189: -4,5 + 190: 0,5 + 191: 2,5 + 192: 6,5 + - node: + color: '#B02E26FF' + id: ConcreteTrimLineE + decals: + 129: -10,6 + 130: -10,7 + 136: 12,6 + 137: 12,7 + 154: 0,10 + 155: 0,9 + 156: 0,8 + 157: 0,7 + 162: 8,6 + 163: 8,7 + 201: -2,4 + 202: 4,4 + - node: + color: '#B02E26FF' + id: ConcreteTrimLineN + decals: + 131: -11,8 + 138: 11,8 + 158: -5,7 + 159: -4,7 + 160: -3,7 + 161: -2,7 + 172: 1,6 + 173: 2,6 + 174: 3,6 + 175: 4,6 + 176: 5,6 + 208: -7,8 + - node: + color: '#B02E26FF' + id: ConcreteTrimLineS + decals: + 134: -11,5 + 135: 11,5 + 178: -7,5 + 181: 7,5 + 182: 3,3 + 183: -3,3 + 184: -5,5 + 185: -1,5 + 186: 1,5 + 203: 5,5 + - node: + color: '#B02E26FF' + id: ConcreteTrimLineW + decals: + 132: -12,7 + 133: -12,6 + 139: 10,6 + 140: 10,7 + 170: 0,10 + 171: 0,9 + 204: 2,4 + 205: -4,4 + 206: -8,6 + 207: -8,7 + - node: + color: '#B02E26FF' + id: Delivery + decals: + 215: -12,3 + 216: 12,3 + - node: + color: '#FED83DFF' + id: DeliveryGreyscale + decals: + 229: 7,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 0: -3,-16 + 1: -4,-16 + 2: -4,-17 + 3: 3,-16 + 4: 4,-16 + 5: 1,-17 + 6: 1,-18 + 7: 0,-18 + 8: 3,-21 + 9: 4,-20 + 10: 5,-20 + 11: 4,-21 + 12: -3,-21 + 13: -4,-21 + 14: -6,-21 + 15: -8,-20 + 16: -8,-21 + 17: -5,-25 + 18: -6,-25 + 19: -6,-24 + 20: -7,-24 + 21: -1,-23 + 22: -1,-24 + 23: -2,-24 + 24: -2,-25 + 25: 2,-24 + 26: 2,-25 + 27: 2,-26 + 28: 3,-25 + 29: 7,-25 + 30: 6,-25 + 31: 5,-24 + 32: 5,-23 + 33: 5,-25 + 34: -1,-19 + 35: 8,-21 + - node: + color: '#B02E26FF' + id: MiniTileDarkCornerNe + decals: + 74: 2,-6 + - node: + color: '#B02E26FF' + id: MiniTileDarkCornerNw + decals: + 75: -2,-6 + - node: + color: '#B02E26FF' + id: MiniTileDarkCornerSe + decals: + 70: 1,-9 + 71: 2,-8 + - node: + color: '#B02E26FF' + id: MiniTileDarkCornerSw + decals: + 72: -1,-9 + 73: -2,-8 + - node: + color: '#B02E26FF' + id: MiniTileDarkEndE + decals: + 145: -2,9 + - node: + color: '#B02E26FF' + id: MiniTileDarkEndW + decals: + 146: -5,9 + - node: + color: '#B02E26FF' + id: MiniTileDarkInnerSe + decals: + 80: 1,-8 + - node: + color: '#B02E26FF' + id: MiniTileDarkInnerSw + decals: + 81: -1,-8 + - node: + color: '#B02E26FF' + id: MiniTileDarkLineE + decals: + 83: 2,-7 + - node: + color: '#B02E26FF' + id: MiniTileDarkLineN + decals: + 76: -1,-6 + 77: 0,-6 + 78: 1,-6 + 149: -4,9 + 150: -3,9 + - node: + color: '#B02E26FF' + id: MiniTileDarkLineS + decals: + 79: 0,-9 + 147: -4,9 + 148: -3,9 + - node: + color: '#B02E26FF' + id: MiniTileDarkLineW + decals: + 82: -2,-7 + - node: + color: '#B02E26FF' + id: MiniTileSteelCornerNe + decals: + 60: -2,-10 + - node: + color: '#B02E26FF' + id: MiniTileSteelCornerNw + decals: + 67: 2,-10 + - node: + color: '#B02E26FF' + id: MiniTileSteelEndN + decals: + 59: -3,-9 + 62: 3,-9 + - node: + color: '#B02E26FF' + id: MiniTileSteelInnerNe + decals: + 61: -3,-10 + 65: 3,-11 + - node: + color: '#B02E26FF' + id: MiniTileSteelInnerNw + decals: + 58: -3,-11 + 66: 3,-10 + - node: + color: '#B02E26FF' + id: MiniTileSteelLineE + decals: + 36: -2,-12 + 37: -2,-11 + 47: -2,-13 + 48: 4,-13 + 49: 4,-12 + 50: 4,-11 + 63: 3,-10 + - node: + color: '#B02E26FF' + id: MiniTileSteelLineN + decals: + 51: 4,-11 + 57: -4,-11 + 64: 4,-11 + - node: + color: '#B02E26FF' + id: MiniTileSteelLineS + decals: + 41: 3,-13 + 42: 2,-13 + 43: 4,-13 + 44: -2,-13 + 45: -3,-13 + 46: -4,-13 + - node: + color: '#B02E26FF' + id: MiniTileSteelLineW + decals: + 38: 2,-13 + 39: 2,-12 + 40: 2,-11 + 52: -3,-10 + 53: -3,-9 + 54: -4,-13 + 55: -4,-12 + 56: -4,-11 + - node: + color: '#B02E26FF' + id: WarnFullGreyscale + decals: + 68: -1,-16 + 69: 1,-16 + - node: + color: '#FED83DFF' + id: WarnLineGreyscaleN + decals: + 223: 4,-4 + 224: 5,-4 + 225: 6,-4 + 228: 4,-4 + - node: + cleanable: True + color: '#1D1D21FF' + id: beepsky + decals: + 218: 7,-26 + - node: + cleanable: True + color: '#1D1D21FF' + id: blueprint + decals: + 219: -1,-26 + - node: + cleanable: True + color: '#1D1D21FF' + id: bottle + decals: + 220: 2,-23 + - node: + cleanable: True + color: '#1D1D21FF' + id: cyka + decals: + 217: -5,-23 + - node: + cleanable: True + color: '#FED83DFF' + id: engie + decals: + 222: -1,0 + - node: + color: '#B02E26FF' + id: space + decals: + 221: 2,-1 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,-1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 63287 + 1,1: + 0: 65535 + 1,2: + 0: 30719 + 2,1: + 0: 65535 + 2,2: + 0: 255 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 16383 + 1,-3: + 0: 65331 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 273 + 2,-3: + 0: 65280 + 2,-2: + 0: 65535 + 2,-1: + 0: 61439 + 0,-7: + 0: 65529 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-7: + 0: 65527 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-7: + 0: 13072 + 2,-6: + 0: 13107 + 2,-5: + 0: 4915 + -3,-3: + 0: 60928 + -3,-2: + 0: 65534 + -3,-1: + 0: 65535 + -2,-4: + 0: 36863 + -2,-3: + 0: 65416 + -2,-2: + 0: 65535 + -2,-1: + 0: 61439 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 255 + -2,1: + 0: 65535 + -2,2: + 0: 52479 + -2,0: + 0: 64652 + -1,0: + 0: 65531 + 1: 4 + -1,1: + 0: 65535 + -1,2: + 0: 57343 + 2: 8192 + -1,3: + 0: 61439 + -2,-7: + 0: 65532 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-7: + 0: 65523 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + 1,3: + 0: 311 + 2,0: + 0: 65262 + 3,0: + 0: 13107 + 3,1: + 0: 13107 + 3,2: + 0: 51 + 3,-2: + 0: 4368 + 3,-1: + 0: 12561 + 0,-8: + 0: 63249 + -4,-1: + 0: 32768 + -4,0: + 0: 34952 + -4,1: + 0: 34952 + -4,2: + 0: 136 + -3,0: + 0: 65535 + -2,3: + 0: 140 + -3,-7: + 0: 34816 + -3,-6: + 0: 34952 + -3,-5: + 0: 2184 + -1,-8: + 0: 60416 + -1,4: + 0: 206 + 0,4: + 0: 127 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockBrigGlassLocked + entities: + - uid: 761 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 762 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 763 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 764 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 765 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 758 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 728 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEasyPry + entities: + - uid: 534 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 634 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 555 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 580 + components: + - rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 867 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 766 + components: + - pos: -6.5,-21.5 + parent: 1 + type: Transform + - links: + - 486 + type: DeviceLinkSink + - uid: 767 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - links: + - 487 + type: DeviceLinkSink + - uid: 768 + components: + - pos: 3.5,-21.5 + parent: 1 + type: Transform + - links: + - 488 + type: DeviceLinkSink + - uid: 769 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - links: + - 489 + type: DeviceLinkSink +- proto: AirlockSecurityGlassLocked + entities: + - uid: 140 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 626 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 627 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 760 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform +- proto: AmbrosiaVulgarisSeeds + entities: + - uid: 919 + components: + - pos: 8.492975,-18.474812 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 384 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 380 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 380 + components: + - flags: InContainer + type: MetaData + - parent: 384 + type: Transform + - canCollide: False + type: Physics +- proto: AmeShielding + entities: + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 372 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 812 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 815 + components: + - rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 816 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 817 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 821 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: APCHyperCapacity + entities: + - uid: 409 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 25 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 752 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 724 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 446 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 501 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 503 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 660 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 698 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 699 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 700 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 564 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 182 + components: + - pos: -3.5,-11.5 + parent: 1 + type: Transform + - links: + - 839 + type: DeviceLinkSink + - uid: 183 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - links: + - 839 + type: DeviceLinkSink + - uid: 184 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - links: + - 837 + type: DeviceLinkSink + - uid: 185 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - links: + - 837 + type: DeviceLinkSink + - uid: 186 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - links: + - 837 + type: DeviceLinkSink + - uid: 1748 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform + - links: + - 839 + type: DeviceLinkSink +- proto: BlastDoorExterior1Open + entities: + - uid: 1755 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1756 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 1757 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 1758 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 1759 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1760 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 1761 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 1762 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - uid: 1763 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 1764 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 1765 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 1766 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 1767 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform +- proto: BlockGameArcadeComputerCircuitboard + entities: + - uid: 890 + components: + - flags: InContainer + type: MetaData + - parent: 889 + type: Transform + - canCollide: False + type: Physics +- proto: BookChemicalCompendium + entities: + - uid: 590 + components: + - pos: -5.0524554,-4.398542 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 734 + components: + - pos: -3.2555802,-4.257917 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: -3.2712052,-4.695417 + parent: 1 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 748 + components: + - flags: InContainer + type: MetaData + - parent: 484 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 949 + components: + - flags: InContainer + type: MetaData + - parent: 484 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: BoxPillCanister + entities: + - uid: 847 + components: + - pos: -3.7712052,-4.695417 + parent: 1 + type: Transform +- proto: BoxSyringe + entities: + - uid: 848 + components: + - pos: -3.7555802,-4.257917 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 485 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-21.5 + parent: 1 + type: Transform + - linkedPorts: + 766: + - Start: DoorBolt + - Timer: DoorBolt + - Timer: Open + type: DeviceLinkSource + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-21.5 + parent: 1 + type: Transform + - linkedPorts: + 767: + - Start: DoorBolt + - Timer: DoorBolt + - Timer: Open + type: DeviceLinkSource + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - linkedPorts: + 768: + - Timer: DoorBolt + - Timer: Open + - Start: DoorBolt + type: DeviceLinkSource + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-21.5 + parent: 1 + type: Transform + - linkedPorts: + 769: + - Timer: DoorBolt + - Timer: Open + - Start: DoorBolt + type: DeviceLinkSource +- proto: CableApcExtension + entities: + - uid: 959 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 1024 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: -2.5,-22.5 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: -2.5,-24.5 + parent: 1 + type: Transform + - uid: 1050 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 1051 + components: + - pos: -5.5,-24.5 + parent: 1 + type: Transform + - uid: 1052 + components: + - pos: -4.5,-24.5 + parent: 1 + type: Transform + - uid: 1053 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: -2.5,-24.5 + parent: 1 + type: Transform + - uid: 1055 + components: + - pos: -1.5,-24.5 + parent: 1 + type: Transform + - uid: 1056 + components: + - pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: 0.5,-24.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: 2.5,-24.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: 3.5,-24.5 + parent: 1 + type: Transform + - uid: 1061 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - pos: -8.5,-25.5 + parent: 1 + type: Transform + - uid: 1065 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform + - uid: 1066 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 1067 + components: + - pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - pos: -6.5,-19.5 + parent: 1 + type: Transform + - uid: 1069 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 1070 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 1071 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 1072 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 1073 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 1074 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 1075 + components: + - pos: 2.5,-19.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: 6.5,-19.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: 8.5,-19.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 1087 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 1088 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 1090 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 1097 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 1100 + components: + - pos: 2.5,-25.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: 6.5,-25.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - uid: 1105 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 1106 + components: + - pos: -8.5,-24.5 + parent: 1 + type: Transform + - uid: 1107 + components: + - pos: -8.5,-23.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - pos: -3.5,-27.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - uid: 1114 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 1115 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 1118 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - pos: 2.5,-28.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: 3.5,-28.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - pos: 3.5,-27.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - pos: 5.5,-27.5 + parent: 1 + type: Transform + - uid: 1124 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1131 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 1135 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 1136 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 1137 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 1163 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 1165 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 1188 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 1189 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 1190 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 1192 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 1193 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 1194 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 1195 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 1196 + components: + - pos: -11.5,3.5 + parent: 1 + type: Transform + - uid: 1197 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 1198 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 1199 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 1200 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 1201 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 1202 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 1203 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 1205 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 1206 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 1207 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 1208 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 1209 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 1210 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 1211 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 1212 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 1213 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 1214 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 1215 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 1216 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 1217 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 1218 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 1219 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 1220 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 1221 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 1222 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 1223 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 1224 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 1225 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 1226 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 1227 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 1228 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 1229 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 1230 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 1231 + components: + - pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 1232 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 1233 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 1234 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 1235 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 1236 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 1237 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 1238 + components: + - pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 1239 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 1240 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 1241 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 1242 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 1243 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 1244 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 1245 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 1246 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 1247 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 1248 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 1249 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 1250 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 1251 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 1252 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 1253 + components: + - pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 1254 + components: + - pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 1255 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 1256 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 1257 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 1258 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 1259 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 1260 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 1281 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 1287 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 1288 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 1289 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 1290 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 1291 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 1292 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 1293 + components: + - pos: -0.5,14.5 + parent: 1 + type: Transform + - uid: 1294 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 1295 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 1296 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - uid: 1297 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 1298 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 1305 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 1306 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 1307 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 1308 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 1309 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 1310 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 1314 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 1315 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 1387 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 1389 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 1390 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 1391 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 1392 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 1393 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 1394 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 1395 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 1396 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 1397 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 1398 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 1399 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 1400 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 1401 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 1402 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 1403 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 1404 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 1405 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 1406 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 1407 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 1408 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 385 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 1728 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 1729 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 562 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 653 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 665 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 666 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 667 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 668 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 670 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 985 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 986 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 987 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 988 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 989 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 990 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 991 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 992 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 993 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 995 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 996 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: -9.5,6.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 1007 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 1021 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1130 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 1133 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 1134 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 1731 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 1732 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 1733 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 1734 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 1737 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 388 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 920 + components: + - pos: -7.4913993,-18.427937 + parent: 1 + type: Transform +- proto: CargoPallet + entities: + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 648 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 649 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: Carpet + entities: + - uid: 671 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 676 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 677 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 563 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 664 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 669 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 680 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 412 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 609 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 614 + components: + - pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 615 + components: + - pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 754 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 755 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 1727 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 149 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: -6.5,-24.5 + parent: 1 + type: Transform + - uid: 931 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 746 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 747 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 744 + components: + - rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 784 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 708 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 146 + - 420 + type: ContainerContainer +- proto: ClothingBeltUtilityFilled + entities: + - uid: 391 + components: + - flags: InContainer + type: MetaData + - parent: 390 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 392 + components: + - flags: InContainer + type: MetaData + - parent: 390 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 393 + components: + - flags: InContainer + type: MetaData + - parent: 390 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingEyesGlassesChemical + entities: + - uid: 151 + components: + - pos: -4.5055804,-4.226667 + parent: 1 + type: Transform +- proto: ClothingOuterHardsuitSecuritypatrol + entities: + - uid: 559 + components: + - flags: InContainer + type: MetaData + - parent: 558 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 561 + components: + - flags: InContainer + type: MetaData + - parent: 560 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 573 + components: + - flags: InContainer + type: MetaData + - parent: 572 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 745 + components: + - rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 455 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 736 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform +- proto: ComputerIFF + entities: + - uid: 416 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform +- proto: ComputerPalletConsoleNFNormalMarket + entities: + - uid: 456 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- proto: ComputerRadar + entities: + - uid: 735 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 694 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 732 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 733 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 731 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 938 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + type: Transform +- proto: CrateArmoryLaser + entities: + - uid: 957 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 808 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 390 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 391 + - 392 + - 393 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateFoodCooking + entities: + - uid: 683 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: CrateFoodDinnerware + entities: + - uid: 929 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 936 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform +- proto: CrateFunInstrumentsVariety + entities: + - uid: 751 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsSeeds + entities: + - uid: 899 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 900 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform +- proto: CrateMaterialWood + entities: + - uid: 442 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 443 + - 445 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateNPCChicken + entities: + - uid: 711 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform +- proto: CrateSecurityNonlethal + entities: + - uid: 654 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 655 + - 656 + - 657 + - 658 + - 659 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateSecurityRiot + entities: + - uid: 722 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1416 + - 1749 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateSecuritySupplies + entities: + - uid: 798 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 799 + - 800 + - 801 + - 802 + - 803 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateServiceCustomSmokable + entities: + - uid: 940 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 484 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 748 + - 949 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 944 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform +- proto: CrateTrackingImplants + entities: + - uid: 650 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServer + entities: + - uid: 741 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: Crowbar + entities: + - uid: 946 + components: + - pos: 1.4795082,-18.493605 + parent: 1 + type: Transform +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 873 + components: + - flags: InContainer + type: MetaData + - parent: 872 + type: Transform + - canCollide: False + type: Physics +- proto: DeepFryerMachineCircuitboard + entities: + - uid: 871 + components: + - flags: InContainer + type: MetaData + - parent: 870 + type: Transform + - canCollide: False + type: Physics +- proto: DefibrillatorCabinetFilled + entities: + - uid: 854 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 952 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform +- proto: DiceBag + entities: + - uid: 939 + components: + - pos: 4.5236473,-18.397203 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 1687 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 1688 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 1710 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - uid: 1711 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 1712 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 1713 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 1683 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 1684 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 1685 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 1686 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 1689 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 1690 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 1691 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 1692 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 1693 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 1694 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 1695 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 1696 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 1697 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 1698 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 1699 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1700 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 1701 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 1702 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 1703 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 1704 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 1705 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 1706 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 1707 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 1708 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 1714 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 1715 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 1716 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 1717 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 1718 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 1719 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 1720 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 1721 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 1722 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 1723 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 1724 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 1725 + components: + - pos: -4.5,-24.5 + parent: 1 + type: Transform + - uid: 1726 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - uid: 1730 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 383 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 546 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 794 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 956 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform +- proto: DresserFilled + entities: + - uid: 870 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 871 + type: ContainerContainer + - uid: 872 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 873 + type: ContainerContainer + - uid: 889 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 890 + type: ContainerContainer + - uid: 891 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 892 + type: ContainerContainer +- proto: ElectricGrillMachineCircuitboard + entities: + - uid: 892 + components: + - flags: InContainer + type: MetaData + - parent: 891 + type: Transform + - canCollide: False + type: Physics +- proto: EmergencyLight + entities: + - uid: 1182 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 1262 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 1264 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 1266 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 1268 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + type: Transform + - uid: 1274 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 1275 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 739 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 814 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 3 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -12.5,5.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: -6.5,-21.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 3.5,-21.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 432 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 433 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 434 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 616 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 8 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1735 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1736 + components: + - pos: 4.5,-15.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasAnalyzer + entities: + - uid: 1774 + components: + - pos: 2.541379,1.6085322 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 172 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 405 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 402 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1444 + components: + - pos: 6.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1446 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1497 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1529 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1544 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1582 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1584 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1602 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1603 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1639 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1640 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1676 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1677 + components: + - pos: 6.5,-25.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1678 + components: + - pos: 3.5,-22.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1679 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 950 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1426 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1436 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1455 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1541 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1588 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1625 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 317 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 958 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1409 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1417 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1418 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1419 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1420 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1421 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1422 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1423 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1424 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1425 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1427 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1428 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1430 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1431 + components: + - pos: 0.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1432 + components: + - pos: 0.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1433 + components: + - pos: 0.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1434 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1435 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1437 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1438 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1439 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1440 + components: + - pos: 0.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1441 + components: + - pos: 0.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1447 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1448 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1449 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1450 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1451 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1452 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1453 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1454 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1456 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1457 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1458 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1459 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1461 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1462 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1465 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1466 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1467 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1468 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1469 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1470 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1471 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1472 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1474 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1475 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1476 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1477 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1478 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1479 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1480 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1482 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1483 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1484 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1485 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1486 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1487 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1488 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1489 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1490 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1491 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1492 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1494 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1495 + components: + - rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1496 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1498 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1504 + components: + - rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1505 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1510 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1511 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1512 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1513 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1514 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1515 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1516 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1523 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1524 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1525 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1528 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1531 + components: + - rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1532 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1533 + components: + - rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1534 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1535 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1536 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1537 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1538 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1539 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1540 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1542 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1543 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1545 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1546 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1548 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1549 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1550 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1551 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1552 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1556 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1557 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1558 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1559 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1560 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1561 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1562 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1563 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1564 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1565 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1566 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1567 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1568 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1569 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1570 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1571 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1572 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1573 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1574 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1580 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1583 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1585 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1589 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1590 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1591 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1592 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1593 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1594 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1595 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1596 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1597 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1598 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1599 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1600 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1601 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1604 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1606 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1607 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1608 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1609 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1610 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1611 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1612 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1615 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1616 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1617 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1618 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1620 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1621 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1622 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1623 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1624 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1626 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1627 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1628 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1629 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1632 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1633 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1634 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1635 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1636 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1641 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1642 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1643 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1644 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1645 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1646 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1653 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1654 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1655 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1656 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1657 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1658 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1659 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1660 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1661 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1662 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1663 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1664 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1665 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1666 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1667 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1668 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1669 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1670 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1671 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1672 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1673 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1674 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1675 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1680 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1681 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor + - uid: 1682 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - color: '#947507FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 1429 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1442 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1443 + components: + - pos: -1.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1445 + components: + - pos: 2.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1460 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1463 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1473 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1481 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1493 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1530 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1547 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1553 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1575 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1576 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1586 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1587 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1637 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1638 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1647 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 418 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 1464 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1499 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1500 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1501 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1502 + components: + - rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1503 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1506 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1507 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1508 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1509 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1517 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1518 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1519 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1520 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1521 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1522 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1526 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1527 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 1554 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1555 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1577 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1578 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1579 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1581 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1605 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1613 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1614 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1619 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1630 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1631 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1648 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1649 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1650 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1651 + components: + - pos: 5.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1652 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 417 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 5 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 0.5,-24.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 110 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 272 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 366 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 435 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 439 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 625 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 706 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 782 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform +- proto: GunSafeRifleLecter + entities: + - uid: 593 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform +- proto: GyroscopeSecurity + entities: + - uid: 263 + components: + - pos: 3.5,-27.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 857 + components: + - pos: 7.369202,-6.5732136 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 7.650452,-6.4325886 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 7.322327,-5.6357136 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 7.603577,-5.4169636 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 651 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform +- proto: HoloprojectorSecurity + entities: + - uid: 954 + components: + - pos: 1.1822467,-5.154647 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 1.2291217,-5.435897 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 181 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 701 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 702 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 923 + components: + - pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 926 + components: + - pos: -5.5,-16.5 + parent: 1 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 819 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 820 + components: + - rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + type: Transform +- proto: JetpackSecurityFilled + entities: + - uid: 642 + components: + - pos: -5.624806,4.6005287 + parent: 1 + type: Transform + - uid: 643 + components: + - pos: -5.468556,4.4442787 + parent: 1 + type: Transform + - uid: 644 + components: + - pos: 6.375194,4.6317787 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: 6.562694,4.3974037 + parent: 1 + type: Transform +- proto: KitchenKnife + entities: + - uid: 771 + components: + - pos: 5.1434035,11.657407 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 389 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 684 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 710 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform +- proto: LampBanana + entities: + - uid: 880 + components: + - pos: -6.3080535,-25.001328 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: -2.319524,-25.035053 + parent: 1 + type: Transform + - uid: 917 + components: + - rot: -1.5707963267948966 rad + pos: 3.492976,-25.035053 + parent: 1 + type: Transform + - uid: 918 + components: + - rot: -1.5707963267948966 rad + pos: 7.4617257,-25.035053 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 960 + components: + - pos: -3.663064,11.937371 + parent: 1 + type: Transform +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 588 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 709 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 942 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 661 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 689 + - 721 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 868 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 558 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 559 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 560 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 561 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 572 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 573 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerWardenFilled + entities: + - uid: 574 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 585 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 715 + components: + - pos: -6.640077,-8.341145 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 713 + components: + - pos: -9.671328,-5.2630196 + parent: 1 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 714 + components: + - pos: -9.343203,-5.5755196 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 716 + components: + - pos: -6.374452,-8.63802 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 1773 + components: + - pos: 2.822629,1.5929072 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 173 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: OreBox + entities: + - uid: 646 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 647 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 725 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 726 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 723 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 401 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 881 + components: + - pos: -6.7455535,-25.360703 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -6.6830535,-25.548203 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: -6.5893035,-25.735703 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: -2.819524,-25.425678 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: -2.741399,-25.597553 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: -2.632024,-25.831928 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: 3.8679757,-25.441303 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: 3.758601,-25.597553 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: 3.586726,-25.769428 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 7.8836007,-25.394428 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: 7.7429757,-25.566303 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: 7.5867257,-25.738178 + parent: 1 + type: Transform + - uid: 1739 + components: + - pos: -3.5133247,11.476894 + parent: 1 + type: Transform + - uid: 1740 + components: + - pos: -3.5133247,11.476894 + parent: 1 + type: Transform + - uid: 1741 + components: + - pos: -3.5133247,11.476894 + parent: 1 + type: Transform + - uid: 1742 + components: + - pos: -3.5133247,11.476894 + parent: 1 + type: Transform + - uid: 1743 + components: + - pos: -3.5133247,11.476894 + parent: 1 + type: Transform + - uid: 1744 + components: + - pos: 0.73667544,15.028978 + parent: 1 + type: Transform + - uid: 1745 + components: + - pos: 0.67417544,15.060228 + parent: 1 + type: Transform + - uid: 1746 + components: + - pos: 0.58042544,15.091478 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 445 + components: + - flags: InContainer + type: MetaData + - parent: 442 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Pen + entities: + - uid: 884 + components: + - pos: -6.3705535,-25.532578 + parent: 1 + type: Transform + - uid: 913 + components: + - rot: -1.5707963267948966 rad + pos: 7.3679757,-25.597553 + parent: 1 + type: Transform + - uid: 914 + components: + - rot: -1.5707963267948966 rad + pos: 3.352351,-25.613178 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: -2.413274,-25.566303 + parent: 1 + type: Transform + - uid: 1747 + components: + - pos: 0.2575087,15.01856 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 961 + components: + - pos: -3.334939,11.812371 + parent: 1 + type: Transform +- proto: PinpointerUniversal + entities: + - uid: 717 + components: + - pos: -5.6257563,4.579997 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: -5.3757563,4.314372 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: 6.354094,4.611247 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: 6.635344,4.236247 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: -0.1088182,-5.3039255 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 0.026598468,-5.5747585 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 0.81826514,-5.2205915 + parent: 1 + type: Transform + - uid: 1752 + components: + - pos: 0.89118177,-5.5226755 + parent: 1 + type: Transform +- proto: PlastitaniumWindow + entities: + - uid: 147 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 3.141592653589793 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 341 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 367 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 449 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - uid: 477 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 0.5,-24.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 490 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 494 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 495 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 514 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 517 + components: + - rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 518 + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 557 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 591 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 789 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 790 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 712 + components: + - pos: 0.5,-16.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 407 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 465 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 1263 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 1336 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 1339 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 1341 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 1342 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 1344 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 1346 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 1347 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 1348 + components: + - rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 1349 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 1350 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 1365 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 1366 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredBlack + entities: + - uid: 1353 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredFrostyBlue + entities: + - uid: 1363 + components: + - pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: 5.5,-27.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 1343 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 1358 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 1360 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 1361 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 1364 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 1367 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 1 + type: Transform + - uid: 1368 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 1 + type: Transform + - uid: 1369 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 1413 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 1414 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 1415 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 640 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 863 + components: + - pos: 7.384827,-6.5575886 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 7.712952,-6.4325886 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 7.416077,-5.5419636 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 7.666077,-5.4638386 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 630 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 632 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 637 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform +- proto: RollingPin + entities: + - uid: 772 + components: + - pos: 5.0965285,11.680844 + parent: 1 + type: Transform +- proto: SecBreachingHammer + entities: + - uid: 1416 + components: + - flags: InContainer + type: MetaData + - parent: 722 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 1749 + components: + - flags: InContainer + type: MetaData + - parent: 722 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SecurityTechFab + entities: + - uid: 652 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 928 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 443 + components: + - flags: InContainer + type: MetaData + - parent: 442 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SignalButton + entities: + - uid: 837 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 186: + - Pressed: Toggle + 185: + - Pressed: Toggle + 184: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 839 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - linkedPorts: + 183: + - Pressed: Toggle + 182: + - Pressed: Toggle + 1748: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignalButtonExt1 + entities: + - uid: 850 + components: + - desc: It's a button for activating lockdown. + name: lockdown button + type: MetaData + - pos: 0.48732072,-5.17708 + parent: 1 + type: Transform +- proto: SignSecurearea + entities: + - uid: 1753 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 1754 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: SignSecureSmallRed + entities: + - uid: 464 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform +- proto: SignSpace + entities: + - uid: 454 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 589 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 777 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 381 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: SpacemenFigureSpawner + entities: + - uid: 810 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform +- proto: SpawnMobSmile + entities: + - uid: 795 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: SpawnPointBrigmedic + entities: + - uid: 1777 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 1776 + components: + - pos: 0.5,-17.5 + parent: 1 + type: Transform +- proto: SpawnPointPrisonGuard + entities: + - uid: 1781 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 1779 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 1778 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: Stairs + entities: + - uid: 187 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 192 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 469 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 382 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 757 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 778 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 780 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 662 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 594 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform +- proto: SuitStorageWarden + entities: + - uid: 597 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 415 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraSecurity + entities: + - uid: 742 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Engine room + type: SurveillanceCamera + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell exit + type: SurveillanceCamera + - uid: 813 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Docking airlocks [Port] + type: SurveillanceCamera + - uid: 818 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Living room + type: SurveillanceCamera + - uid: 822 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cargo 1 + type: SurveillanceCamera + - uid: 823 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Docking airlocks [Starboard] + type: SurveillanceCamera + - uid: 824 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay 1 + type: SurveillanceCamera + - uid: 825 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: External [Starboard] + type: SurveillanceCamera + - uid: 826 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: External [Port] + type: SurveillanceCamera + - uid: 827 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cargo 2 + type: SurveillanceCamera + - uid: 828 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Medbay 2 + type: SurveillanceCamera + - uid: 829 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Prisoner storage room + type: SurveillanceCamera + - uid: 831 + components: + - pos: 0.5,-20.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 0 [Courtyard] + type: SurveillanceCamera + - uid: 832 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + type: SurveillanceCamera + - uid: 833 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + type: SurveillanceCamera + - uid: 834 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 3 + type: SurveillanceCamera + - uid: 835 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 1 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 4 + type: SurveillanceCamera +- proto: TableCarpet + entities: + - uid: 663 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 749 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 750 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 930 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 592 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 704 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 737 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 738 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 878 + components: + - pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 3.5,-25.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - uid: 932 + components: + - pos: 4.5,-14.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 6.5,-16.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform +- proto: TelecomServerFilledSecurity + entities: + - uid: 982 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: TelescopicShield + entities: + - uid: 721 + components: + - flags: InContainer + type: MetaData + - parent: 661 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ThrusterSecurity + entities: + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 244 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 1 + type: Transform + - uid: 245 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-28.5 + parent: 1 + type: Transform + - uid: 246 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 248 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-28.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: 2.5,-28.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 775 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - uid: 776 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 1 + type: Transform + - uid: 1751 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 1768 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 1769 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 1770 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 1771 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 1772 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 685 + components: + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 686 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 548 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 146 + components: + - flags: InContainer + type: MetaData + - parent: 144 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 420 + components: + - flags: InContainer + type: MetaData + - parent: 144 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: VendingMachineAmmo + entities: + - uid: 577 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineAstroVend + entities: + - uid: 788 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 511 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineBountyVend + entities: + - uid: 504 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 551 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 707 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 537 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 536 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 535 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 539 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 785 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 692 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 809 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 2 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 4.5,-25.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + type: Transform + - uid: 51 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -7.5,-24.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: -7.5,-23.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -7.5,-21.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 8.5,-23.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-20.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: 0.5,-23.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 4.5,-21.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 4.5,-22.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 4.5,-23.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -8.5,-8.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 9.5,-8.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 229 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 9.5,9.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 0.5,-31.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -5.5,-21.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -1.5,-21.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 2.5,-21.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 6.5,-21.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: 2.5,-14.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -8.5,8.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: 9.5,8.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 414 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 424 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 430 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 436 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 440 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 441 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 470 + components: + - rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 473 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 633 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1 + type: Transform + - uid: 695 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 791 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 1738 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 206 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 830 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 1750 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 874 + components: + - pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 2.5,-22.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 6.5,-22.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 1775 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 927 + components: + - pos: -5.5,-18.5 + parent: 1 + type: Transform +- proto: WeaponAntiqueLaser + entities: + - uid: 689 + components: + - flags: InContainer + type: MetaData + - parent: 661 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponCapacitorRecharger + entities: + - uid: 466 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 655 + components: + - flags: InContainer + type: MetaData + - parent: 654 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 657 + components: + - flags: InContainer + type: MetaData + - parent: 654 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 658 + components: + - flags: InContainer + type: MetaData + - parent: 654 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 799 + components: + - flags: InContainer + type: MetaData + - parent: 798 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 801 + components: + - flags: InContainer + type: MetaData + - parent: 798 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 802 + components: + - flags: InContainer + type: MetaData + - parent: 798 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponEmpEmitter + entities: + - uid: 656 + components: + - flags: InContainer + type: MetaData + - parent: 654 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 659 + components: + - flags: InContainer + type: MetaData + - parent: 654 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 800 + components: + - flags: InContainer + type: MetaData + - parent: 798 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 803 + components: + - flags: InContainer + type: MetaData + - parent: 798 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponGrapplingGun + entities: + - uid: 861 + components: + - pos: 6.593146,4.371871 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: -5.391229,4.418746 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 945 + components: + - pos: -0.48924184,-18.556105 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/deaddrop.yml b/Resources/Maps/deaddrop.yml new file mode 100644 index 00000000000..aaf6f0c9ef1 --- /dev/null +++ b/Resources/Maps/deaddrop.yml @@ -0,0 +1,629 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 33: FloorDarkMono + 44: FloorGlass + 80: FloorShuttleRed + 97: FloorTechMaint + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: Syndicate Supply Drop + type: MetaData + - pos: -0.38888836,-0.59260035 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: YQAAAAAAcgAAAAAALAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADIQAAAAABcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#B02E26FF' + id: Bot + decals: + 12: 0,5 + 13: 1,5 + 15: 0,6 + - node: + color: '#FFFFFFFF' + id: syndlogo10 + decals: + 6: -1,2 + - node: + color: '#FFFFFFFF' + id: syndlogo11 + decals: + 7: 0,2 + - node: + color: '#FFFFFFFF' + id: syndlogo12 + decals: + 8: 1,2 + - node: + color: '#FFFFFFFF' + id: syndlogo14 + decals: + 10: 0,1 + - node: + color: '#FFFFFFFF' + id: syndlogo15 + decals: + 9: 1,1 + - node: + color: '#FFFFFFFF' + id: syndlogo2 + decals: + 5: -1,4 + - node: + color: '#FFFFFFFF' + id: syndlogo3 + decals: + 0: 0,4 + - node: + color: '#FFFFFFFF' + id: syndlogo4 + decals: + 3: 1,4 + - node: + color: '#FFFFFFFF' + id: syndlogo6 + decals: + 2: -1,3 + - node: + color: '#FFFFFFFF' + id: syndlogo7 + decals: + 1: 0,3 + - node: + color: '#FFFFFFFF' + id: syndlogo8 + decals: + 4: 1,3 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 32631 + -1,0: + 0: 57308 + -1,1: + 0: 52733 + 0,1: + 0: 30711 + 0,2: + 0: 114 + 1,0: + 0: 4368 + 1,1: + 0: 273 + -1,2: + 0: 200 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockShuttleEasyPry + entities: + - uid: 23 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 25 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 24 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 51 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 77 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 82 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 45 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: DebugAPC + entities: + - uid: 49 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: GeneratorWallmountAPU + entities: + - uid: 76 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 73 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 2 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform +- proto: N14ContrabandCrateSpawner + entities: + - uid: 61 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: PlastitaniumWindow + entities: + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredBlack + entities: + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 47 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 75 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: WallPlastitanium + entities: + - uid: 7 + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 8 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 9 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 10 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 14 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: WallPlastitaniumDiagonal + entities: + - uid: 3 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 5 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 6 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform +... diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index f820cb67a78..d6cad9a1fc6 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -17,6 +17,7 @@ - Engineering - Medical - Mercenary # Frontier + - Pilot # Frontier - Quartermaster - Salvage - Cargo diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml index 571ee1338b4..6712a846839 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml @@ -14,7 +14,8 @@ sprite: /Textures/Structures/Storage/orebox.rsi state: orebox product: OreBox - cost: 500 + #cost: 500 + cost: 1000 # Frontier category: Cargo group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index 01ffe3307a4..5fd86b721fd 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -1,62 +1,62 @@ -- type: cargoProduct - id: FunInstrumentsVariety - icon: - sprite: Objects/Fun/Instruments/accordion.rsi - state: icon - product: CrateFunInstrumentsVariety - cost: 2300 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsBrass - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: tuba - product: CrateFunInstrumentsBrass - cost: 3500 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsString - icon: - sprite: Objects/Fun/Instruments/bassguitar.rsi - state: icon - product: CrateFunInstrumentsString - cost: 3100 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsWoodwind - icon: - sprite: Objects/Fun/Instruments/harmonica.rsi - state: icon - product: CrateFunInstrumentsWoodwind - cost: 3000 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsKeyedPercussion - icon: - sprite: Objects/Fun/Instruments/h_synthesizer.rsi - state: icon - product: CrateFunInstrumentsKeyedPercussion - cost: 3500 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsSpecial - icon: - sprite: Objects/Fun/Instruments/gunpet.rsi - state: icon - product: CrateFunInstrumentsSpecial - cost: 10000 - category: Fun - group: market +# - type: cargoProduct + # id: FunInstrumentsVariety # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/accordion.rsi + # state: icon + # product: CrateFunInstrumentsVariety + # cost: 2300 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsBrass # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: tuba + # product: CrateFunInstrumentsBrass + # cost: 3500 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsString # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/bassguitar.rsi + # state: icon + # product: CrateFunInstrumentsString + # cost: 3100 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsWoodwind # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/harmonica.rsi + # state: icon + # product: CrateFunInstrumentsWoodwind + # cost: 3000 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsKeyedPercussion # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/h_synthesizer.rsi + # state: icon + # product: CrateFunInstrumentsKeyedPercussion + # cost: 3500 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsSpecial # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/gunpet.rsi + # state: icon + # product: CrateFunInstrumentsSpecial + # cost: 10000 + # category: Fun + # group: market - type: cargoProduct id: FunArtSupplies diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml b/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml index 58c6f99494f..bcd66538092 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_shuttle.yml @@ -1,22 +1,22 @@ -- type: cargoProduct - id: ShuttleThruster - icon: - sprite: Structures/Shuttles/thruster.rsi - state: base - product: Thruster - cost: 1500 - category: Shuttle - group: market +# - type: cargoProduct # Frontier - Moved to crate + # id: ShuttleThruster + # icon: + # sprite: Structures/Shuttles/thruster.rsi + # state: base + # product: Thruster + # cost: 1500 + # category: Shuttle + # group: market -- type: cargoProduct - id: ShuttleGyroscope - icon: - sprite: Structures/Shuttles/gyroscope.rsi - state: base - product: Gyroscope - cost: 4000 - category: Shuttle - group: market +# - type: cargoProduct # Frontier - Moved to crate + # id: ShuttleGyroscope + # icon: + # sprite: Structures/Shuttles/gyroscope.rsi + # state: base + # product: Gyroscope + # cost: 4000 + # category: Shuttle + # group: market # - type: cargoProduct # id: ShuttlePowerKit diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 56f6ccb82a7..5c1b14eb4b5 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -12,7 +12,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockBoozeFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -23,7 +23,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockChefvendFilled - cost: 100 + cost: 100 # Frontier category: Service group: market @@ -33,7 +33,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 100 + cost: 400 # Frontier category: Service group: market @@ -43,7 +43,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockDinnerwareFilled - cost: 100 + cost: 100 # Frontier category: Service group: market @@ -54,7 +54,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockCondimentStationFilled - cost: 100 + cost: 100 # Frontier category: Service group: market @@ -64,7 +64,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockEngineeringFilled - cost: 100 + cost: 100 # Frontier category: Engineering group: market @@ -74,7 +74,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockGamesFilled - cost: 100 + cost: 100 # Frontier category: Service group: market @@ -84,7 +84,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockHotDrinksFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -94,7 +94,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockMedicalFilled - cost: 100 + cost: 100 # Frontier category: Medical group: market @@ -104,7 +104,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockChemVendFilled - cost: 100 + cost: 100 # Frontier category: Medical group: market @@ -114,7 +114,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockNutriMaxFilled - cost: 100 + cost: 100 # Frontier category: Hydroponics group: market @@ -124,7 +124,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockPTechFilled - cost: 100 + cost: 100 # Frontier category: Service group: market @@ -134,7 +134,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockRobustSoftdrinksFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -144,7 +144,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSalvageEquipmentFilled - cost: 100 + cost: 100 # Frontier category: Engineering group: market @@ -154,7 +154,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSecTechFilled - cost: 100 + cost: 100 # Frontier category: Security group: market @@ -164,7 +164,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSeedsFilled - cost: 100 + cost: 100 # Frontier category: Hydroponics group: market @@ -174,7 +174,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSmokesFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -184,7 +184,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockVendomatFilled - cost: 100 + cost: 100 # Frontier category: Service group: market @@ -194,7 +194,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockRoboticsFilled - cost: 100 + cost: 100 # Frontier category: Science group: market @@ -204,7 +204,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockTankDispenserFilled - cost: 100 + cost: 100 # Frontier category: Atmospherics group: market @@ -214,7 +214,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockHappyHonkFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -224,7 +224,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockGetmoreChocolateCorpFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -234,7 +234,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockChangFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -244,7 +244,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockDiscountDansFilled - cost: 400 + cost: 400 # Frontier category: Service group: market @@ -254,6 +254,6 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockDonutFilled - cost: 400 + cost: 400 # Frontier category: Service group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 101fc478050..1d9bcee5fb8 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -132,6 +132,7 @@ - id: MagazinePistol - id: RubberStampHos # Frontier - id: DoorRemoteSecurity # Frontier + - id: SecurityTechFabCircuitboard # Frontier - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 2adfc1334e1..a4ea2997d7e 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -141,6 +141,7 @@ - id: MagazinePistol - id: RubberStampHos # Frontier - id: DoorRemoteSecurity # Frontier + - id: SecurityTechFabCircuitboard # Frontier - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 64ebd87a55b..a6cec4f77c5 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -155,6 +155,7 @@ - id: MagazinePistol - id: RubberStampHos # Frontier - id: DoorRemoteSecurity # Frontier + - id: SecurityTechFabCircuitboard # Frontier - type: entity noSpawn: true diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index a487138afda..dae81c8f7f9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -50,6 +50,9 @@ - id: Saw - id: Hemostat - id: ClothingMaskSterile + - id: NitrousOxideTankFilled # Frontier + - id: ClothingMaskBreathMedical # Frontier + - id: SawElectric # Frontier - type: entity id: CrateMedicalScrubs diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml index 4e4c5a6b75f..6deee14aaf2 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml @@ -62,8 +62,8 @@ # - Heh - id: SalvageHumanCorpse prob: 0.1 - - id: LidSalami - prob: 0.1 +# - id: LidSalami +# prob: 0.1 # Interesting (1%) # - Ammo - id: MagazineBoxMagnum @@ -86,24 +86,24 @@ - id: ClothingHeadHatCatEars prob: 0.001 # - Drip - - id: ClothingNeckLGBTPin - orGroup: DripLoot - - id: ClothingNeckAromanticPin - orGroup: DripLoot - - id: ClothingNeckAsexualPin - orGroup: DripLoot - - id: ClothingNeckBisexualPin - orGroup: DripLoot - - id: ClothingNeckIntersexPin - orGroup: DripLoot - - id: ClothingNeckLesbianPin - orGroup: DripLoot - - id: ClothingNeckNonBinaryPin - orGroup: DripLoot - - id: ClothingNeckPansexualPin - orGroup: DripLoot - - id: ClothingNeckTransPin - orGroup: DripLoot + # - id: ClothingNeckLGBTPin + # orGroup: DripLoot + # - id: ClothingNeckAromanticPin + # orGroup: DripLoot + # - id: ClothingNeckAsexualPin + # orGroup: DripLoot + # - id: ClothingNeckBisexualPin + # orGroup: DripLoot + # - id: ClothingNeckIntersexPin + # orGroup: DripLoot + # - id: ClothingNeckLesbianPin + # orGroup: DripLoot + # - id: ClothingNeckNonBinaryPin + # orGroup: DripLoot + # - id: ClothingNeckPansexualPin + # orGroup: DripLoot + # - id: ClothingNeckTransPin + # orGroup: DripLoot - id: ClothingBeltStorageWaistbag orGroup: DripLoot - id: ClothingBeltBandolier diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index cf0540a29b1..b17a35f4d54 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -15,8 +15,10 @@ amount: 2 - id: TrashBag amount: 2 - - id: Plunger - amount: 2 + - id: Plunger # Frontier 2<1 + amount: 1 + - id: LightReplacer # Frontier + amount: 1 - type: entity id: CrateServiceReplacementLights diff --git a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml index ea911949ee3..7e9104f4e49 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml @@ -1,226 +1,226 @@ - type: entity id: CrateVendingMachineRestockBoozeFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockBooze - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockChefvendFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockChefvend - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockClothesFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockClothes - amount: 2 + amount: 7 # Frontier - id: VendingMachineRestockCostumes - amount: 2 + amount: 1 # Frontier - type: entity id: CrateVendingMachineRestockCondimentStationFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockCondimentStation - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockDinnerwareFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockDinnerware - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockEngineeringFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockEngineering - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockGamesFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockGames - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockHotDrinksFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockHotDrinks - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockMedicalFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockMedical - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockChemVendFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockChemVend - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockNutriMaxFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockNutriMax - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockPTechFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockPTech - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockRobustSoftdrinksFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockRobustSoftdrinks - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockSalvageEquipmentFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockSalvageEquipment - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockSecTechFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockSecTech - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockSeedsFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockSeeds - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockSmokesFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockSmokes - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockVendomatFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockVendomat - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockRoboticsFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockRobotics - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockTankDispenserFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockTankDispenser - amount: 2 + amount: 2 # Frontier - type: entity id: CrateVendingMachineRestockHappyHonkFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockHappyHonk - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockGetmoreChocolateCorpFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockGetmoreChocolateCorp - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockChangFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockChang - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockDiscountDansFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockDiscountDans - amount: 8 + amount: 8 # Frontier - type: entity id: CrateVendingMachineRestockDonutFilled - parent: CratePlasticBiodegradable + parent: CratePlasticBiodegradable # Frontier components: - type: StorageFill contents: - id: VendingMachineRestockDonut - amount: 8 + amount: 8 # Frontier diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 9568bd88bd8..8e44777dd06 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -69,7 +69,6 @@ - id: AirTankFilled - id: JetpackMiniFilled # Frontier - id: HandheldGPSBasic # Frontier - - id: WeaponEnergyGunMultiphase # DeltaV - HoS Energy Gun - type: entity id: LockerCaptainFilled @@ -125,7 +124,7 @@ - id: IDComputerCircuitboard - id: CommsComputerCircuitboard # Frontier # - id: WeaponDisabler # Frontier - bloat -# - id: ClothingOuterWinterHoP # Frontier - bloat + - id: ClothingOuterWinterHoP # Frontier - bloat # - id: CigarGoldCase # Frontier # prob: 0.25 # Fuck the HoP they don't deserve fucking cigars. @@ -329,7 +328,7 @@ - id: ClothingOuterHardsuitSecurityRed - id: ClothingMaskGasSwat # - id: ClothingBeltSecurityFilled - - id: ClothingHeadsetAltSecurity +# - id: ClothingHeadsetAltSecurity # Frontier # - id: ClothingEyesGlassesSecurity # - id: ClothingShoesBootsJack # - id: CigarGoldCase # Frontier @@ -338,9 +337,9 @@ - id: ClothingUniformJumpskirtHosFormal - id: ClothingUniformJumpsuitHosFormal # - id: RubberStampHos # Frontier - - id: SecurityTechFabCircuitboard +# - id: SecurityTechFabCircuitboard # Frontier # - id: JetpackSecurityFilled # Frontier - - id: BoxEncryptionKeySecurity +# - id: BoxEncryptionKeySecurity # Frontier # - id: HoloprojectorSecurity # Frontier # - id: NitrogenTankFilled # - id: OxygenTankFilled @@ -365,7 +364,7 @@ - id: ClothingUniformJumpskirtHoSAlt - id: ClothingUniformJumpsuitHoSAlt # - id: ClothingBeltSecurityFilled - - id: ClothingHeadsetAltSecurity +# - id: ClothingHeadsetAltSecurity # Frontier # - id: ClothingEyesGlassesSecurity # - id: ClothingShoesBootsJack # - id: CigarGoldCase # Frontier @@ -374,8 +373,8 @@ - id: ClothingUniformJumpskirtHosFormal - id: ClothingUniformJumpsuitHosFormal # - id: RubberStampHos # Frontier - - id: SecurityTechFabCircuitboard - - id: BoxEncryptionKeySecurity +# - id: SecurityTechFabCircuitboard # Frontier +# - id: BoxEncryptionKeySecurity # Frontier # - id: HoloprojectorSecurity # Frontier # - id: BookSecretDocuments # Frontier - id: ClothingNeckMantleHOS # Frontier diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 55fac8ce52b..18d6ecc2f6a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -6,7 +6,7 @@ - type: StorageFill contents: - id: ClothingOuterArmorBasicSlim - - id: WeaponShotgunDoubleBarreledRubber +# - id: WeaponShotgunDoubleBarreledRubber # Frontier - id: DrinkShaker - id: ClothingEyesHudBeer - id: DrinkBottleBeer @@ -15,8 +15,8 @@ prob: 0.5 - id: DrinkBottleBeer prob: 0.5 - - id: BoxBeanbag - amount: 2 +# - id: BoxBeanbag # Frontier +# amount: 2 # Frontier - id: RagItem amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml index a79bfe1c2fa..fb5d745d965 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml @@ -357,7 +357,6 @@ - id: ClothingNeckCloakPirateCap # Frontier - id: JetpackBlackFilled # Frontier - id: HandheldGPSBasic # Frontier - - id: HandheldGPSBasic # Frontier - id: ClothingShoesBootsMagPirateFilled # Frontier #Wizard diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml index 19766a9ad10..71e65528d53 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml @@ -12,5 +12,9 @@ BoxBeanbag: 15 BoxShellTranquilizer: 15 BoxShotgunPractice: 15 + WeaponRevolverArgenti: 15 + MagazineBoxRifle: 15 + MagazineBoxRifleRubber: 15 + MagazineBoxRiflePractice: 15 emaggedInventory: WeaponPistolViper: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml index d45fc1f7b3c..2b7d249e855 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml @@ -7,6 +7,9 @@ DrinkVacuumFlask: 15 DrinkFlaskBar: 15 DrinkShaker: 15 + DrinkKegSteel: 4 # Frontier: kegs + DrinkKegWood: 4 # Frontier: kegs + DrinkKegPlastic: 4 # Frontier: kegs DrinkAbsintheBottleFull: 4 DrinkAleBottleFull: 15 DrinkBeerBottleFull: 15 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml index a199134eff8..e9877c7043d 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml @@ -22,6 +22,8 @@ ClothingUniformJumpsuitSalvageSpecialist: 2 ClothingOuterWinterMiner: 2 ClothingHeadsetMining: 2 + ClothingShoesBootsSalvage: 2 + ClothingMaskGasExplorer: 2 ClothingNeckCloakMiner: 2 # QM: ClothingUniformJumpsuitQMTurtleneck: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index 14381dc0f85..e2b52bb693e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -21,13 +21,17 @@ WardenPDA: 3 # Frontier PassengerIDCard: 10 # Frontier 5<10 ClothingHeadsetGrey: 10 # Frontier 5<10 + RubberStampStc: 1 # Frontier RubberStampCaptain: 10 # Frontier RubberStampApproved: 3 # Frontier 1<3 RubberStampDenied: 3 # Frontier 1<3 Pen: 10 # Frontier - Paper: 20 # Frontier 10<20 - PaperOffice: 20 # Frontier - PaperCaptainsThoughts: 20 # Frontier +# Paper: 20 # Frontier 10<20 +# PaperOffice: 20 # Frontier +# PaperCaptainsThoughts: 20 # Frontier + BoxPaper: 4 + BoxPaperOffice: 4 + BoxPaperCaptainsThoughts: 4 BoxFolderClipboard: 3 # Frontier BoxFolderBlue: 3 # Frontier BoxFolderRed: 3 # Frontier diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml index d4ddf07eda7..be301396779 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml @@ -1,28 +1,45 @@ - type: vendingMachineInventory id: PietyVendInventory startingInventory: - ClothingUniformJumpsuitChaplain: 2 - ClothingUniformJumpskirtChaplain: 2 - ClothingUniformJumpsuitMonasticRobeDark: 1 - ClothingUniformJumpsuitMonasticRobeLight: 1 - ClothingOuterHoodieChaplain: 1 - ClothingOuterHoodieBlack: 1 - ClothingHeadHatHoodNunHood: 1 - ClothingOuterNunRobe: 1 - ClothingHeadHatFez: 1 - ClothingHeadHatPlaguedoctor: 1 - ClothingHeadHatWitch: 1 - ClothingHeadHatWitch1: 1 - ClothingOuterPlagueSuit: 1 - ClothingMaskPlague: 1 - ClothingHeadsetService: 2 - RubberStampChaplain: 1 + ClothingUniformJumpsuitChaplain: 3 + ClothingUniformJumpskirtChaplain: 3 + ClothingUniformJumpsuitMonasticRobeDark: 3 + ClothingUniformJumpsuitMonasticRobeLight: 3 + ClothingOuterHoodieChaplain: 3 + ClothingOuterHoodieBlack: 3 + ClothingHeadHatHoodNunHood: 3 + ClothingOuterNunRobe: 3 + ClothingHeadHatFez: 3 + ClothingHeadHatPlaguedoctor: 3 + ClothingHeadHatWitch: 3 + ClothingHeadHatWitch1: 3 + ClothingOuterPlagueSuit: 3 + ClothingMaskPlague: 3 + ClothingHeadHatKippah: 3 + ClothingHeadHatWideBrimmed: 3 + ClothingHeadHatPilgrim: 3 + ClothingUniformJumpsuitChaplainPilgrimVest: 3 + ClothingHeadHatBishopMitre: 3 + ClothingOuterCoatBishop: 3 + ClothingHeadHatCardinal: 3 + ClothingOuterCoatCardinal: 3 + ClothingHeadHatWitchhunter: 3 + ClothingOuterCoatWitchHunter: 3 + ClothingNeckScarfChaplainStole: 3 + ClothingBeltChaplainSash: 3 + ClothingHeadsetService: 4 + RubberStampChaplain: 3 + Bible: 3 + UrnMortuary: 4 + Censer: 2 + ClothingNeckCrucifix: 3 emaggedInventory: + WoodenStake: 6 ClothingOuterArmorCult: 1 ClothingHeadHelmetCult: 1 ClothingOuterRobesCult: 3 ClothingHeadHatHoodCulthood: 3 - ClothingShoesCult: 4 + ClothingShoesCult: 6 BedsheetCult: 4 BibleNecronomicon: 1 ClothingNeckScarfStripedBlack: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml index 8c0eecb347e..78ee1fcc35c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefvend.yml @@ -1,11 +1,17 @@ - type: vendingMachineInventory id: ChefvendInventory startingInventory: - ReagentContainerFlour: 2 - ReagentContainerCornmeal: 2 - ReagentContainerSugar: 2 - ReagentContainerRice: 2 - FoodCondimentPacketSalt: 4 + ReagentContainerFlour: 3 # Frontier - 2<3 + ReagentContainerCornmeal: 3 # Frontier - 2<3 + ReagentContainerSugar: 3 # Frontier - 2<3 + ReagentContainerRice: 3 # Frontier - 2<3 + ReagentContainerRaisin: 3 # Frontier + ReagentContainerChocolate: 3 # Frontier +# FoodCondimentPacketSalt: 4 # Frontier - Replaced with big salt + ReagentContainerSalt: 3 # Frontier + ReagentContainerPepper: 3 # Frontier + DrinkKegPlasticKetchup: 1 # Frontier - Refills + DrinkKegPlasticMustard: 1 # Frontier - Refills FoodCondimentBottleEnzyme: 2 FoodCondimentBottleHotsauce: 2 FoodCondimentBottleKetchup: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml index 70924a1e6e7..a4dddd0e5d8 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml @@ -9,12 +9,20 @@ FoodCondimentPacketKetchup: 5 FoodCondimentPacketMustard: 5 FoodCondimentPacketPepper: 5 + FoodShakerPepper: 2 # Frontier FoodCondimentPacketSalt: 5 + FoodShakerSalt: 2 # Frontier FoodCondimentPacketSoy: 5 FoodCondimentPacketSugar: 5 FoodCondimentPacketCornoil: 5 + FoodCondimentBottleBBQ: 2 # Frontier + FoodCondimentBottleColdsauce: 2 # Frontier + FoodCondimentBottleHotsauce: 2 # Frontier + FoodCondimentBottleKetchup: 2 # Frontier + FoodCondimentSqueezeBottleKetchup: 4 # Frontier + FoodCondimentSqueezeBottleMustard: 4 # Frontier ForkPlastic: 10 SpoonPlastic: 10 KnifePlastic: 10 FoodPlatePlastic: 10 - FoodPlateSmallPlastic: 10 \ No newline at end of file + FoodPlateSmallPlastic: 10 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml index 63aa68dfbef..8d15ab46dc9 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml @@ -14,6 +14,7 @@ ClothingHeadHatHardhatOrange: 3 ClothingHeadsetEngineering: 3 EncryptionKeyEngineering: 10 + ClothingMaskGas: 3 ClothingOuterWinterEngi: 2 ClothingNeckScarfStripedOrange: 3 # Atmost: @@ -28,6 +29,7 @@ ClothingOuterSuitFire: 2 ClothingOuterWinterAtmos: 2 ClothingNeckScarfStripedLightBlue: 3 + ClothingMaskGasAtmos: 2 # Senior: ClothingUniformJumpsuitSeniorEngineer: 1 ClothingUniformJumpskirtSeniorEngineer: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml index 48110a3a5bd..292d93ab452 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml @@ -5,7 +5,9 @@ Multitool: 10 ClothingEyesGlassesMeson: 10 ClothingHeadHatWelding: 6 +# HolofanProjector: 10 # Frontier InflatableWallStack1: 24 InflatableDoorStack1: 8 + GeigerCounter: 10 # Frontier PowerCellMedium: 15 # NetworkConfigurator: 15 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml index 50695edc194..df1432611ba 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml @@ -3,6 +3,7 @@ startingInventory: HappyHonk: 10 HappyHonkMime: 4 + MysteryFigureBoxBulk: 5 emaggedInventory: HappyHonkCluwne: 1 HappyHonkNukie: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml index 2830e22641d..e66f243c612 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml @@ -12,6 +12,7 @@ ClothingEyesHudMedical: 4 # Frontier - Not working yet ClothingHeadsetMedical: 4 EncryptionKeyMedical: 10 + ClothingMaskBreathMedical: 4 ClothingHeadNurseHat: 4 ClothingShoesColorWhite: 4 ClothingHandsGlovesLatex: 4 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index aec4260504a..af144850434 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -17,6 +17,7 @@ ClothingUniformJumpskirtSecGrey: 3 ClothingUniformJumpsuitSecBlue: 3 ClothingHeadsetSecuritySafe: 3 # Frontier - Ask SR or Sheriff for keys + ClothingMaskGasSecurity: 3 ClothingUniformJumpsuitBrigmedic: 3 ClothingUniformJumpskirtBrigmedic: 3 ClothingOuterWinterSec: 2 @@ -24,6 +25,7 @@ ClothingOuterArmorBasic: 2 ClothingOuterArmorBasicSlim: 2 ClothingOuterCoatAMG: 2 + ClothingMaskBreathMedicalSecurity: 3 ClothingEyesBlindfold: 1 ClothingShoesBootsJack: 3 ClothingShoesBootsCombat: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 54ed0d93c5d..8b857a818dc 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -6,6 +6,7 @@ ClothingHeadHatJesterAlt: 8 ClothingUniformJumpsuitJesterAlt: 8 ClothingShoesJester: 8 + ClothingNeckBellCollar: 8 ClothingOuterWinterClown: 4 ClothingOuterWinterMime: 4 ClothingOuterWinterMusician: 4 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml index 684f3d90f16..f494bbc2c4c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml @@ -10,5 +10,6 @@ MatterBinStockPart: 8 CapacitorStockPart: 8 MicroManipulatorStockPart: 8 + Beaker: 8 # Frontier - beakers are required for some machines VulpTranslator: 10 AirFreshener: 10 diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index 52c245bc6f1..1f358ea24dc 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -12,7 +12,7 @@ - "Mopping up puddles and draining them into other containers conserves the reagents found in the puddle." - "Floor drains, usually found in the chef's freezer or janitor's office, rapidly consume reagent found in puddles around them--including blood." - "Cognizine, a hard to manufacture chemical, makes animals sentient when they are injected with it." - - "Loaded mousetraps are incredibly effective at dealing with all manner of low-mass mobs--including Rat Servants." +# - "Loaded mousetraps are incredibly effective at dealing with all manner of low-mass mobs--including Rat Servants." - "Fire extinguishers can be loaded with any reagent in the game." - "Some reagents, like chlorine trifluoride, have unique effects when applied by touch, such as through a spray bottle or foam." - "Remember to touch grass in between playing Space Station 14 every once in a while." @@ -22,7 +22,7 @@ # - "When running the Singularity, make sure to check on it periodically. If sabotaged, it could put the entire station at risk." - "Chemicals don't react while inside the ChemMaster's buffer." - "You can hold SPACE by default to slow the movement of the shuttle when piloting, to allow for precise movements--or even coming to a complete stop." - - "Dexalin, Dexalin Plus, and Epinephrine will all purge Lexorin from your bloodstream while metabolizing." +# - "Dexalin, Dexalin Plus, and Epinephrine will all purge Lexorin from your bloodstream while metabolizing." - "Every crewmember comes with an emergency medipen in their survival box containing epinephrine and tranexamic acid." # - "The AME is a high-priority target and is easily sabotaged. Make sure to set up the Singularity or Solars so that you don't run out of power if it blows." - "You can add labels to any item, including food or pill canisters, using a hand labeler." @@ -41,27 +41,27 @@ # - "As a Nuclear Operative, remember that stealth is an option. It'll be hard for the captain to fight back if he gets caught off-gaurd by what he thinks is just a regular passenger!" # - "As an antagonist, be mindful of the power of destroying telecommunications. It'll be a lot harder for people to call you out if they can't do so effectively!" - "You can examine your headset to see which radio channels you have available and how to speak in them." - - "As a Salvage Technician, always carry a GPS on you and take note of the station's coordinates in case your salvage is lost to space." +# - "As a Salvage Technician, always carry a GPS on you and take note of the station's coordinates in case your salvage is lost to space." - "As a Salvage Technician, you can use your proto-kinetic accelerator to move yourself in space when in a pinch. Just be weary that it isn't very effective." - - "As a Salvage Technician, never forget to mine ore! Ore can be sold to cargo for a pretty penny, be used for construction, and also be used by Scientists for fancy technology." - - "As a Salvage Technician, try asking science for a tethergun. It can be used to grab items off of salvage wrecks extremely efficiently!" - - "As a Salvage Technician, consider cooperating with the Cargo Technicians. They can order you a wide variety of useful items, including ones that may be hard to get otherwise, such laser guns and shuttle building materials." +# - "As a Salvage Technician, never forget to mine ore! Ore can be sold to cargo for a pretty penny, be used for construction, and also be used by Scientists for fancy technology." +# - "As a Salvage Technician, try asking science for a tethergun. It can be used to grab items off of salvage wrecks extremely efficiently!" +# - "As a Salvage Technician, consider cooperating with the Cargo Technicians. They can order you a wide variety of useful items, including ones that may be hard to get otherwise, such laser guns and shuttle building materials." # - "As a Cargo Technician, consider asking science for a Ripley APLU. When paired with a hydraulic clamp, you can grab valuable maintenance objects like fuel tanks much more easily, and make deliveries in a swift manner." # - "As a Cargo Technician, try to maintain a surplus of materials. They are extremely useful for Scientists and Station Engineers to have immediate access to." # - "As a Cargo Technician, remember that you can order guns in an emergency! The extra firepower can often be the difference between you and your fellow crewmembers living or dying." - - "As the Bartender, you can use a circular saw on your shotgun to make it easier to store." +# - "As the Bartender, you can use a circular saw on your shotgun to make it easier to store." - "As a Botanist, you can mutate and crossbreed plants together to create more potent produce that also has higher yields." - - "As the Clown, spice your gimmicks up! Nobody likes a one-trick pony." - - "As the Clown, if you lose your banana peel, you can still slip people with your PDA! Honk!" - - "As the Mime, your oath of silence is your source of power. Breaking it robs you of your powers and of your honor." +# - "As the Clown, spice your gimmicks up! Nobody likes a one-trick pony." +# - "As the Clown, if you lose your banana peel, you can still slip people with your PDA! Honk!" +# - "As the Mime, your oath of silence is your source of power. Breaking it robs you of your powers and of your honor." - "As the Lawyer, try to negotiate with the Warden if sentences seem too high for the crime." - "As a Security Officer, communicate and coordinate with your fellow officers using the security radio channel to avoid confusion." - "As a Security Officer, remember that correlation does not equal causation. Someone may have just been at the wrong place at the wrong time!" - "As a Detective, you can chase criminals more effectively by using fingerprint and fiber data obtained from forensic scans of objects the perpetrator likely interacted with." - - "As an Atmospheric Technician, your ATMOS holofan projector blocks gases while allowing objects to pass through. With it, you can quickly contain gas spills, fires and hull breaches." +# - "As an Atmospheric Technician, your ATMOS holofan projector blocks gases while allowing objects to pass through. With it, you can quickly contain gas spills, fires and hull breaches." # - "As an Atmospheric Technician, try to resist the temptation of making canister bombs for Nuclear Operatives, unless you're in a last-ditch scenario. They often lead to large amounts of unnessecarry friendly fire!" - "As an Engineer, you can repair cracked windows by using a lit welding tool on them while not in combat mode." - - "As an Engineer, you can electrify grilles by placing powered cables beneath them." +# - "As an Engineer, you can electrify grilles by placing powered cables beneath them." - "As an Engineer, you can use plasma glass to reinforce an area and prevent radiation. Uranium glass can also be used to prevent radiation." # - "As the Captain, you are one of the highest priority targets on the station. Everything from revolutions, to nuclear operatives, to traitors that need to rob you of your unique laser pistol or your life are things to worry about." # - "As the Captain, always take the nuclear disk and pinpointer with you every shift. It's a good idea to give one of these to another head you can trust with keeping it safe." @@ -71,11 +71,11 @@ - "As a Scientist, you can utilize higher tier machine parts to increase the effectiveness of machines. This can make certain machines significantly better; people will love you if you upgrade their lathes!" - "As a Scientist, you can try to guess what a machine upgrade will do based on what part you are upgrading. Matter bins enhance storage capabilities, capacitors increase efficiency, and manipulators enhance power." - "As a Medical Doctor, try to be weary of overdosing your patients, especially if someone else has already been on the scene. Overdoses are often lethal to patients in crit!" - - "As a Medical Doctor, don't underestimate your cryo pods! They heal almost every type of damage, making them very useful when you are overloaded or need to heal someone in a pinch." - - "As a Medical Doctor, excise caution when putting reptilians in cryopods. They will take a lot of extra cold damage, but you can mitigate this with some burn medicine or leporazine." +# - "As a Medical Doctor, don't underestimate your cryo pods! They heal almost every type of damage, making them very useful when you are overloaded or need to heal someone in a pinch." +# - "As a Medical Doctor, excise caution when putting reptilians in cryopods. They will take a lot of extra cold damage, but you can mitigate this with some burn medicine or leporazine." - "As a Medical Doctor, remember that your health analyzer has a replacable battery. If it drains too quickly for your taste, you can ask science to print a better battery for you!" - "As a Chemist, once you've made everything you've needed to, don't be afraid to make more silly reagents. Have you tried desoxyephedrine?" - - "As a Medical Doctor, Chemist, or Chief Medical Officer, you can use chloral hydrate to non-lethally sedate unruly patients." +# - "As a Medical Doctor, Chemist, or Chief Medical Officer, you can use chloral hydrate to non-lethally sedate unruly patients." - "Don't be afraid to ask for help, whether from your peers in character or through LOOC, or from admins!" - "You'll quickly lose your interest in the game if you play to win and kill. If you find yourself doing this, take a step back and talk to people--it's a much better experience!" # - "If there's something you need from another department, try asking! This game isn't singleplayer and you'd be surprised what you can get accomplished together!" @@ -91,11 +91,11 @@ - "All forms of toxin damage are fairly difficult to treat, and usually involve the use of chemicals or other inconvienent methods. You can use this to your advantage in combat." - "You can throw crafted bolas at people to slow them down, letting you follow up on them for an easier kill or getaway." - "You can put napalm in a backpack water tank to make a flamethrower." - - "Some jobs have alternate uniforms in their respective drobe vendors. Don't be afraid to try out a new look!" +# - "Some jobs have alternate uniforms in their respective drobe vendors. Don't be afraid to try out a new look!" - "Speed is almost everything in combat. Using hardsuits just for their armor is usually a terrible idea unless the resistances it provides are geared towards combat, or you're not planning to go head-first into the fray." # - "Just because a job can't be a traitor at the beginning of a round doesn't mean that they'll never be a traitor." # - "Syndicate gas masks will both provide welding protection and block flashes. Think twice before trying to flash a Nuclear Operative!" - - "Demoman takes skill." +# - "Demoman takes skill." - "You can spray a fire extinguisher, throw items or fire a gun while floating through space to give yourself a minor boost. Simply fire opposite to where you want to go." - "You can drag other players onto yourself to open the strip menu, allowing you to remove their equipment or force them to wear something. Note that exosuits or helmets will block your access to the clothing beneath them, and that certain items take longer to strip or put on than others." - "You can climb onto a table by dragging yourself onto one." @@ -123,3 +123,48 @@ - "Monkeys have a rare chance to be sentient. Ook!" - "You can tell if an area with firelocks up is spaced by looking to see if the firelocks have lights besides them." - "Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands." + #------------# + # Frontier # + - "Smaller shuttles offer greater maneuverability, while bigger ones offer a wider and better spectrum of services. Choose wisely!" + - "If you're low on funds, try wandering into nearby ships and ask the local captains if they need a hand. Perhaps you can pick up a high-paying job!" + - "It's often better to join an existing crew than to become a solo captain. It can teach you new things and give you a good sum of money." + - "It's always better to have a crew than to stay alone in deep space. A friend can save your life if you make a mistake, or save you from trouble!" + - "Scientists often sell interesting technologies that can assist you in your job. Perhaps you would want a bottomless bag that can fit an entire station?" + - "As a scientist, you can sell your technologies to others. Many would want a bluespace bag, or a chemical dispenser." + - "Felinids and other small people can sit in bags! Ask around - maybe there are feline friends seeking for a new home?" + - "While holding a bag with 120 free space, you can force a small person inside. Be careful, they may get mad at you!" + - "Staying in deep space induces severe stress and often leads to a sudden sleep disorder. You can hire an emotional support crewmember to help you overcome it!" + - "You can use your hands to carry people! Alt-click a person while having two free hands, or use the context menu to do so." + - "The Vulpkanin will love you if you keep petting them." + - "When you enter cryosleep, your body remains stored for up to 60 minutes! As a ghost, you can use the 'un-cryo' button to wake up and return to it!" + - "If you accidentally left the game for a long time, you can still check on your character. Perhaps someone shoved them into a cryopod and you can use the 'un-cryo' button?" + - "If you see a person who's fallen SSD, make sure to drag them to cryo and shove them into a cryopod. It will prevent them from dying, and will allow the player to return to the body later!" + - "Vending machine food is bad for your health! Watch out for food trucks such as the Skipper or the McCargo - they can offer delicious food for a reasonable price!" + - "Meals cooked by chefs are more filling, more flavorful, and in some cases can even boost your movement speed for a short time!" + - "Each ID card can have a shuttle attached to it. If you need to purchase an additional shuttle, you can ask your local SR for another ID!" + - "The Station Representative can rename your shuttle! Usually it's enough to hand your ID and ask them to do it." + - "If your ship has a big crew, you can ask the SR for radio keys for your fellow crewmates. Some channels, such as Cargo or Science, are usually empty." + - "Before joining an ongoing round, you can see the list of ships registered on the New Frontiers. Perhaps some of them have jobs you would prefer?" + - "Don't forget to buy a medical implant before wandering into deep space! It will send a message to the local medics in the event of your death." + - "As a medic, you should cooperate with others when there's a medical emergency! It never helps when two medical ships arrive at the same emergency signal." + - "As a medic, you can ask the local SR for a medical PDA. It can double as a health analyzer!" + - "Medical ships often have access to the hypospray. An experienced chemist can turn it into a lethal weapon, or use it to safely put people to sleep." + - "If you're hurt, try to ask for medical help on the radio. Medics are often eager to heal the wounded, as their job usually gets boring after hours of waiting." + - "Always carry a GPS with yourself! It can help you locate your station, or tell your location to others and get saved." + - "Smuggling is very profitable, but also very risky! Remember to have an IFF console and hide your IFF before going for a dead drop." + - "As a smuggler, try to destroy any evidence of your crimes. Remember, your PDA has a notepad app, which can be used to store important notes in a digital form." + - "Security has a special IFF console that completely hides their ship on the radar! If you're an outlaw, watch out for those invisible Prowlers!" + - "Certain ships can act as motherships. They have shipyard consoles, which allow you to purchase and sell other smaller ships!" + - "Remember to check the space law book in your PDA. It contains some useful info, for example: you can start a mutiny if your captain is found to be in violation of the Space Law." + - "Your PDA has a pre-installed news application. Check it out, perhaps the local reporter has posted some interesting news?" + - "There's a special app installed in your PDA, which allows you to see posted bounties. If you can fulfill one of them, you can ask the local SR or Sheriff for a reward!" + - "Remember, Frontier Outpost has a 200m wide safe-zone. It's forbidden to engage in antagonist behavior or damage property in any way within that limit!" + - "If you're using an IFF console, remember to turn your IFF on near frontier, or you'll risk facing security on your ship!" + - "Going on an expedition alone is very risky! Make sure to always have a crewmate to save you in case you get ambushed by a xeno queen." + - "Expeditions can yield rare and useful items, and not all of them are legal. Try not to leave those lying on the floor, as security might board you at some point!" + - "Sometimes there's a Station Traffic Controller on the frontier outpost. Make sure to contact them before docking, or you may face a fine!" + - "Every crewmember starts with a traffic headset encryption key in their survival box. Make sure to use it to contact the STC before docking with the station!" + - "If you get stranded in space, make sure to notify others using the radio! Getting depressed and falling into coma is usually not the best solution." + - "Salvage is not just about whacking rocks. You can try to find large derelict stations, or try to bury deep into an unusual asteroid - but beware of the great dangers that may await you inside." + - "Trust is something that takes ages to build, and seconds to lose. Don't give players and admins a reason to hate you!" + - "There are multiple ways to earn money. You can try to get a job on frontier, join security, go salvaging, do science, or do something totally illegal. Other players can teach you each one of them!" diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml new file mode 100644 index 00000000000..1d386dd9363 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/felinid.yml @@ -0,0 +1,20 @@ +- type: marking + id: FelinidFluffyTailRings + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Felinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi + state: Felinid_fluffy_tail_full + - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi + state: felinid_fluffy_tail_rings + +- type: marking + id: FelinidFluffyTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Felinid] + sprites: + - sprite: DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi + state: Felinid_fluffy_tail_full + diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 9e2b30f93ec..6a39417f35e 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -57,6 +57,7 @@ - type: entity name: x-01 multiphase energy gun + suffix: DO NOT MAP # Frontier - Add DO NOT MAP, this is the sheriff's gun parent: BaseWeaponBatterySmall id: WeaponEnergyGunMultiphase description: This is an expensive, modern recreation of an antique laser gun. This gun has several unique firemodes, but lacks the ability to recharge over time. diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml index 5b807620c55..ab0df74bdc0 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml @@ -7,6 +7,16 @@ collection: VulpkaninScreams Laugh: collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Crying: + collection: MaleCry + Whistle: + collection: Whistles + Sigh: + collection: MaleSigh Growl: collection: VulpkaninGrowls Howl: @@ -23,6 +33,16 @@ collection: VulpkaninScreams Laugh: collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Crying: + collection: FemaleCry + Whistle: + collection: Whistles + Sigh: + collection: FemaleSigh Growl: collection: VulpkaninGrowls Howl: diff --git a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml index 246b9883798..20c04e130cb 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml @@ -5,3 +5,12 @@ - chat-speech-verb-vulpkanin-2 - chat-speech-verb-vulpkanin-3 - chat-speech-verb-vulpkanin-4 + - chat-speech-verb-vulpkanin-5 + +- type: speechVerb + id: Felinid + speechVerbStrings: + - chat-speech-verb-felinid-1 + - chat-speech-verb-felinid-2 + - chat-speech-verb-felinid-3 + - chat-speech-verb-felinid-4 diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index ea261c5c82c..4a627b33755 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -26,6 +26,7 @@ # to prevent bag open/honk spam - type: UseDelay delay: 0.5 + - type: AllowsSleepInside - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 5b704878b35..4c35147b71a 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -115,7 +115,7 @@ parent: ClothingEyesBase id: ClothingEyesGlassesSunglasses name: sun glasses - description: Useful both for security and cargonia. + description: Useful for security. # Frontier - description change components: - type: Sprite sprite: Clothing/Eyes/Glasses/sunglasses.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml index c04f3482870..b67614f1333 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/specific.yml @@ -2,7 +2,7 @@ parent: ClothingEyesBase id: ClothingEyesChameleon # no flash immunity, sorry name: sun glasses - description: Useful both for security and cargonia. + description: Useful for security. # Frontier - description change suffix: Chameleon components: - type: Tag @@ -18,4 +18,3 @@ interfaces: - key: enum.ChameleonUiKey.Key type: ChameleonBoundUserInterface - diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 50e3da93fbf..4aa4372b628 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -150,7 +150,7 @@ sprite: Clothing/Head/Misc/fancycrown.rsi - type: Clothing sprite: Clothing/Head/Misc/fancycrown.rsi - - type: MobPrice + - type: StaticPrice price: 3000 - type: AddAccentClothing accent: MobsterAccent @@ -160,7 +160,7 @@ id: ClothingHeadHatCatEars name: cat ears description: "NYAH!" - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Tag tags: # ignore "WhitelistChameleon" tag diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 6986a70451c..c9681e343d3 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -68,7 +68,7 @@ - type: Armor modifiers: coefficients: - Heat: 0.80 + Heat: 0.90 # Frontier 0.80<0.90 - type: entity parent: ClothingMaskGasAtmos @@ -109,8 +109,8 @@ - type: Armor modifiers: coefficients: - Blunt: 0.90 - Slash: 0.90 + Blunt: 0.95 # Frontier 0.90<0.95 + Slash: 0.95 # Frontier 0.90<0.95 Piercing: 0.95 Heat: 0.95 diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index 63a2643177b..6543a38eb6e 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -24,7 +24,7 @@ - type: entity parent: ClothingMaskGasChameleon id: ClothingMaskGasVoiceChameleon - suffix: Voice Mask, Chameleon + suffix: Voice Mask, Chameleon, Radio Unknown Name # Frontier - Extended suffix components: - type: VoiceMasker default: ClothingMaskGas diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 6edfe304958..e0b4ad1d772 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -215,7 +215,7 @@ parent: ClothingOuterBaseLarge id: ClothingOuterArmorCaptainCarapace name: "captain's carapace" - description: "An armored chestpiece that provides protection whilst still offering maximum mobility and flexibility. Issued only to the station's finest." + description: "An armored chestpiece that provides protection whilst still offering maximum mobility and flexibility. Issued only to the captain's of luxury vessels." # Frontier components: - type: Sprite sprite: Clothing/OuterClothing/Armor/captain_carapace.rsi @@ -229,6 +229,9 @@ Piercing: 0.70 Heat: 0.80 Caustic: 0.9 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 - type: ExplosionResistance damageCoefficient: 0.90 - type: GroupExamine diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 8f26498105a..608ab51f77f 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -122,7 +122,7 @@ - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtDetective - name: hard-worn suit + name: detective hard-worn suit # Frontier - Added detective to name description: Someone who wears this means business. components: - type: Sprite @@ -133,7 +133,7 @@ - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtDetectiveGrey - name: noir suit + name: detective noir suit # Frontier - Added detective to name description: A hard-boiled private investigator's grey suit, complete with tie clip. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index c7269763154..432dbe534de 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -235,7 +235,7 @@ - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitDetective - name: hard-worn suit + name: detective hard-worn suit # Frontier - Added detective to name description: Someone who wears this means business. components: - type: Sprite @@ -246,7 +246,7 @@ - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitDetectiveGrey - name: noir suit + name: detective noir suit # Frontier - Added detective to name description: A hard-boiled private investigator's grey suit, complete with tie clip. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml index 2fff0480689..b5a5440ec79 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml @@ -2,7 +2,7 @@ id: TattooHiveChest bodyPart: Chest markingCategory: Chest - speciesRestriction: [Human, Oni, Felinid, Dwarf, Oni] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -16,7 +16,7 @@ id: TattooNightlingChest bodyPart: Chest markingCategory: Chest - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -30,7 +30,7 @@ id: TattooSilverburghLeftLeg bodyPart: LLeg markingCategory: Legs - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -44,7 +44,7 @@ id: TattooSilverburghRightLeg bodyPart: RLeg markingCategory: Legs - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -58,7 +58,7 @@ id: TattooCampbellLeftArm bodyPart: LArm markingCategory: Arms - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -72,7 +72,7 @@ id: TattooCampbellRightArm bodyPart: RArm markingCategory: Arms - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -86,7 +86,7 @@ id: TattooCampbellLeftLeg bodyPart: LLeg markingCategory: Legs - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -100,7 +100,7 @@ id: TattooCampbellRightLeg bodyPart: RLeg markingCategory: Legs - speciesRestriction: [Human, Dwarf, Oni, Felinid] + speciesRestriction: [Human, Dwarf, Felinid, Oni] coloring: default: type: @@ -114,7 +114,7 @@ id: TattooEyeRight bodyPart: Eyes markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Oni, Felinid, Reptilian] + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Felinid, Oni] coloring: default: type: @@ -128,7 +128,7 @@ id: TattooEyeLeft bodyPart: Eyes markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Oni, Felinid, Reptilian] + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Felinid, Oni] coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 8bf82afd674..2e064d7d4aa 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -94,14 +94,15 @@ spawned: - id: FoodMeatXeno amount: 5 - - type: GhostRole - allowMovement: true - allowSpeech: true - makeSentient: true - name: ghost-role-information-xeno-name - description: ghost-role-information-xeno-description - rules: ghost-role-information-xeno-rules - - type: GhostTakeoverAvailable + # Frontier - Remove GhostRole from all xenos + # - type: GhostRole + # allowMovement: true + # allowSpeech: true + # makeSentient: true + # name: ghost-role-information-xeno-name + # description: ghost-role-information-xeno-description + # rules: ghost-role-information-xeno-rules + # - type: GhostTakeoverAvailable - type: TypingIndicator proto: alien - type: Temperature diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 94feccd0762..eee763a8aa5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -2153,7 +2153,7 @@ - Trash - type: SpaceGarbage - type: StaticPrice - price: 7.5 + price: 21 - type: entity parent: DrinkRamen diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index a253bae40a4..2c9b2b2df31 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -97,7 +97,7 @@ parent: DrinkBottleBaseFull id: DrinkCognacBottleFull name: cognac bottle - description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time. + description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. # Frontier - description change components: - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml index b8525c5f77d..d792ff3b387 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml @@ -23,7 +23,7 @@ sprite: Objects/Consumable/Food/Baked/donut.rsi size: 1 - type: StaticPrice - price: 12 + price: 14 # Tastes like donut. # The sprinkles are now an overlay, so you can put them on any donut! If we really diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml index 02ba502448f..47f0c8615f3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -399,6 +399,8 @@ - type: PhysicalComposition materialComposition: Glass: 50 + - type: StaticPrice + price: 13.5 - type: entity parent: BaseFoodCondimentBottle @@ -584,6 +586,8 @@ acts: [ "Destruction" ] - type: Sprite state: shaker-empty + - type: StaticPrice + price: 9 - type: entity parent: BaseFoodShaker diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index f5b4a5e87b4..424409b123c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -23,7 +23,7 @@ heldPrefix: packet size: 3 - type: StaticPrice - price: 7.5 + price: 1 # Snacks # "Snacks" means food in a packet. Down the line this stuff can have multiple @@ -114,7 +114,7 @@ sound: path: /Audio/Effects/unwrap.ogg - type: StaticPrice - price: 7.5 + price: 21 - type: entity name: chocolate bar @@ -375,7 +375,7 @@ sound: path: /Audio/Effects/unwrap.ogg - type: StaticPrice - price: 7 + price: 50 - type: entity id: FoodSnackNutribrickOpen @@ -427,7 +427,7 @@ sound: path: /Audio/Effects/unwrap.ogg - type: StaticPrice - price: 7 + price: 21 - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 358e3c6043e..620ba3d32c6 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -617,9 +617,6 @@ Amount: 1 DefaultPrototype: SaxophoneInstrument ExamineName: Woodwind Instrument - - type: StaticPrice - price: 400 - - type: entity id: PortableGeneratorPacmanMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index 514a938a1bb..ff53d27fce4 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -33,6 +33,7 @@ parent: EncryptionKey id: EncryptionKeyCargo name: cargo encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by supply employees. components: - type: EncryptionKey @@ -48,6 +49,7 @@ parent: EncryptionKey id: EncryptionKeyCentCom name: central command encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by captain's bosses. components: - type: EncryptionKey @@ -63,6 +65,7 @@ parent: EncryptionKey id: EncryptionKeyStationMaster name: station master encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by station's bosses. components: - type: EncryptionKey @@ -86,6 +89,7 @@ parent: EncryptionKey id: EncryptionKeyCommand name: command encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by crew's bosses. components: - type: EncryptionKey @@ -101,6 +105,7 @@ parent: EncryptionKey id: EncryptionKeyEngineering name: engineering encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by the engineers. components: - type: EncryptionKey @@ -131,6 +136,7 @@ parent: EncryptionKey id: EncryptionKeyMedicalScience name: med-sci encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by someone who hasn't decided which side to take. components: - type: EncryptionKey @@ -147,6 +153,7 @@ parent: EncryptionKey id: EncryptionKeyScience name: science encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by scientists. Maybe it is plasmaproof? components: - type: EncryptionKey @@ -162,6 +169,7 @@ parent: EncryptionKey id: EncryptionKeyRobo name: robotech encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by robototech engineers. Maybe it has a LAH-6000 on it? components: - type: EncryptionKey @@ -177,6 +185,7 @@ parent: EncryptionKey id: EncryptionKeySecurity name: nfsd encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by the New Frontier Sheriff's Department. components: - type: EncryptionKey @@ -192,6 +201,7 @@ parent: EncryptionKey id: EncryptionKeyService name: service encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by the service staff, tasked with keeping the station full, happy and clean. components: - type: EncryptionKey @@ -207,6 +217,7 @@ parent: EncryptionKey id: EncryptionKeySyndie name: blood-red encryption key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key used by... wait... Who is owner of this chip? components: - type: EncryptionKey @@ -222,6 +233,7 @@ parent: EncryptionKey id: EncryptionKeyBinary name: binary translator key + suffix: DO NOT MAP # Frontier - Add DO NOT MAP suffix description: An encryption key that translates binary signals used by silicons. components: - type: EncryptionKey diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml index 1ab803c5e27..cd258533f78 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml @@ -136,4 +136,4 @@ state: icon - type: Item size: 24 - sprite: Objects/Fun/Instruments/h_synthesizer.rsi \ No newline at end of file + sprite: Objects/Fun/Instruments/h_synthesizer.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/figurine_boxes.yml b/Resources/Prototypes/Entities/Objects/Fun/figurine_boxes.yml index dbbe86678f0..9085f9be338 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/figurine_boxes.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/figurine_boxes.yml @@ -133,3 +133,6 @@ - id: ToyFigurineHamlet prob: 0.20 orGroup: SpacemenFig + - type: Tag + tags: + - MysteryFigureBox diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 1b601c9f95e..ddb391c7bb2 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -1022,6 +1022,9 @@ density: 30 mask: - ItemMask + - type: Tag # Frontier + tags: # Frontier + - WhoopieCushion # Frontier - type: entity name: banana diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 6c52fc05c8a..e925fab129b 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -56,8 +56,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: VendPrice - price: 1 - type: StaticPrice price: 0 # Stop fax copy abuse. @@ -658,7 +656,7 @@ name: captain's rubber stamp parent: RubberStampBase id: RubberStampCaptain - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-captain @@ -686,7 +684,7 @@ name: chaplain's rubber stamp parent: RubberStampBase id: RubberStampChaplain - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-chaplain @@ -700,7 +698,7 @@ name: clown's rubber stamp parent: RubberStampBase id: RubberStampClown - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-clown @@ -717,7 +715,7 @@ name: chief engineer's rubber stamp parent: RubberStampBase id: RubberStampCE - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-ce @@ -731,7 +729,7 @@ name: chief medical officer's rubber stamp parent: RubberStampBase id: RubberStampCMO - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-cmo @@ -773,7 +771,7 @@ name: mime's rubber stamp parent: RubberStampBase id: RubberStampMime - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-mime @@ -788,7 +786,7 @@ name: quartermaster's rubber stamp parent: RubberStampBase id: RubberStampQm - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-qm @@ -802,7 +800,7 @@ name: research director's rubber stamp parent: RubberStampBase id: RubberStampRd - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-rd @@ -829,7 +827,7 @@ name: syndicate rubber stamp parent: RubberStampBase id: RubberStampSyndicate - suffix: DO NOT MAP + # suffix: DO NOT MAP - Frontier components: - type: Stamp stampedName: stamp-component-stamped-name-syndicate diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index 7749172552e..38112f5c9ad 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -108,6 +108,7 @@ - type: Tag tags: - Trash + - Ash # Frontier - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml index adae56a3711..904b6919a6f 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -142,6 +142,7 @@ - MailDrobeInventory - RepDrobeInventory - BoxingDrobeInventory + - PietyVendInventory - type: Sprite layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index 75ff960d8c8..1f8c5245d7c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -42,6 +42,7 @@ - Maintenance - Medical - Mercenary # Frontier + - Pilot # Frontier - Quartermaster - Research - ResearchDirector diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index c92b1a63ce8..353b8453b79 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -504,6 +504,13 @@ Wood: 50 - type: StaticPrice price: 25 + # Delta V: Adds tool quality for digging + - type: Tool + qualities: + - Digging + useSound: + path: /Audio/Nyanotrasen/Items/shovel_dig.ogg + - type: EarthDigging - type: entity parent: BaseItem diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml index 041cf446c11..6284f984f47 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml @@ -47,3 +47,7 @@ - Belt - type: UseDelay delay: 1 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml index 76bd0b9e750..54eb9be8577 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml @@ -20,4 +20,6 @@ - type: Tag tags: - WizardStaff + - WeaponRanged # Frontier + - WeaponLongarms # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml index 3b97eac8ee9..5aa52bef53d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml @@ -25,3 +25,5 @@ - type: Tag tags: - WizardWand + - WeaponRanged # Frontier + - WeaponShortArms # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml index a815f9c0cd1..16aa8e9d097 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: WeaponWaterGunBase abstract: true parent: BaseItem @@ -49,6 +49,11 @@ - type: PhysicalComposition materialComposition: Plastic: 150 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponShortArms # Frontier + - Sidearm # Frontier - type: entity id: WeaponWaterPistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index f59af15bfd6..ee6c8e883ce 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -30,6 +30,10 @@ - type: Appearance - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity id: BaseWeaponBatterySmall @@ -40,6 +44,8 @@ size: 10 - type: Tag tags: + - WeaponRanged # Frontier + - WeaponShortArms # Frontier - Sidearm - type: Clothing sprite: Objects/Weapons/Guns/Battery/taser.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml index 88640f7812f..31cd9fd9bdd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml @@ -43,6 +43,10 @@ arrow: !type:ContainerSlot - type: ContainerAmmoProvider container: arrow + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity id: BowImprovised diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml index 785b36cc620..c36ba21bb43 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml @@ -18,6 +18,10 @@ path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier # No chamber because HMG may want its own - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml index 62142519bfa..759fe6acc49 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml @@ -60,6 +60,10 @@ price: 500 - type: UseDelay delay: 1 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: L6 SAW diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 3796ac92b89..7a45e8c7d98 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -19,6 +19,10 @@ containers: ballistic-ammo: !type:Container ents: [] + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: china lake @@ -261,6 +265,11 @@ unshaded: True: { state: base-unshaded } False: { state: base-unshaded-off } + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponShortArms # Frontier + - Sidearm # Frontier # Admeme - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 3b5004a04a8..1f5c02563ab 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -16,6 +16,8 @@ - type: Tag tags: - Sidearm + - WeaponRanged # Frontier + - WeaponShortArms # Frontier - type: Clothing sprite: Objects/Weapons/Guns/Pistols/viper.rsi quickEquip: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index db41e8f0d19..0c85dd54880 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -12,6 +12,8 @@ - type: Tag tags: - Sidearm + - WeaponRanged # Frontier + - WeaponShortArms # Frontier - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/deckard.rsi quickEquip: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 114573c0879..eb37bc0bd03 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -49,6 +49,10 @@ gun_chamber: !type:ContainerSlot - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: AKMS diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index e423c098412..81ba69b7254 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -54,6 +54,10 @@ gun_chamber: !type:ContainerSlot - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: Atreides diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 752dea6dffb..093faba1697 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -42,6 +42,10 @@ ents: [] - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: Bulldog @@ -98,6 +102,10 @@ - type: Appearance - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: double-barreled shotgun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 62bd7064438..1e5be444692 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -36,6 +36,10 @@ ents: [] - type: StaticPrice price: 500 + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: Kardashev-Mosin diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml index 97146067eb1..11410dfe2d6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml @@ -39,3 +39,7 @@ - type: StaticPrice #Dunno if I should be doing this outside of the _NF file price: 150 + - type: Tag # Frontier + tags: # Frontier + - Sidearm + - WeaponShortArms # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index 9f3aec5c39b..16e5b3af477 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml @@ -63,6 +63,10 @@ storagebase: !type:Container ents: [] gas_tank: !type:ContainerSlot + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier - type: entity name: pie cannon @@ -103,6 +107,10 @@ containers: storagebase: !type:Container ents: [] + - type: Tag # Frontier + tags: # Frontier + - WeaponRanged # Frontier + - WeaponLongarms # Frontier # shoots bullets instead of throwing them, no other changes - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml index 9e9288c8d4a..fcd1b4fa156 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml @@ -22,3 +22,6 @@ qualities: - Prying - type: Prying + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index 191bc0f0583..e29403de64d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -36,3 +36,4 @@ - type: Tag tags: - BaseballBat + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml index 13f5191c103..320f402e540 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml @@ -45,3 +45,6 @@ maxVol: 300 - type: UseDelay delay: 1 + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml index 661ee379b24..895b19b7828 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml @@ -21,6 +21,9 @@ slots: - back - type: DisarmMalus + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier - type: entity name: eldritch blade @@ -45,6 +48,9 @@ slots: - back - type: DisarmMalus + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier - type: entity name: unholy halberd @@ -55,6 +61,7 @@ - type: Tag tags: - FireAxe + - WeaponMelee # Frontier - type: Sharp - type: Sprite sprite: Objects/Weapons/Melee/cult_halberd.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml index 7d29c269724..3531976852c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml @@ -7,6 +7,7 @@ - type: Tag tags: - FireAxe + - WeaponMelee # Frontier - type: Sharp - type: Sprite sprite: Objects/Weapons/Melee/fireaxe.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml index 9e673da49d0..f2c96798a6d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml @@ -15,3 +15,6 @@ - type: Item size: 12 sprite: Objects/Weapons/Melee/gohei.rsi + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index 7341f2470b0..b0ac8a8b754 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -13,6 +13,9 @@ radius: 4 - type: StaticPrice price: 255 + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier - type: entity name: crusher @@ -22,6 +25,7 @@ - type: Tag tags: - Pickaxe + - WeaponMelee # Frontier - type: Sprite sprite: Objects/Weapons/Melee/crusher.rsi state: icon @@ -104,6 +108,7 @@ - type: Tag tags: - Pickaxe + - WeaponMelee # Frontier - type: UseDelayOnShoot - type: UseDelay delay: 1.9 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml index 48b2d6ad2b8..2e18c941ba4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml @@ -15,3 +15,6 @@ - type: Item size: 1 - type: BalloonPopper + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml index 438493bb513..0273627cc49 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml @@ -7,6 +7,7 @@ - type: Tag tags: - Pickaxe + - WeaponMelee # Frontier - type: Sprite sprite: Objects/Weapons/Melee/pickaxe.rsi state: pickaxe @@ -47,6 +48,7 @@ - type: Tag tags: - Pickaxe + - WeaponMelee # Frontier - type: Sprite sprite: Objects/Tools/handdrill.rsi state: handdrill diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml index 8a3754c035f..c60901def5c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml @@ -20,3 +20,6 @@ Structural: 60 - type: Item size: 80 + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index 9ebedb5b280..a74a45c769d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -11,6 +11,7 @@ - type: Tag tags: - Spear + - WeaponMelee # Frontier - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml index 25c9cf61257..0ad31546b2a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml @@ -46,3 +46,6 @@ - type: Construction graph: makeshiftstunprod node: msstunprod + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index fd5a62aaa31..4b89529e22a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -26,6 +26,7 @@ - type: Tag tags: - CaptainSabre + - WeaponMelee # Frontier - type: DisarmMalus - type: Clothing quickEquip: false @@ -43,6 +44,7 @@ - type: Tag tags: - Katana + - WeaponMelee # Frontier - type: Sprite sprite: Objects/Weapons/Melee/katana.rsi state: icon @@ -104,6 +106,7 @@ - type: Tag tags: - Machete + - WeaponMelee # Frontier - type: Sprite sprite: Objects/Weapons/Melee/machete.rsi state: icon @@ -150,6 +153,9 @@ - back - suitStorage - type: DisarmMalus + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier - type: entity name: cutlass @@ -161,6 +167,7 @@ - type: Tag tags: - Machete + - WeaponMelee # Frontier - type: Sprite sprite: Objects/Weapons/Melee/cutlass.rsi state: icon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml index c76ebf4d783..1f2203ad297 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml @@ -24,4 +24,7 @@ Blunt: 3 - type: UseDelay delay: 1 + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index 92e7dbd4c1d..5b18e221bc0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -64,6 +64,9 @@ - type: GuideHelp guides: - Security + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier - type: entity name: truncheon @@ -95,6 +98,9 @@ - type: GuideHelp guides: - Security + - type: Tag # Frontier + tags: # Frontier + - WeaponMelee # Frontier - type: entity name: flash diff --git a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml index cc0c90503d0..bb020fd9f60 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml @@ -41,7 +41,7 @@ id: BannerCargo parent: BannerBase name: cargo banner - description: A banner displaying the colors of the cargo department. Not. Cargonia. + description: A banner displaying the colors of the cargo department. # Frontier - description change components: - type: Sprite sprite: Structures/Decoration/banner.rsi @@ -101,7 +101,7 @@ id: BannerSecurity parent: BannerBase name: security banner - description: A banner displaying the colors of the shitcurity department. Security, my bad. + description: A banner displaying the colors of the security department. # Frontier - description change components: - type: Sprite sprite: Structures/Decoration/banner.rsi @@ -146,5 +146,3 @@ - type: Sprite sprite: Structures/Decoration/banner.rsi state: banner-green - - diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml index 233e0201938..5e2eb5689fb 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/external.yml @@ -2,10 +2,9 @@ parent: Airlock id: AirlockExternal suffix: External - description: It opens, it closes, it might crush you, and there might be only space behind it. Has to be manually activated. + description: It opens, it closes, it might crush you, and there might be only space behind it. components: - type: Door - bumpOpen: false crushDamage: types: Blunt: 15 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index aa14d74838a..f8778842e4b 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -45,7 +45,6 @@ - type: Wires layoutId: Docking - type: Door - bumpOpen: false closeTimeTwo: 0.4 openTimeTwo: 0.4 crushDamage: diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index a7a99c5bbf5..d9c2fea91a0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -745,8 +745,9 @@ - type: GuideHelp guides: - Cargo - - type: Anchorable - - type: Destructible + - type: Anchorable # Frontier + delay: 999999 + - type: Destructible # Frontier thresholds: - trigger: !type:DamageTrigger diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml index ce370378b43..3d881d462af 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_equipment.yml @@ -245,9 +245,11 @@ - type: MaterialStorage whitelist: tags: - - Sheet +# - Sheet # Frontier + - RawMaterial # Frontier materialWhiteList: - - Plasma +# - Plasma # Frontier + - Bananium # Frontier - type: Fixtures fixtures: fix1: diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index f680f74d3b8..3636ecab7c0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -24,9 +24,13 @@ bounds: "-0.25,-0.25,0.25,0.25" density: 25 mask: - - TabletopMachineMask - layer: - - TabletopMachineLayer +# - TabletopMachineMask + - Impassable # Frontier +# - MidImpassable # Frontier - Do not add this, it will block shutters from closing on it. + - LowImpassable # Frontier +# layer: # Frontier +# - TabletopMachineLayer # Frontier +# - LowImpassable # Frontier - type: ActivatableUI key: enum.FaxUiKey.Key - type: ActivatableUIRequiresPower diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index cf8849fd6bf..5f86857f882 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -795,6 +795,8 @@ - ClothingUniformJumpskirtBrigmedic - ClothingUniformJumpsuitWarden - ClothingUniformJumpskirtWarden + - ClothingUniformJumpsuitSecStationGuard #Frontier + - ClothingUniformJumpskirtSecStationGuard #Frontier - ClothingOuterWinterCap - ClothingOuterWinterCE - ClothingOuterWinterCMO diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index a8975abf7c3..7e2325e8994 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -67,7 +67,7 @@ - type: entity parent: TelecomServer id: TelecomServerFilled - suffix: Filled + suffix: Filled, DO NOT MAP # Frontier - Added DO NOT MAP components: - type: ContainerFill containers: @@ -80,4 +80,4 @@ - EncryptionKeySecurity - EncryptionKeyService - EncryptionKeyCommand - - EncryptionKeyTraffic # Frontier + - EncryptionKeyTraffic # Frontier - Add Traffic channel diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index ac21365e2c1..d0fd5e63dd1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -124,9 +124,12 @@ !type:PhysShapeAabb bounds: "-0.3,-0.16,0.3,0.40" mask: - - MachineMask - layer: - - MachineLayer + - Impassable # Frontier +# - MidImpassable # Frontier - Do not add this, it will block shutters from closing on it. + - LowImpassable # Frontier +# - MachineMask # Frontier +# layer: # Frontier +# - MachineLayer # Frontier density: 190 - type: Advertise pack: CondimentVendAds diff --git a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml index eef5ef6ed6c..769d241f5fc 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Tanks/base_structuretanks.yml @@ -15,7 +15,7 @@ shape: !type:PhysShapeAabb bounds: "-0.4,-0.4,0.4,0.4" - density: 155 + density: 90 # Frontier mask: - MachineMask layer: diff --git a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml index f90993bd878..61f62f230b0 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml @@ -1,12 +1,13 @@ - type: entity id: OreBox name: ore box - description: A large storage container for holding unprocessed ores. + # description: A large storage container for holding unprocessed ores. + description: A large storage container for collecting and holding unprocessed ores and fragments. # Frontier parent: BaseStructureDynamic components: - type: StaticPrice # price: 500 - price: 1000 + price: 1000 # Frontier - type: Anchorable - type: InteractionOutline - type: Damageable @@ -71,9 +72,6 @@ ents: [ ] - type: Dumpable # Frontier - type: MagnetPickup # Frontier - isFixture: true - pickupWhenNotAnchored: true - pickupWhenAnchored: false range: 1.5 # Ore bag has a range of 1.0 - type: Fixtures fixtures: @@ -84,6 +82,7 @@ # very not dense to make it easy to pull density: 20 mask: - - MachineMask + #- MachineMask + - SmallMobMask # Frontier layer: - MachineLayer diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml index 3e91daaa390..85ef99565a1 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml @@ -62,7 +62,7 @@ boardName: wires-board-name-airalarm layoutId: AirAlarm - type: AccessReader - access: [["Atmospherics"]] + access: [["Atmospherics"], ["Captain"]] # Frontier: allowed ["Captain"] to access air alarms - type: ContainerFill containers: board: [ AirAlarmElectronics ] diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index c8cdcfd40aa..02a7e37e1f1 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -130,16 +130,18 @@ - type: Intercom supportedChannels: - Common + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomCommand parent: Intercom - suffix: Command + suffix: Command, DO NOT MAP # Frontier - Added DO NOT MAP components: - type: Intercom supportedChannels: - Common - Command + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomEngineering @@ -150,6 +152,7 @@ supportedChannels: - Common - Engineering + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomMedical @@ -160,6 +163,7 @@ supportedChannels: - Common - Medical + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomScience @@ -170,16 +174,18 @@ supportedChannels: - Common - Science + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomSecurity parent: Intercom - suffix: Security + suffix: Security # Frontier - Not adding DO NOT MAP. (Prototype is already matched by "Security" for sec shipyard.) components: - type: Intercom supportedChannels: - Common - Security + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomService @@ -190,6 +196,7 @@ supportedChannels: - Common - Service + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomSupply @@ -200,11 +207,12 @@ supportedChannels: - Common - Supply + - Traffic # Frontier - Add Traffic channel - type: entity id: IntercomAll parent: Intercom - suffix: All + suffix: All, DO NOT MAP # Frontier - Added DO NOT MAP components: - type: Intercom supportedChannels: @@ -216,3 +224,4 @@ - Security - Service - Supply + - Traffic # Frontier - Add Traffic channel diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index cae9b55452e..e50606694e3 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -1,13 +1,14 @@ - type: entity id: PlastitaniumWindow name: plastitanium window - parent: Window + parent: PlastitaniumWindowIndestructible # Frontier - Change to ReinforcedWindow + suffix: "" # Frontier components: - - type: Sprite - drawdepth: WallTops - sprite: Structures/Windows/plastitanium_window.rsi - - type: Icon - sprite: Structures/Windows/plastitanium_window.rsi + # - type: Sprite + # drawdepth: WallTops + # sprite: Structures/Windows/plastitanium_window.rsi + # - type: Icon + # sprite: Structures/Windows/plastitanium_window.rsi - type: Damageable damageContainer: Inorganic damageModifierSet: RGlass @@ -33,14 +34,25 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: IconSmooth - base: plwindow - - type: Appearance + # - type: IconSmooth + # base: plwindow + # - type: Appearance - type: DamageVisuals thresholds: [4, 8, 12] damageDivisor: 36 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: StaticPrice - price: 65 + # - type: StaticPrice + # price: 65 + - type: Construction # Frontier + graph: Plastitanium + node: plastitaniumWindow + - type: Repairable + - type: ExaminableDamage + messages: WindowMessages + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Effects/glass_hit.ogg" diff --git a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml index 78fbf2feb62..ce433af4f98 100644 --- a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml +++ b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml @@ -47,8 +47,10 @@ board: CargoTelepadMachineCircuitboard - type: Appearance - type: CollideOnAnchor - - type: Destructible + - type: Destructible # Frontier thresholds: - trigger: !type:DamageTrigger damage: 0 + - type: Anchorable # Frontier + delay: 999999 diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index f5dd29a12ac..3887a2ce07d 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -56,12 +56,6 @@ - id: SpawnMobKangarooSalvage prob: 0.001 orGroup: rock - - id: SpawnMobSmallPurpleSnake - prob: 0.001 - orGroup: rock - - id: SpawnMobPurpleSnake - prob: 0.001 - orGroup: rock - type: GCAbleObject queue: SpaceDebris - type: IFF @@ -117,8 +111,8 @@ components: - type: MapGrid - type: BlobFloorPlanBuilder - radius: 32 - floorPlacements: 128 + radius: 28 + floorPlacements: 108 - type: entity id: AsteroidSalvageSmall diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Misc/tiles.yml new file mode 100644 index 00000000000..0ab386f96dd --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Misc/tiles.yml @@ -0,0 +1,63 @@ +- type: entity + name: dark grass tile + parent: FloorTileItemBase + id: FloorTileItemGrassDark + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: grassdark + - type: Item + heldPrefix: grassdark + - type: FloorTile + outputs: + - FloorGrassDark + - type: Stack + stackType: FloorTileGrassDark + +- type: entity + name: light grass tile + parent: FloorTileItemBase + id: FloorTileItemGrassLight + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: grasslight + - type: Item + heldPrefix: grasslight + - type: FloorTile + outputs: + - FloorGrassLight + - type: Stack + stackType: FloorTileGrassLight + +- type: entity + name: dirt tile + parent: FloorTileItemBase + id: FloorTileItemDirt + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: dirt + - type: Item + heldPrefix: dirt + - type: FloorTile + outputs: + - FloorDirt + - type: Stack + stackType: FloorTileDirt + +- type: entity + name: bedrock tile + parent: FloorTileItemBase + id: FloorTileItemBedrock + components: + - type: Sprite + sprite: /Textures/Nyanotrasen/Objects/Tiles/tiles.rsi + state: bedrock + - type: Item + heldPrefix: bedrock + - type: FloorTile + outputs: + - FloorBedrock + - type: Stack + stackType: FloorTileBedrock diff --git a/Resources/Prototypes/Nyanotrasen/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Nyanotrasen/Stacks/floor_tile_stacks.yml new file mode 100644 index 00000000000..d472b3054b9 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Stacks/floor_tile_stacks.yml @@ -0,0 +1,23 @@ +- type: stack + id: FloorTileGrassDark + name: dark grass floor tile + spawn: FloorTileItemGrassDark + maxCount: 30 + +- type: stack + id: FloorTileGrassLight + name: light grass floor tile + spawn: FloorTileItemGrassLight + maxCount: 30 + +- type: stack + id: FloorTileDirt + name: dirt floor tile + spawn: FloorTileItemDirt + maxCount: 30 + +- type: stack + id: FloorTileBedrock + name: bedrock floor tile + spawn: FloorTileItemBedrock + maxCount: 30 diff --git a/Resources/Prototypes/Nyanotrasen/Tiles/floors.yml b/Resources/Prototypes/Nyanotrasen/Tiles/floors.yml new file mode 100644 index 00000000000..d537e0bdb3e --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Tiles/floors.yml @@ -0,0 +1,20 @@ +- type: tile + id: FloorBedrock + name: tiles-bedrock-floor + sprite: /Textures/Nyanotrasen/Tiles/bedrock.png + variants: 4 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Space + isSubfloor: true + #canCrowbar: true # Come back + # Maybe if there's ever some way to combine grids or prevent overly simple spacing. + # canShovel: true + footstepSounds: + collection: FootstepAsteroid + itemDrop: FloorTileItemBedrock # Delta V + heatCapacity: 10000 + weather: true diff --git a/Resources/Prototypes/Nyanotrasen/tool_qualities.yml b/Resources/Prototypes/Nyanotrasen/tool_qualities.yml new file mode 100644 index 00000000000..6780b2ee210 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/tool_qualities.yml @@ -0,0 +1,6 @@ +- type: tool + id: Digging + name: tool-quality-digging-name + toolName: tool-quality-digging-tool-name + spawn: Shovel + icon: { sprite: Objects/Tools/shovel.rsi, state: icon } diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml index 5cf4fd9449b..995d86641bc 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml @@ -8,6 +8,7 @@ supervisors: job-supervisors-everyone access: - Maintenance + - External # Frontier - type: startingGear id: PassengerGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index 74384461c62..85b217a84b8 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -13,6 +13,7 @@ - Service - Maintenance - Bar + - External # Frontier extendedAccess: - Kitchen - Hydroponics diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml index 08fdeb940de..52753ccaea0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml @@ -13,6 +13,7 @@ - Service - Maintenance - Hydroponics + - External # Frontier extendedAccess: - Kitchen - Bar diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index ed659e7efa8..c51905cd91b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -12,6 +12,7 @@ access: - Chapel - Maintenance + - External # Frontier special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index 0a400b19d21..f467c7304b5 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -13,6 +13,7 @@ - Service - Maintenance - Kitchen + - External # Frontier extendedAccess: - Hydroponics - Bar #Nyano - Summary: After this line, Professional Che is a component to be added. Very important. diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml index b8640c8d605..ce727a616f4 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml @@ -12,6 +12,7 @@ access: - Theatre - Maintenance + - External # Frontier special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index 3157605f152..1a784f01cf4 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -12,6 +12,7 @@ access: - Janitor - Maintenance + - External # Frontier special: - !type:GiveItemOnHolidaySpecial holiday: GarbageDay diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index e7f87a64071..42a08414811 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -13,6 +13,7 @@ - Service - Brig - Maintenance + - External # Frontier - type: startingGear id: LawyerGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml index dc379216d70..e14a17b965b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/librarian.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: LibrarianGear diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index d086c59e330..0f20e8558a0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -12,6 +12,7 @@ access: - Theatre - Maintenance + - External # Frontier special: - !type:AddComponentSpecial components: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml index 75534b6f3fb..94091b076a6 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/musician.yml @@ -12,6 +12,7 @@ access: - Maintenance # TODO Remove maint access for all gimmick jobs once access work is completed - Theatre + - External # Frontier special: - !type:GiveItemOnHolidaySpecial holiday: MikuDay diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index 3cff97c163b..3033777ab54 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -15,6 +15,7 @@ - Maintenance - Bar - Kitchen + - External # Frontier extendedAccess: - Hydroponics diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index fb6413abf25..9df7d5c7990 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -31,6 +31,8 @@ canBeAntag: false access: - Captain # Just making sure in the case of any error that this role cannot be used for any bad doing. + - Maintenance # Frontier + - External # Frontier # accessGroups: # - AllAccess # special: diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index ddd15ae274a..f54f104cd9e 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -48,6 +48,7 @@ - ResearchDirector # Frontier - Armory # Frontier - Mercenary # Frontier + - Pilot # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant, TrackingImplant ] # Frontier - Added TrackingImplant @@ -67,7 +68,7 @@ eyes: ClothingEyesGlassesSunglasses belt: BoxFolderQmClipboard # Frontier neck: ClothingNeckCloakHop # Frontier - outerClothing: ClothingOuterWinterHoP # Frontier + outerClothing: ClothingOuterArmorSRCarapace # Frontier pocket1: WeaponDisabler # Frontier innerClothingSkirt: ClothingUniformJumpskirtHoP satchel: ClothingBackpackSatchelHOPFilled diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index 7302d7b4891..1b8ad313f16 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -13,6 +13,7 @@ - Medical - Chemistry - Maintenance + - External # Frontier - type: startingGear id: ChemistGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 5e605b42aab..98d031aee11 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -20,6 +20,7 @@ - Maintenance - Chemistry - ChiefMedicalOfficer + - External # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index df990775623..62af62184dd 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -12,6 +12,7 @@ access: - Medical - Maintenance + - External # Frontier extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index c6ff734587c..586c437c54e 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -15,6 +15,7 @@ access: - Medical - Maintenance + - External # Frontier - type: startingGear id: MedicalInternGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index e83ed1ebb63..858eb903c21 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -12,7 +12,7 @@ access: - Medical - Maintenance - - External + - External # Frontier extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml index 0a21c15e5cd..910460b53eb 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml @@ -20,6 +20,7 @@ - Medical - Maintenance - Chemistry + - External # Frontier - type: startingGear id: SeniorPhysicianGear diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 996a3051340..b4e93d239e0 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -15,6 +15,7 @@ access: - Research - Maintenance + - External # Frontier - type: startingGear id: ResearchAssistantGear diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 16a26d0bcb6..70e0a22bcfb 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -17,6 +17,7 @@ - Command - Maintenance - ResearchDirector + - External # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml index e205715626a..a596d3a38d3 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml @@ -12,6 +12,7 @@ access: - Research - Maintenance + - External # Frontier - type: startingGear id: ScientistGear diff --git a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml index 6155eb189d3..4f0b988a293 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/senior_researcher.yml @@ -13,6 +13,7 @@ access: - Research - Maintenance + - External # Frontier - type: startingGear id: SeniorResearcherGear diff --git a/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml index 7b501a69b59..dc9ddd36b25 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml @@ -4,11 +4,11 @@ description: job-description-brigmedic playTimeTracker: JobBrigmedic requirements: - - !type:DepartmentTimeRequirement - department: Medical - time: 10800 # 3 hrs +# - !type:DepartmentTimeRequirement +# department: Medical +# time: 10800 # 3 hrs - !type:OverallPlaytimeRequirement - time: 21600 # 6 hrs + time: 36000 # Frontier - 10 hrs startingGear: BrigmedicGear icon: "JobIconBrigmedic" supervisors: job-supervisors-hos diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 8611237de60..f551ae3f935 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -5,7 +5,7 @@ playTimeTracker: JobDetective requirements: - !type:OverallPlaytimeRequirement - time: 21600 + time: 36000 # Frontier - 10 hrs startingGear: DetectiveGear icon: "JobIconDetective" supervisors: job-supervisors-hos @@ -16,6 +16,7 @@ - Maintenance - Service - Detective + - External # Frontier - Mercenary # Frontier - Captain # Frontier special: diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 31c8fccf84b..946691e42cf 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -58,6 +58,7 @@ - ChiefEngineer # Frontier - ChiefMedicalOfficer # Frontier - ResearchDirector # Frontier + - Pilot # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant, TrackingImplant ] diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index 459d0f76d1b..22e282c2635 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -8,7 +8,7 @@ time: 10800 - !type:DepartmentTimeRequirement department: Security - time: 54000 #15 hrs + time: 36000 # Frontier - 10 hrs inverted: true # stop playing intern if you're good at security! startingGear: SecurityCadetGear icon: "JobIconSecurityCadet" diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index ab094a722e3..051496b4a20 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -5,7 +5,7 @@ playTimeTracker: JobSecurityOfficer requirements: - !type:OverallPlaytimeRequirement - time: 21600 + time: 36000 # Frontier - 10 hrs startingGear: SecurityOfficerGear icon: "JobIconSecurityOfficer" supervisors: job-supervisors-hos diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 284375308c2..e4b47ec9c56 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -8,7 +8,7 @@ time: 21600 # Frontier - 6 hours - !type:RoleTimeRequirement role: JobSecurityOfficer - time: 21600 # Frontier - 6 hours + time: 36000 # Frontier - 10 hrs startingGear: WardenGear icon: "JobIconWarden" supervisors: job-supervisors-hos diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml index 147d296eba7..80bf28f4393 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/boxer.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: BoxerGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml index 7b8854b6e84..4f1bfbd71d4 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/psychologist.yml @@ -12,6 +12,7 @@ access: - Medical - Maintenance + - External # Frontier extendedAccess: - Chemistry diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml index 16e2a4359ab..580449359d4 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/reporter.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: ReporterGear diff --git a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml index 4e3f58a4dc0..d055dc13050 100644 --- a/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml +++ b/Resources/Prototypes/Roles/Jobs/Wildcards/zookeeper.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: ZookeeperGear diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index e2cbfb93dbe..a749c56e042 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -87,6 +87,7 @@ - Detective - Warden - PrisonGuard ##nyano + - Prisoner ##nyano - Brigmedic - type: department diff --git a/Resources/Prototypes/Roles/play_time_trackers.yml b/Resources/Prototypes/Roles/play_time_trackers.yml index 99c029450d1..da9b84214bd 100644 --- a/Resources/Prototypes/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/Roles/play_time_trackers.yml @@ -136,9 +136,6 @@ - type: playTimeTracker id: JobServiceWorker -- type: playTimeTracker - id: JobSTC - - type: playTimeTracker id: JobStationEngineer diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 43dbd76b104..163a869ad91 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -1266,8 +1266,8 @@ name: tiles-planet-grass-floor sprite: /Textures/Tiles/grass.png baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass itemDrop: FloorTileItemGrass @@ -1279,8 +1279,8 @@ name: tiles-jungle-grass-floor sprite: /Textures/Tiles/grassjungle.png baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass itemDrop: FloorTileItemGrassJungle @@ -1298,10 +1298,11 @@ - 1.0 - 1.0 baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass + itemDrop: FloorTileItemGrassDark # Delta V heatCapacity: 10000 weather: true @@ -1316,10 +1317,11 @@ - 1.0 - 1.0 baseTurf: FloorDirt - isSubfloor: true - canCrowbar: false + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepGrass + itemDrop: FloorTileItemGrassLight heatCapacity: 10000 weather: true @@ -1333,13 +1335,14 @@ - 1.0 - 1.0 - 1.0 - baseTurf: Plating - isSubfloor: true - canCrowbar: false + baseTurf: FloorBedrock # Delta V + #canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepAsteroid + itemDrop: FloorTileItemDirt # Delta V heatCapacity: 10000 - weather: true + weather: True # Asteroid diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index c5095eb5d0a..1452a7a66e7 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -121,8 +121,10 @@ East: /Textures/Tiles/Planet/Snow/snow_double_edge_east.png North: /Textures/Tiles/Planet/Snow/snow_double_edge_north.png West: /Textures/Tiles/Planet/Snow/snow_double_edge_west.png - isSubfloor: true - canCrowbar: false + baseTurf: FloorDirt + itemDrop: FloorTileItemSnow # Delta V + canCrowbar: false # Come back + canShovel: true # Delta V footstepSounds: collection: FootstepSnow heatCapacity: 10000 diff --git a/Resources/Prototypes/World/Biomes/basic.yml b/Resources/Prototypes/World/Biomes/basic.yml index 51bf0831ba7..17b211b73ec 100644 --- a/Resources/Prototypes/World/Biomes/basic.yml +++ b/Resources/Prototypes/World/Biomes/basic.yml @@ -10,11 +10,11 @@ ##- id: AsteroidDebrisSmall - id: AsteroidDebrisMedium - id: AsteroidDebrisLarge - prob: 0.7 + prob: 0.6 - id: AsteroidDebrisLarger - prob: 0.4 + prob: 0.3 - id: AsteroidDebrisHuge - prob: 0.2 + prob: 0.15 - type: NoiseDrivenDebrisSelector noiseChannel: Wreck debrisTable: diff --git a/Resources/Prototypes/_NF/Access/pilot.yml b/Resources/Prototypes/_NF/Access/pilot.yml new file mode 100644 index 00000000000..819b4f0b4bb --- /dev/null +++ b/Resources/Prototypes/_NF/Access/pilot.yml @@ -0,0 +1,3 @@ +- type: accessLevel + id: Pilot + name: id-card-access-level-pilot diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_food.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_food.yml new file mode 100644 index 00000000000..6d7044db60b --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_food.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: FoodCrateFreezer + icon: + sprite: Structures/Storage/Crates/freezer.rsi + state: icon + product: CrateFreezer + cost: 500 + category: Food + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml index 0b68053f7ec..1b9b64e8035 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml @@ -8,43 +8,42 @@ category: Fun group: market -- type: cargoProduct - id: FunPianoInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: piano - product: PianoInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunPianoInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: piano + # product: PianoInstrument + # cost: 1500 + # category: Fun + # group: market -- type: cargoProduct - id: FunUprightPianoInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: piano-upright - product: UprightPianoInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunUprightPianoInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: piano-upright + # product: UprightPianoInstrument + # cost: 1500 + # category: Fun + # group: market -- type: cargoProduct - id: FunChurchOrganInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: church-organ - product: ChurchOrganInstrument - cost: 1000 - category: Fun - group: market - -- type: cargoProduct - id: FunMinimoogInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: minimoog - product: MinimoogInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunChurchOrganInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: church-organ + # product: ChurchOrganInstrument + # cost: 1500 + # category: Fun + # group: market +# - type: cargoProduct + # id: FunMinimoogInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: minimoog + # product: MinimoogInstrument + # cost: 1500 + # category: Fun + # group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml index 83c226c0b77..313c891bf44 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml @@ -1,9 +1,19 @@ - type: cargoProduct id: MedicalTrackingImplant icon: - sprite: Objects/Specific/Chemistry/syringe.rsi - state: syringe_base0 + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 product: CrateMedicalTrackingImplants cost: 1000 category: Medical group: market + +- type: cargoProduct + id: CrateMedicalSurgery + icon: + sprite: Structures/Storage/Crates/surgery.rsi + state: icon + product: CrateMedicalSurgery + cost: 3000 + category: Medical + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_service.yml new file mode 100644 index 00000000000..bf84e89780d --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_service.yml @@ -0,0 +1,39 @@ +- type: cargoProduct + id: BulkSpaceCleaner + icon: + sprite: Objects/Specific/Chemistry/jug.rsi + state: jug + product: CrateSpaceCleaner + cost: 2000 + category: Service + group: market + +- type: cargoProduct + id: ServiceJanitorial2 + icon: + sprite: Objects/Specific/Janitorial/janitorial.rsi + state: cleaner + product: CrateServiceJanitorialSupplies2 + cost: 800 + category: Service + group: market + +- type: cargoProduct + id: ServiceJanitorialTrolley + icon: + sprite: Objects/Specific/Janitorial/janitorial_cart.rsi + state: cart + product: JanitorialTrolley + cost: 1000 + category: Service + group: market + +- type: cargoProduct + id: ServiceVehicleJanicart + icon: + sprite: Objects/Vehicles/janicart.rsi + state: icon + product: CrateVehicleJanicart + cost: 1500 + category: Service + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_shuttle.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_shuttle.yml new file mode 100644 index 00000000000..874f44491e0 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_shuttle.yml @@ -0,0 +1,30 @@ +- type: cargoProduct + id: ShuttleThruster + icon: + sprite: Structures/Shuttles/thruster.rsi + state: base + product: CrateThruster + cost: 1500 + category: Shuttle + group: market + +- type: cargoProduct + id: ShuttleGyroscope + icon: + sprite: Structures/Shuttles/gyroscope.rsi + state: base + product: CrateGyroscope + cost: 4000 + category: Shuttle + group: market + +# - type: cargoProduct + # id: ShuttlePowerKit + # icon: + # sprite: Structures/Machines/computers.rsi + # state: avionics-systems + # product: CrateEngineeringShuttle + # cost: 3000 + # category: Shuttle + # group: market +# locked: true # only the QM has permission to order by default diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml index c630f3fcc63..635dec04eab 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml @@ -55,3 +55,13 @@ cost: 100 category: Security group: market + +- type: cargoProduct + id: CrateVendingMachineRestockAutoTuneVend + icon: + sprite: _NF/Objects/Specific/Service/vending_machine_restock.rsi + state: base + product: CrateVendingMachineRestockAutoTuneVendFilled + cost: 100 + category: Fun + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml index c88d16a02c0..ee569a6397d 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -39,3 +39,25 @@ contents: - id: BoxSurvival - id: RubberStampLawyer + +- type: entity + noSpawn: true + parent: ClothingBackpack + id: ClothingBackpackStcFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: RubberStampStc + +- type: entity + noSpawn: true + parent: ClothingBackpackPilot + id: ClothingBackpackPilotFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Lighter + - id: CigPackGreen + - id: ExtendedEmergencyOxygenTank diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 7e0760acad8..737242c0d2d 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -39,3 +39,25 @@ contents: - id: BoxSurvival - id: RubberStampLawyer + +- type: entity + noSpawn: true + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelStcFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: RubberStampStc + +- type: entity + noSpawn: true + parent: ClothingBackpackDuffelPilot + id: ClothingBackpackDuffelPilotFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Lighter + - id: CigPackGreen + - id: ExtendedEmergencyOxygenTank diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 6fe49750a4f..406843f2122 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -39,3 +39,25 @@ contents: - id: BoxSurvival - id: RubberStampLawyer + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelStcFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: RubberStampStc + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchelPilot + id: ClothingBackpackSatchelPilotFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Lighter + - id: CigPackGreen + - id: ExtendedEmergencyOxygenTank diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/duffelbag_guns.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/duffelbag_guns.yml new file mode 100644 index 00000000000..c8326dfc5ae --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/duffelbag_guns.yml @@ -0,0 +1,194 @@ +# BaseEntity +- type: entity + parent: ClothingBackpackDuffelMercenary + id: ClothingBackpackDuffelShuttle + suffix: Shuttle Guns + noSpawn: true + abstract: true + +# T1: +# WeaponLaserGun +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponLaserGun + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponLaserGun + +# WeaponDisabler +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponDisabler + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponDisabler + +# WeaponRevolverArgenti +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponRevolverArgenti + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponRevolverArgenti + - id: MagazineBoxRifle + +# WeaponRevolverArgentiNonlethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponRevolverArgentiNonlethal + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponRevolverArgentiNonlethal + - id: MagazineBoxRifleRubber + +# WeaponSniperMosin +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponSniperMosin + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponSniperMosin + - id: MagazineBoxLightRifle + +# Kardashev-MosinNonlethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleKardashev-MosinNonlethal + noSpawn: true + components: + - type: StorageFill + contents: + - id: Kardashev-MosinNonlethal + - id: MagazineBoxLightRifleRubber + +# T2: +# WeaponPistolMk58lethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponPistolMk58 + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponPistolMk58 + - id: MagazinePistol + +# WeaponPistolMk58Nonlethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponPistolMk58Nonlethal + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponPistolMk58Nonlethal + - id: MagazinePistolRubber + +# WeaponRevolverDeckard +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponRevolverDeckard + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponRevolverDeckard + - id: SpeedLoaderMagnum + +# WeaponRevolverDeckardNonlethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponRevolverDeckardNonlethal + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponRevolverDeckardNonlethal + - id: SpeedLoaderMagnumRubber + +# WeaponShotgunDoubleBarreled +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponShotgunDoubleBarreled + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponShotgunDoubleBarreled + - id: BoxLethalshot + +# WeaponShotgunDoubleBarreledRubber +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponShotgunDoubleBarreledRubber + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponShotgunDoubleBarreledRubber + - id: BoxBeanbag + +# WeaponShotgunSawn +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponShotgunSawn + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponShotgunSawn + - id: BoxLethalshot + +# WeaponShotgunSawnNonlethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponShotgunSawnNonlethal + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponShotgunSawnNonlethal + - id: BoxBeanbag + +# T3: +# WeaponEnergyGun +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponEnergyGun + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponEnergyGun + +# WeaponShotgunKammerer +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponShotgunKammerer + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponShotgunKammerer + - id: BoxLethalshot + +# WeaponShotgunKammererNonlethal +- type: entity + parent: ClothingBackpackDuffelShuttle + id: ShuttleWeaponShotgunKammererNonlethal + noSpawn: true + components: + - type: StorageFill + contents: + - id: WeaponShotgunKammererNonlethal + - id: BoxBeanbag diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml index 3de71493fa0..25284bdc0ec 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml @@ -22,3 +22,88 @@ - state: syringe - type: VendPrice price: 200 # Single Implant Box (5 are 1000) + +- type: entity + name: Wet floor sign box + parent: BoxCardboard + id: BoxWetFloorSign + description: A box of wet floor signs. Happy janitor noises. + components: + - type: StorageFill + contents: + - id: WetFloorSign + amount: 6 + - type: Storage + capacity: 90 + whitelist: + tags: + - WetFloorSign + - type: Sprite + layers: + - state: box +# - state: wet_floor_sign + +- type: entity + name: Paper box + parent: BoxCardboard + id: BoxPaper + description: A box full of papers. + components: + - type: StorageFill + contents: + - id: Paper + amount: 10 + - type: Storage + capacity: 30 + whitelist: + tags: + - Document + - type: Sprite + layers: + - state: box +# - state: paper + - type: StaticPrice + price: 10 + +- type: entity + name: Office paper box + parent: BoxPaper + id: BoxPaperOffice + description: A box full of papers. + components: + - type: StorageFill + contents: + - id: PaperOffice + amount: 10 + +- type: entity + name: Captains thoughts paper box + parent: BoxPaper + id: BoxPaperCaptainsThoughts + description: A box full of papers. + components: + - type: StorageFill + contents: + - id: PaperCaptainsThoughts + amount: 10 + +- type: entity + name: mystery spacemen minifigure bulk box + parent: BoxCardboard + id: MysteryFigureBoxBulk + description: A box containing six mystery minifigure boxes. + components: + - type: StorageFill + contents: + - id: MysteryFigureBox + amount: 6 + - type: Storage + capacity: 30 + whitelist: + tags: + - MysteryFigureBox + - type: Sprite + layers: + - state: box + - type: VendPrice + price: 1200 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml new file mode 100644 index 00000000000..5081dd5c5f3 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml @@ -0,0 +1,8 @@ +- type: entity + id: CrateSpaceCleaner + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: JugSpaceCleaner + amount: 5 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/engines.yml new file mode 100644 index 00000000000..4772b318530 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/engines.yml @@ -0,0 +1,15 @@ +- type: entity + id: CrateGyroscope + parent: CrateEngineering + components: + - type: StorageFill + contents: + - id: GyroscopeUnanchored + +- type: entity + id: CrateThruster + parent: CrateEngineering + components: + - type: StorageFill + contents: + - id: ThrusterUnanchored diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml new file mode 100644 index 00000000000..1c0511c94a4 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml @@ -0,0 +1,20 @@ +- type: entity + id: CrateServiceJanitorialSupplies2 + parent: CratePlastic + components: + - type: StorageFill + contents: + - id: BoxTrashbag + amount: 2 + - id: SprayBottleSpaceCleaner + amount: 2 + - id: BoxWetFloorSign + +- type: entity + id: CrateVehicleJanicart + parent: CrateLivestock + components: + - type: StorageFill + contents: + - id: VehicleJanicart + - id: VehicleKeyJanicart diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml index 86e2cb7c19b..031cfe18c91 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml @@ -5,3 +5,15 @@ - type: entity id: CrateTradeSecureHighFilled parent: CrateTradeBaseSecureHigh + +- type: entity + id: CrateTradeContrabandSecureNormalFilled + parent: CrateTradeContrabandSecureNormal + +- type: entity + id: CrateTradeContrabandSecureDonkFilled + parent: CrateTradeContrabandSecureDonk + +- type: entity + id: CrateTradeContrabandSecureCyberSunFilled + parent: CrateTradeContrabandSecureCyberSun \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml index 0932312d753..afef43ddbd8 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml @@ -42,3 +42,12 @@ contents: - id: VendingMachineRestockLessLethalVend amount: 2 + +- type: entity + id: CrateVendingMachineRestockAutoTuneVendFilled + parent: CratePlasticBiodegradable + components: + - type: StorageFill + contents: + - id: VendingMachineRestockAutoTuneVend + amount: 2 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/guns.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/guns.yml new file mode 100644 index 00000000000..5ba572fe688 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/guns.yml @@ -0,0 +1,287 @@ +- type: entity + parent: GunSafe + id: GunSafeShuttleCaptain + name: shuttle safe + suffix: Empty, Captain + components: + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + +- type: entity + parent: GunSafeShuttleCaptain + id: GunSafeShuttleT1 + name: shuttle gun safe + suffix: T1 + noSpawn: true + components: + - type: StorageFill + contents: + # T1-1 + - id: ShuttleWeaponLaserGun + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponDisabler + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponRevolverArgenti + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponRevolverArgentiNonlethal + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponSniperMosin + orGroup: T1-1 + prob: 0.1 + - id: ShuttleKardashev-MosinNonlethal + orGroup: T1-1 + prob: 0.1 + # T1-2 + - id: ShuttleWeaponLaserGun + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponDisabler + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponRevolverArgenti + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponRevolverArgentiNonlethal + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponSniperMosin + orGroup: T1-2 + prob: 0.1 + - id: ShuttleKardashev-MosinNonlethal + orGroup: T1-2 + prob: 0.1 + # T1 Melee + - id: BaseBallBat + orGroup: Melee + prob: 0.05 + - id: Spear + orGroup: Melee + prob: 0.05 + - id: SurvivalKnife + orGroup: Melee + prob: 0.05 + - id: MakeshiftShield + orGroup: Melee + prob: 0.05 + - id: Null # Nothing + orGroup: Melee + prob: 0.8 + +- type: entity + parent: GunSafeShuttleCaptain + id: GunSafeShuttleT2 + name: shuttle gun safe + suffix: T2 + noSpawn: true + components: + - type: StorageFill + contents: + # T1-1 + - id: ShuttleWeaponLaserGun + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponDisabler + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponRevolverArgenti + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponRevolverArgentiNonlethal + orGroup: T1-1 + prob: 0.1 + - id: ShuttleWeaponSniperMosin + orGroup: T1-1 + prob: 0.1 + - id: ShuttleKardashev-MosinNonlethal + orGroup: T1-1 + prob: 0.1 + # T1-2 + - id: ShuttleWeaponLaserGun + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponDisabler + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponRevolverArgenti + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponRevolverArgentiNonlethal + orGroup: T1-2 + prob: 0.1 + - id: ShuttleWeaponSniperMosin + orGroup: T1-2 + prob: 0.1 + - id: ShuttleKardashev-MosinNonlethal + orGroup: T1-2 + prob: 0.1 + # T2-1 + - id: ShuttleWeaponPistolMk58 + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponPistolMk58Nonlethal + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponRevolverDeckard + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponRevolverDeckardNonlethal + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunDoubleBarreled + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunDoubleBarreledRubber + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunSawn + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunSawnNonlethal + orGroup: T2-1 + prob: 0.1 + # T2 Melee + - id: SpearReinforced + orGroup: Melee + prob: 0.1 + - id: CombatKnife + orGroup: Melee + prob: 0.1 + - id: Null # Nothing + orGroup: Melee + prob: 0.8 + +- type: entity + parent: GunSafeShuttleCaptain + id: GunSafeShuttleT3 + name: shuttle gun safe + suffix: T3 + noSpawn: true + components: + - type: StorageFill + contents: + # T2-1 + - id: ShuttleWeaponPistolMk58 + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponPistolMk58Nonlethal + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponRevolverDeckard + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponRevolverDeckardNonlethal + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunDoubleBarreled + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunDoubleBarreledRubber + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunSawn + orGroup: T2-1 + prob: 0.1 + - id: ShuttleWeaponShotgunSawnNonlethal + orGroup: T2-1 + prob: 0.1 + # T2-2 + - id: ShuttleWeaponPistolMk58 + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponPistolMk58Nonlethal + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponRevolverDeckard + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponRevolverDeckardNonlethal + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponShotgunDoubleBarreled + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponShotgunDoubleBarreledRubber + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponShotgunSawn + orGroup: T2-2 + prob: 0.1 + - id: ShuttleWeaponShotgunSawnNonlethal + orGroup: T2-2 + prob: 0.1 + # T3-1 + - id: ShuttleWeaponEnergyGun + orGroup: T3-1 + prob: 0.1 + - id: ShuttleWeaponShotgunKammerer + orGroup: T3-1 + prob: 0.1 + - id: ShuttleWeaponShotgunKammererNonlethal + orGroup: T3-1 + prob: 0.1 + # T3 Melee + - id: KukriKnife + orGroup: Melee + prob: 0.07 + amount: 2 + - id: SpearPlasma + orGroup: Melee + prob: 0.07 + - id: SpearUranium + orGroup: Melee + prob: 0.07 + - id: Null # Nothing + orGroup: Melee + prob: 0.79 + +- type: entity + parent: MarkerBase + id: GunSafeShuttleT1Spawner + name: shuttle gun safe + suffix: T1 + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/closet.rsi + state: shotguncase + - type: RandomSpawner + offset: 0.0 + prototypes: + - GunSafeShuttleT1 + +- type: entity + parent: MarkerBase + id: GunSafeShuttleT2Spawner + name: shuttle gun safe + suffix: T2 + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/closet.rsi + state: shotguncase + - type: RandomSpawner + offset: 0.0 + prototypes: + - GunSafeShuttleT2 + +- type: entity + parent: MarkerBase + id: GunSafeShuttleT3Spawner + name: shuttle gun safe + suffix: T3 + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/closet.rsi + state: shotguncase + - type: RandomSpawner + offset: 0.0 + prototypes: + - GunSafeShuttleT3 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml new file mode 100644 index 00000000000..1afddeb68c7 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml @@ -0,0 +1,14 @@ +- type: entity + id: LockerJanitorFilled + suffix: Filled + parent: LockerJanitor + components: + - type: StorageFill + contents: + - id: ClothingBeltJanitorFilled + - id: ClothingHeadsetService + - id: MopItem + - id: BoxMousetrap + - id: BoxTrashbag + - id: BoxLightMixed + - id: Plunger diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml index 090438bc77e..8a611a9f14e 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml @@ -74,4 +74,23 @@ - id: HandheldGPSBasic # - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. - type: AccessReader - access: [["Mercenary"]] + access: [["Captain"], ["Mercenary"]] + +#Pilot hardsuit +- type: entity + id: SuitStoragePilot + parent: SuitStorageBase + suffix: Pilot + components: + - type: StorageFill + contents: +# - id: NitrogenTankFilled +# - id: OxygenTankFilled + - id: AirTankFilled + - id: ClothingOuterHardsuitPilot + - id: ClothingMaskBreath + - id: JetpackMiniFilled + - id: HandheldGPSBasic +# - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. + - type: AccessReader + access: [["Captain"], ["Pilot"]] diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml new file mode 100644 index 00000000000..0dabaabc65c --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml @@ -0,0 +1,133 @@ +#SOFTSUITS +#Paramedic's hardsuit +- type: entity + id: SuitStorageWallmountParamedic + parent: [SuitStorageWallmount, SuitStorageParamedic] + +#HARDSUITS +#Brigmedic's hardsuit +- type: entity + id: SuitStorageWallmountBrigmedic + parent: [SuitStorageWallmount, SuitStorageBrigmedic] + +#Quartermaster hardsuit +- type: entity + id: SuitStorageWallmountQuartermaster + parent: [SuitStorageWallmount, SuitStorageQuartermaster] + +#Mercenary hardsuit +- type: entity + id: SuitStorageWallmountMercenary + parent: [SuitStorageWallmount, SuitStorageMercenary] + +#Pilot hardsuit +- type: entity + id: SuitStorageWallmountPilot + parent: [SuitStorageWallmount, SuitStoragePilot] + +#SOFTSUITS +#Basic EVA +- type: entity + id: SuitStorageWallmountEVA + parent: [SuitStorageWallmount, SuitStorageEVA] + +#Basic EVA (Big Ass Helmet) +- type: entity + id: SuitStorageWallmountEVAAlternate + parent: [SuitStorageWallmount, SuitStorageEVAAlternate] + +#Emergency EVA +- type: entity + id: SuitStorageWallmountEVAEmergency + parent: [SuitStorageWallmount, SuitStorageEVAEmergency] + +#Prisoner EVA +- type: entity + id: SuitStorageWallmountEVAPrisoner + parent: [SuitStorageWallmount, SuitStorageEVAPrisoner] + +#Syndicate EVA +- type: entity + id: SuitStorageWallmountEVASyndicate + parent: [SuitStorageWallmount, SuitStorageEVASyndicate] + +#Pirate EVA +- type: entity + id: SuitStorageWallmountEVAPirate + parent: [SuitStorageWallmount, SuitStorageEVAPirate] + +#NTSRA Voidsuit +- type: entity + id: SuitStorageWallmountNTSRA + parent: [SuitStorageWallmount, SuitStorageNTSRA] + +#HARDSUITS +#Basic hardsuit +- type: entity + id: SuitStorageWallmountBasic + parent: [SuitStorageWallmount, SuitStorageBasic] + +#Engineering hardsuit +- type: entity + id: SuitStorageWallmountEngi + parent: [SuitStorageWallmount, SuitStorageEngi] + +#Atmospherics hardsuit +- type: entity + id: SuitStorageWallmountAtmos + parent: [SuitStorageWallmount, SuitStorageAtmos] + +#Security hardsuit +- type: entity + id: SuitStorageWallmountSec + parent: [SuitStorageWallmount, SuitStorageSec] + +#CE's hardsuit +- type: entity + id: SuitStorageWallmountCE + parent: [SuitStorageWallmount, SuitStorageCE] + +#CMO's hardsuit +- type: entity + id: SuitStorageWallmountCMO + parent: [SuitStorageWallmount, SuitStorageCMO] + +#RD's hardsuit +- type: entity + id: SuitStorageWallmountRD + parent: [SuitStorageWallmount, SuitStorageRD] + +#HOS's hardsuit +- type: entity + id: SuitStorageWallmountHOS + parent: [SuitStorageWallmount, SuitStorageHOS] + +#Warden's hardsuit +- type: entity + id: SuitStorageWallmountWarden + parent: [SuitStorageWallmount, SuitStorageWarden] + +#Captain's hardsuit +- type: entity + id: SuitStorageWallmountCaptain + parent: [SuitStorageWallmount, SuitStorageCaptain] + +#Salvage hardsuit +- type: entity + id: SuitStorageWallmountSalv + parent: [SuitStorageWallmount, SuitStorageSalv] + +#Blood-red hardsuit +- type: entity + id: SuitStorageWallmountSyndie + parent: [SuitStorageWallmount, SuitStorageSyndie] + +#Pirate Captain's hardsuit +- type: entity + id: SuitStorageWallmountPirateCap + parent: [SuitStorageWallmount, SuitStoragePirateCap] + +#Wizard +- type: entity + id: SuitStorageWallmountWizard + parent: [SuitStorageWallmount, SuitStorageWizard] diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml index bd142771e27..2b11b1ec190 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml @@ -12,3 +12,16 @@ JetpackMiniFilled: 10 EncryptionKeyTraffic: 30 HandHeldMassScanner: 10 +# Pilot drip + ClothingBackpackPilot: 3 + ClothingBackpackDuffelPilot: 3 + ClothingBackpackSatchelPilot: 3 + ClothingUniformJumpsuitPilot: 3 + ClothingOuterCoatBomber: 3 + ClothingHeadsetAltPilot: 3 + ClothingEyesGlassesPilot: 3 + ClothingHandsGlovesPilot: 3 + ClothingHeadHatPilot: 3 + ClothingNeckScarfPilot: 3 + ClothingOuterHardsuitPilot: 3 + ClothingShoesBootsPilot: 3 \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/autotunevend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/autotunevend.yml new file mode 100644 index 00000000000..2bd491761ca --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/autotunevend.yml @@ -0,0 +1,57 @@ +- type: vendingMachineInventory + id: AutoTuneVendInventory + startingInventory: + TrumpetInstrument: 2 + TromboneInstrument: 2 + FrenchHornInstrument: 2 + SaxophoneInstrument: 2 + EuphoniumInstrument: 2 + AcousticGuitarInstrument: 2 + ElectricGuitarInstrument: 2 + BassGuitarInstrument: 2 + RockGuitarInstrument: 2 + BanjoInstrument: 2 + ViolinInstrument: 2 + CelloInstrument: 2 + ViolaInstrument: 2 + RecorderInstrument: 2 + BagpipeInstrument: 2 + ClarinetInstrument: 2 + FluteInstrument: 2 + HarmonicaInstrument: 2 + OcarinaInstrument: 2 + PanFluteInstrument: 2 + SynthesizerInstrument: 2 + AccordionInstrument: 2 + KalimbaInstrument: 2 + WoodblockInstrument: 2 + GlockenspielInstrument: 2 + BikeHornInstrument: 1 # Not actully bad as you might think + MusicBoxInstrument: 1 +# SeashellInstrument: 1 This is actully just static noises + XylophoneInstrument: 1 +# GunpetInstrument: 1 Sounds bad + MicrophoneInstrument: 1 +# HelicopterInstrument: 1 Sounds bad +# BirdToyInstrument: 1 Sounds bad + MusicalLungInstrument: 1 # This actully sound ok somehow +# ReverseCymbalsInstrument: 1 Sounds bad +# CannedApplauseInstrument: 1 Sounds bad + contrabandInventory: + TubaInstrument: 1 + HarpInstrument: 1 + ContrabassInstrument: 1 + VibraphoneInstrument: 1 + MarimbaInstrument: 1 + TomDrumsInstrument: 1 + TimpaniInstrument: 1 + TaikoInstrument: 1 + MinimoogInstrument: 1 + ChurchOrganInstrument: 1 + PianoInstrument: 1 + UprightPianoInstrument: 1 + DawInstrument: 1 + Rickenbacker4003Instrument: 1 + emaggedInventory: +# SuperSynthesizerInstrument: 1 # Can crash the server with some MIDI + Rickenbacker4001Instrument: 1 diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/bountyvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/bountyvend.yml index e7e44ac497b..3e108ca43ee 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/bountyvend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/bountyvend.yml @@ -12,6 +12,9 @@ #Bounty hunter ClothingUniformJumpsuitBH: 3 ClothingUniformJumpskirtBH: 3 + ClothingUniformJumpsuitBHGrey: 2 + ClothingUniformJumpskirtBHGrey: 2 + ClothingNeckTieBH: 2 ClothingOuterCoatBHTrench: 3 ClothingHeadHatBH: 3 #Mercenary diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml index d92e1391771..ffb6661b9e9 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml @@ -18,5 +18,4 @@ MaterialReclaimerMachineCircuitboard: 4 UniformPrinterMachineCircuitboard: 4 HydroponicsTrayMachineCircuitboard: 16 - DawInstrumentMachineCircuitboard: 4 - TelecomServerCircuitboard: 6 \ No newline at end of file + TelecomServerCircuitboard: 6 diff --git a/Resources/Prototypes/_NF/Datasets/Names/cat_crispy.yml b/Resources/Prototypes/_NF/Datasets/Names/cat_crispy.yml new file mode 100644 index 00000000000..f4c38c14713 --- /dev/null +++ b/Resources/Prototypes/_NF/Datasets/Names/cat_crispy.yml @@ -0,0 +1,4 @@ +- type: dataset + id: names_cat_crispy + values: + - Crispy diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml index cad7fe218c2..3cef86c4b98 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml @@ -6,3 +6,12 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Backpacks/arcadia-backpack.rsi + +- type: entity + parent: ClothingBackpack + id: ClothingBackpackPilot + name: pilot backpack + description: A backpack for a True Ace. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/pilot_backpack.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml index ce0dfcbda44..96a717faf38 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml @@ -15,3 +15,12 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Duffels/arcadia-dufflebag.rsi + +- type: entity + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelPilot + name: pilot duffel + description: A duffelbag produced for a True Ace. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/pilot_duffel.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml index b0953218143..83e928c9e0f 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml @@ -15,3 +15,12 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Satchels/arcadia-satchel.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelPilot + name: pilot satchel + description: A satchel produced for a True Ace. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/pilot_satchel.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml index 9bbffaa61f6..a93e597465d 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Belt/belts.yml @@ -9,3 +9,57 @@ - type: Clothing sprite: _NF/Clothing/Belt/arcadia-webbing.rsi +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltChaplainSash + name: chaplain sash + description: Who knew that scarves can be also tied around your waist? + components: + - type: Sprite + sprite: _NF/Clothing/Belt/chaplain_sash.rsi + - type: Clothing + sprite: _NF/Clothing/Belt/chaplain_sash.rsi + - type: Storage + capacity: 45 + # TODO: Fill this out more. + whitelist: + tags: + - Book + - Smokable + - Flare + - Matchstick + - Flashlight + - Trash + - CigPack + - Radio + - Crayon + - Bottle + - WeaponMeleeStake + - Censer + - ReligiousSymbol + - Crucifix + - type: ItemMapper + mapLayers: + book: + whitelist: + tags: + - Book + bottle: + whitelist: + tags: + - Bottle + censer: + whitelist: + tags: + - Censer + stake: + whitelist: + tags: + - WeaponMeleeStake + crucifix: + whitelist: + tags: + - Crucifix + sprite: _NF/Clothing/Belt/chaplain_sash_overlay.rsi + - type: Appearance + diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Belt/crossbow_bolt_quiver.yml b/Resources/Prototypes/_NF/Entities/Clothing/Belt/crossbow_bolt_quiver.yml new file mode 100644 index 00000000000..1410f5ef477 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Belt/crossbow_bolt_quiver.yml @@ -0,0 +1,25 @@ +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltQuiverCrossbow + name: quiver (bolts) + description: Can hold up to 20 bolts, and fits snug around your waist. + components: + - type: Sprite + sprite: _NF/Objects/Clothing/Belt/crossbow_quiver.rsi + layers: + - state: icon + - map: [ "enum.StorageContainerVisualLayers.Fill" ] + visible: false + - type: Clothing + - type: Storage + capacity: 100 + whitelist: + tags: + - CrossbowBolt + - type: Appearance + - type: StorageContainerVisuals + maxFillLevels: 5 + fillBaseName: fill- + - type: Construction + graph: CraftQuiverBolt + node: CraftQuiverBolt \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml index 84b5f9f0975..717834ee158 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml @@ -28,3 +28,18 @@ sprite: _NF/Clothing/Ears/Headsets/mercenary.rsi - type: Clothing sprite: _NF/Clothing/Ears/Headsets/mercenary.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltPilot + name: pilot over-ear headset + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - EncryptionKeyTraffic + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/pilot_headset.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/pilot_headset.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml index 49a2e27650f..592dbd3cc6f 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml @@ -12,3 +12,16 @@ - type: EyeProtection - type: VisionCorrection - type: IdentityBlocker + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesPilot + name: pilot goggles + description: I'm sorry, but you can't pilot a ship without cool glasses. Those are the Rules. Has a GPS built in them too. + components: + - type: Sprite + sprite: _NF/Clothing/Eyes/Glasses/pilot_glasses.rsi + - type: Clothing + sprite: _NF/Clothing/Eyes/Glasses/pilot_glasses.rsi + - type: HandheldGPS + - type: VisionCorrection \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml index edb1365b880..ac317e426dc 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml @@ -15,3 +15,20 @@ fiberMaterial: fibers-synthetic fiberColor: fibers-black - type: FingerprintMask + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesPilot + name: pilot gloves + description: Driving gloves, but for spaceships! + components: + - type: Sprite + sprite: _NF/Clothing/Hands/Gloves/pilot_gloves.rsi + - type: Clothing + sprite: _NF/Clothing/Hands/Gloves/pilot_gloves.rsi + - type: GloveHeatResistance + heatResistance: 1400 + - type: Fiber + fiberMaterial: fibers-leather + fiberColor: fibers-brown + - type: FingerprintMask diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml index 112261a99f6..01ebc3b8712 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml @@ -52,3 +52,21 @@ Slash: 0.9 Piercing: 0.9 Heat: 0.9 + +#Pilot Hardsuit +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitPilot + noSpawn: true + name: pilot hardsuit helmet + description: Light hardsuit helmet for pilots. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/pilot_helmet.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/pilot_helmet.rsi + - type: PointLight + color: "#ffdbad" + - type: PressureProtection + highPressureMultiplier: 0.1 + lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml index 2b387e73a24..99fc5758056 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml @@ -3,3 +3,123 @@ id: ClothingHeadHatBH name: "bounty hunter's hat" description: "There's a new bounty hunter in the sector." + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPilgrim + name: pilgrim's hat + description: "Thou shalt not suffer a turkey to live." + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/pilgrim_hat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/pilgrim_hat.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatWideBrimmed + name: wide-brimmed hat + description: Works great as frisbee substitute. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/widebrim_hat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/widebrim_hat.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatCardinal + name: cardinal's hat + description: Keeps your head well protected from sun and reason. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/cardinal_hat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/cardinal_hat.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatWitchhunter + name: witch hunter's hat + description: "Thou shalt not suffer a witch to live." + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/witch_hunter_hat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/witch_hunter_hat.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBishopMitre + name: bishop's mitre + description: How to wear this thing? Ah! The other way around! + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/bishop_mitre.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/bishop_mitre.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatKippah + name: kippah + description: Basic version without built-in ATM. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/kippah.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/kippah.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatHoodCardinalHood + noSpawn: true + name: cardinal's hood + description: Hides your eyes, ensteels your faith. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/cardinal_hood.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/cardinal_hood.rsi + - type: Tag + tags: + - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPilot + name: pilot's helmet + description: Can't hear voices in my headset when earflaps flaps over my ears. And it feels good. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/pilot_hat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/pilot_hat.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml new file mode 100644 index 00000000000..526e1b76ff1 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml @@ -0,0 +1,17 @@ +- type: entity + parent: ClothingMaskGasVoiceChameleon + id: ClothingMaskGasVoiceChameleonFakeName + suffix: Voice Mask, Chameleon, Radio Fake Name + components: + - type: VoiceMasker + default: ClothingMaskGas + radioMode: Fake + +- type: entity + parent: ClothingMaskGasVoiceChameleon + id: ClothingMaskGasVoiceChameleonRealName + suffix: Voice Mask, Chameleon, Radio Real Name + components: + - type: VoiceMasker + default: ClothingMaskGas + radioMode: Real diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/misc.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/misc.yml new file mode 100644 index 00000000000..a60d284e043 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/misc.yml @@ -0,0 +1,34 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckCrucifix + name: crucifix + description: Damn, it feels good to be so pious. + components: + - type: Item + size: 5 + - type: Sprite + sprite: _NF/Clothing/Neck/Misc/crucifix.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Misc/crucifix.rsi + - type: ReactionMixer # I'm assuming that this is used to make holy water + mixMessage: "bible-mixing-success" + reactionTypes: + - Holy + - type: Tag + tags: + - ObjectOfSpiritualSignificance + - Crucifix + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckBellCollar + name: bell collar + description: A way to inform others about your presence, or just to annoy everyone around you! + components: + - type: Sprite + sprite: _NF/Clothing/Neck/bellcollar.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/bellcollar.rsi + - type: EmitsSoundOnMove + soundCollection: + collection: FootstepJester diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml new file mode 100644 index 00000000000..41d6ffbd44c --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml @@ -0,0 +1,24 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfChaplainStole + name: chaplain's stole + description: A necessary evil for ordained priests outfit. Gives at least +2 to your holiness. + components: + - type: Tag + tags: + - ObjectOfSpiritualSignificance + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/chaplain_stole.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/chaplain_stole.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfPilot + name: pilot's scarf + description: Have I told you a story how I survived when the end of this scarf got tangled in a spinning propeller? I didn't, they cloned me. + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/pilot_scarf.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/pilot_scarf.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/ties.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/ties.yml new file mode 100644 index 00000000000..a828ea30e6c --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/ties.yml @@ -0,0 +1,5 @@ +- type: entity + parent: ClothingNeckTieDet + id: ClothingNeckTieBH + name: tie + description: A loosely tied necktie, a perfect accessory for the over-worked. diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml new file mode 100644 index 00000000000..948c4a32a23 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/armor.yml @@ -0,0 +1,24 @@ +- type: entity + parent: ClothingOuterBaseLarge + id: ClothingOuterArmorSRCarapace + name: "station rep's carapace" + description: "A premium armored chestpiece that provides above average protection for its size. It offers maximum mobility and flexibility thanks to the premium composite materials. Issued only to the station representative." + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Armor/sr_carapace.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Armor/sr_carapace.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.6 + Slash: 0.6 + Piercing: 0.5 + Heat: 0.6 + Caustic: 0.6 + - type: ClothingSpeedModifier + walkModifier: 1.0 + sprintModifier: 1.0 + - type: ExplosionResistance + damageCoefficient: 0.60 + - type: GroupExamine diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml index bd59dc63e24..a7c847cde32 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/coats.yml @@ -13,3 +13,40 @@ Heat: 0.9 - type: ExplosionResistance damageCoefficient: 0.80 + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatBishop + name: bishop's robes + description: Golden threads aren't actually made of gold. Bummer. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/bishop_robe.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/bishop_robe.rsi + +- type: entity + parent: ClothingOuterBaseToggleable + id: ClothingOuterCoatWitchHunter + name: witch hunter's coat + description: Looks even better under constant rain with storm wind. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodChaplainHood + +- type: entity + parent: ClothingOuterBaseToggleable + id: ClothingOuterCoatCardinal + name: cardinal's coat + description: Nobody expects the spanish inquisition! + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHatHoodCardinalHood diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml index 06bcab25495..aa65055cf2a 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml @@ -59,3 +59,33 @@ sprintModifier: 0.9 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitMercenary + +# Pilot Hardsuit - Spationaut stats +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitPilot + name: pilot hardsuit + description: A hardsuit tailored for someone who spends the majority of their time buckled to a chair. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi + - type: PressureProtection + highPressureMultiplier: 0.7 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Radiation: 0.3 + Caustic: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.8 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitPilot + - type: StaticPrice + price: 195 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml new file mode 100644 index 00000000000..710c8126a65 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml @@ -0,0 +1,11 @@ +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsPilot + name: pilot boots + description: Stylish boots for running in circles on a deck during emergencies. + components: + - type: Sprite + sprite: _NF/Clothing/Shoes/Boots/pilot_boots.rsi + - type: Clothing + sprite: _NF/Clothing/Shoes/Boots/pilot_boots.rsi + - type: Matchbox diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/clown_shoes_mods.yml b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/clown_shoes_mods.yml new file mode 100644 index 00000000000..eff1473e698 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/clown_shoes_mods.yml @@ -0,0 +1,100 @@ +- type: entity + parent: ClothingShoesClown + id: ClothingShoesClownModWhoopie + suffix: "Whoopie" + description: "The modified standard-issue clowning shoes. Damn they're so soft!" + components: + - type: FootstepModifier + footstepSoundCollection: + collection: Parp + params: + variation: 0.125 + - type: Construction + graph: GraphClothingShoesClownModWhoopie + node: whoopiemod + +- type: entity + parent: ClothingShoesClown + id: ClothingShoesClownModKetchup + suffix: "Ketchup" + description: "The modified standard-issue clowning shoes. Damn they're soggy!" + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Ketchup + Quantity: 30 + - type: DrawableSolution + solution: food + - type: DrainableSolution + solution: food + - type: Spillable + solution: food + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepClownSqueezeBottle + params: + variation: 0.125 + - type: Construction + graph: GraphClothingShoesClownModKetchup + node: ketchupmod + +- type: entity + parent: ClothingShoesClown + id: ClothingShoesClownModMustarchup + suffix: "Mustarchup" + description: "The modified standard-issue clowning shoes. Damn they're very soggy!" + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Ketchup + Quantity: 15 + - ReagentId: Mustard + Quantity: 15 + - type: DrawableSolution + solution: food + - type: DrainableSolution + solution: food + - type: Spillable + solution: food + - type: FootstepModifier + footstepSoundCollection: + collection: squeezeBottleUseSounds + params: + variation: 0.125 + - type: Construction + graph: GraphClothingShoesClownModMustarchup + node: mustarchupmod + +- type: entity + parent: ClothingShoesClown + id: ClothingShoesClownModUltimate + suffix: "Ultimate" + description: "The modified standard-issue clowning shoes. Damn they're soft and soggy!" + components: + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Ketchup + Quantity: 30 + - type: DrawableSolution + solution: food + - type: DrainableSolution + solution: food + - type: Spillable + solution: food + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepClownSqueezeBottleWhoopie + params: + variation: 0.125 + - type: Construction + graph: GraphClothingShoesClownModUltimate + node: ketchupmod diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml index d3b98d6bb62..f9181dc363a 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/magboots.yml @@ -2,7 +2,7 @@ parent: ClothingShoesBootsMag id: ClothingShoesBootsMagCombat name: combat magboots - description: combat magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. + description: Combat magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. components: - type: Sprite sprite: _NF/Clothing/Shoes/Boots/magboots-combat.rsi @@ -42,7 +42,7 @@ parent: ClothingShoesBootsMagCombat id: ClothingShoesBootsMagMercenary name: mercenary magboots - description: mercenary magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. + description: Mercenary magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. components: - type: Sprite sprite: _NF/Clothing/Shoes/Boots/magboots-mercenary.rsi @@ -56,7 +56,7 @@ parent: ClothingShoesBootsMagCombat id: ClothingShoesBootsMagPirate name: pirate magboots - description: pirate magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. + description: Pirate magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. components: - type: Sprite sprite: _NF/Clothing/Shoes/Boots/magboots-pirate.rsi @@ -66,6 +66,21 @@ - type: Magboots toggleAction: ActionToggleMagbootsPirate +- type: entity + parent: ClothingShoesBootsMag + id: ClothingShoesBootsMagGaloshes + name: galoshes magboots + description: Galoshes magnetic boots, often used during cleaning activity to ensure the user remains safely attached to the floor. + components: + - type: Sprite + sprite: _NF/Clothing/Shoes/Boots/magboots-galoshes.rsi + state: icon + - type: Clothing + sprite: _NF/Clothing/Shoes/Boots/magboots-galoshes.rsi + - type: Magboots + toggleAction: ActionToggleMagbootsGaloshes + - type: NoSlip + - type: entity id: ActionToggleMagbootsCombat parent: ActionBaseToggleMagboots @@ -91,4 +106,13 @@ components: - type: InstantAction icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-pirate.rsi, state: icon } - iconOn: _NF/Clothing/Shoes/Boots/magboots-pirate.rsi/icon-on.png \ No newline at end of file + iconOn: _NF/Clothing/Shoes/Boots/magboots-pirate.rsi/icon-on.png + +- type: entity + id: ActionToggleMagbootsGaloshes + parent: ActionBaseToggleMagboots + noSpawn: true + components: + - type: InstantAction + icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-galoshes.rsi, state: icon } + iconOn: _NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon-on.png diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml index c7ed9db151b..03de3bc313b 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpskirts.yml @@ -23,9 +23,15 @@ - type: entity parent: ClothingUniformJumpskirtDetective id: ClothingUniformJumpskirtBH - name: bounty hunter's hard-worn suit + name: hard-worn suit description: Someone who wears this means business. +- type: entity + parent: ClothingUniformJumpskirtDetectiveGrey + id: ClothingUniformJumpskirtBHGrey + name: noir suit + description: A grey suit, complete with tie clip. + - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtMercenary @@ -37,3 +43,13 @@ - type: Clothing sprite: _NF/Clothing/Uniforms/Jumpskirt/mercenary.rsi +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtSecStationGuard + name: station guard jumpskirt + description: A specialized uniform for a Frontier Outpost guard. Crisp and official to let dock loiterers know you mean business. + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml index be2e1376f93..b96125472f8 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml @@ -23,5 +23,44 @@ - type: entity parent: ClothingUniformJumpsuitDetective id: ClothingUniformJumpsuitBH - name: bounty hunter's hard-worn suit + name: hard-worn suit description: Someone who wears this means business. + +- type: entity + parent: ClothingUniformJumpsuitDetectiveGrey + id: ClothingUniformJumpsuitBHGrey + name: noir suit + description: A grey suit, complete with tie clip. + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitChaplainPilgrimVest + name: pilgrim jumpsuit + description: Knock-knock. Would you care to have a word about our Lord-n-Savior Nar-Sss.. Err.. Space Jeebus? + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSecStationGuard + name: station guard jumpsuit + description: A specialized uniform for a Frontier Outpost guard. Crisp and official to let dock loiterers know you mean business. + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitPilot + name: pilot jumpsuit + description: You too think there should be a pocket for your fav smokes? + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi diff --git a/Resources/Prototypes/_NF/Entities/Markers/atmos_blocker.yml b/Resources/Prototypes/_NF/Entities/Markers/atmos_blocker.yml new file mode 100644 index 00000000000..c00f8a26b55 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Markers/atmos_blocker.yml @@ -0,0 +1,53 @@ +- type: entity + name: Atmos Fix Oxygen Marker + suffix: Shuttle + id: AtmosFixShuttleOxygenMarker + description: "Oxygen at lower presure" + parent: MarkerBase + components: + - type: Sprite + layers: + - sprite: Markers/atmos.rsi # { + state: base + shader: unshaded + - sprite: Markers/atmos.rsi + shader: unshaded # } + state: oxygen + - type: AtmosFixMarker + mode: 7 + +- type: entity + name: Atmos Fix Nitrogen Marker + suffix: Shuttle + id: AtmosFixShuttleNitrogenMarker + description: "Nitrogen at lower presure" + parent: MarkerBase + components: + - type: Sprite + layers: + - sprite: Markers/atmos.rsi # { + state: base + shader: unshaded + - sprite: Markers/atmos.rsi + shader: unshaded # } + state: nitrogen + - type: AtmosFixMarker + mode: 8 + +- type: entity + name: Atmos Fix Plasma Marker + suffix: Shuttle + id: AtmosFixShuttlePlasmaMarker + description: "Plasma at lower presure" + parent: MarkerBase + components: + - type: Sprite + layers: + - sprite: Markers/atmos.rsi # { + state: base + shader: unshaded + - sprite: Markers/atmos.rsi + shader: unshaded # } + state: plasma + - type: AtmosFixMarker + mode: 9 diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml index 1735ff842ea..ac947087beb 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml @@ -76,6 +76,41 @@ implants: - DeathRattleImplant +- type: entity + name: Crispy + parent: MobCatGhost + id: MobCatCrispy + description: Mistakes were made. + components: + - type: Sprite + drawdepth: Mobs + sprite: _NF/Mobs/Pets/cat.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: crispycat + - type: DamageStateVisuals + states: + Alive: + Base: crispycat + Critical: + Base: crispycat_dead + Dead: + Base: crispycat_dead + - type: GhostRole + name: ghost-role-information-crispy-name + description: ghost-role-information-crispy-description + makeSentient: true + allowSpeech: true + allowMovement: true + - type: Inventory + speciesId: cat + templateId: crispy + - type: Loadout + prototypes: [ MobCrispyGear ] + - type: RandomMetadata + nameSegments: [names_cat_crispy] # Its needed to fix the names since it was using the MobCatGhost list. + - type: FriedTrait + - type: entity name: Mistake parent: MobCatGhost diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/xeno.yml index 89a1482b633..8d9ecad383c 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/xeno.yml @@ -2,6 +2,7 @@ name: Queen parent: MobXenoQueen id: MobXenoQueenDungeon + suffix: Ghost components: - type: Tag tags: @@ -9,3 +10,11 @@ - type: SalvageMobRestrictions - type: ReplacementAccent accent: xeno + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules + - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml new file mode 100644 index 00000000000..36743a984fc --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml @@ -0,0 +1,132 @@ +- type: entity + parent: BaseItem + id: DrinkKegBase + name: keg + abstract: true + description: I don't have a drinking problem - the keg solved it. + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Drinks/keg_steel.rsi + state: icon + - type: Item + size: 100 + - type: Clothing + sprite: _NF/Objects/Consumable/Drinks/keg_steel.rsi + quickEquip: false + slots: + - Back + - type: StaticPrice + price: 30 + - type: SolutionContainerManager + solutions: + drink: + maxVol: 600 + - type: Drink +# - type: Openable +# sound: +# collection: bottleOpenSounds + - type: DrawableSolution + solution: drink + - type: RefillableSolution + solution: drink + - type: DrainableSolution + solution: drink + - type: SolutionTransfer + transferAmount: 50 + maxTransferAmount: 100 + minTransferAmount: 10 + canChangeTransferAmount: true +# - type: Spillable +# solution: drink + - type: UserInterface + interfaces: + - key: enum.TransferAmountUiKey.Key + type: TransferAmountBoundUserInterface + - type: ItemSlots + slots: + label_slot: + insertVerbText: Attach Label + ejectVerbText: Remove Label + name: Keg Label + startingItem: null + whitelist: + tags: + - Document + insertOnInteract: true + priority: 5 + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + label_slot: !type:ContainerSlot {} + - type: Appearance + +- type: entity + parent: DrinkKegBase + id: DrinkKegSteel + suffix: Steel + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Drinks/keg_steel.rsi + state: icon + - type: Clothing + sprite: _NF/Objects/Consumable/Drinks/keg_steel.rsi + - type: PhysicalComposition + materialComposition: + Steel: 150 + - type: ItemMapper + mapLayers: + label: + whitelist: + tags: + - Document + sprite: _NF/Objects/Consumable/Drinks/keg_steel.rsi + +- type: entity + parent: DrinkKegBase + id: DrinkKegWood + suffix: Wood + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Drinks/keg_wood.rsi + state: icon + - type: Clothing + sprite: _NF/Objects/Consumable/Drinks/keg_wood.rsi + - type: PhysicalComposition + materialComposition: + Wood: 150 + - type: ItemMapper + mapLayers: + label: + whitelist: + tags: + - Document + sprite: _NF/Objects/Consumable/Drinks/keg_wood.rsi + +- type: entity + parent: DrinkKegBase + id: DrinkKegPlastic + suffix: Plastic + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Drinks/keg_plastic.rsi + layers: + - state: keg-empty + - state: keg-alpha-6 + map: ["enum.SolutionContainerLayers.Fill"] + visible: true + - type: Clothing + sprite: _NF/Objects/Consumable/Drinks/keg_plastic.rsi + - type: PhysicalComposition + materialComposition: + Plastic: 150 + - type: SolutionContainerVisuals + maxFillLevels: 6 + fillBaseName: keg-alpha- + - type: ItemMapper + mapLayers: + label: + whitelist: + tags: + - Document + sprite: _NF/Objects/Consumable/Drinks/keg_wood.rsi diff --git a/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/Containers/condiments.yml new file mode 100644 index 00000000000..0ee74d535de --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/Containers/condiments.yml @@ -0,0 +1,80 @@ +- type: entity + parent: BaseFoodCondiment + id: BaseFoodCondimentSqueezeBottle + abstract: true + name: condiment squeeze bottle + description: A thin plastic container used to store condiments. + components: + - type: Drink + solution: food + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + - type: RefillableSolution + solution: food + - type: Spillable + solution: food + - type: SolutionTransfer + playTransferSound: true + canChangeTransferAmount: true + minTransferAmount: 5 + maxTransferAmount: 30 + - type: Appearance + - type: PhysicalComposition + materialComposition: + Plastic: 50 + - type: Sprite + sprite: _NF/Objects/Consumable/Food/condiments.rsi + - type: Icon + sprite: _NF/Objects/Consumable/Food/condiments.rsi + # - type: EmitSoundOnActivate + # sound: + # collection: squeezeBottleUseSounds + # params: + # variation: 0.125 + # - type: EmitSoundOnLand + # sound: + # collection: squeezeBottleUseSounds + # params: + # variation: 0.125 + +- type: entity + parent: BaseFoodCondimentSqueezeBottle + id: FoodCondimentSqueezeBottleKetchup + name: ketchup squeeze bottle + description: You feel more American already. + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Ketchup + Quantity: 30 + - type: Tag + tags: + - Ketchup + - type: Sprite + state: squeeze-bottle-ketchup + - type: Icon + state: squeeze-bottle-ketchup + +- type: entity + parent: BaseFoodCondimentSqueezeBottle + id: FoodCondimentSqueezeBottleMustard + name: mustard squeeze bottle + description: You feel more American already. + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Mustard + Quantity: 30 + - type: Tag + tags: + - Mustard + - type: Sprite + state: squeeze-bottle-mustard + - type: Icon + state: squeeze-bottle-mustard diff --git a/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/ingredients.yml new file mode 100644 index 00000000000..97111e3e096 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/ingredients.yml @@ -0,0 +1,107 @@ +# Lots of misc stuff in here, hard to parent it. + +# Powder (For when you throw stuff like flour and it explodes) + +# Reagent Containers + +- type: entity + parent: [ReagentPacketBase, ItemHeftyBase] + id: ReagentContainerSalt + name: salt container + description: A big container of salt. Good for cooking! + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Food/ingredients.rsi + state: salt-big + - type: SolutionContainerManager + solutions: + food: + maxVol: 50 + reagents: + - ReagentId: TableSalt + Quantity: 50 + - type: Drink + solution: food + useSound: + path: /Audio/Items/eating_1.ogg + +- type: entity + parent: [ReagentPacketBase, ItemHeftyBase] + id: ReagentContainerPepper + name: pepper container + description: A big container of pepper. Good for cooking! + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Food/ingredients.rsi + state: pepper-big + - type: SolutionContainerManager + solutions: + food: + maxVol: 50 + reagents: + - ReagentId: Blackpepper + Quantity: 50 + +- type: entity + parent: BaseItem + id: ReagentContainerRaisin + name: raisin bag + description: A big bag of raisin. Good for baking! + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Food/ingredients.rsi + state: raisin-big + - type: FlavorProfile + flavors: + - raisins + - type: Tag + tags: + - Fruit + - type: Damageable + damageContainer: Inorganic + +- type: entity + parent: ReagentPacketBase + id: ReagentContainerChocolate + name: chocolate chips bag + description: A big bag of chocolate chips. Good for cooking! + components: + - type: Sprite + sprite: _NF/Objects/Consumable/Food/ingredients.rsi + state: cocoa-chip-big + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: CocoaPowder + Quantity: 50 + +- type: entity + parent: DrinkKegPlastic + id: DrinkKegPlasticKetchup + name: ketchup keg + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 600 + reagents: + - ReagentId: Ketchup + Quantity: 600 + - type: StaticPrice + price: 60 + +- type: entity + parent: DrinkKegPlastic + id: DrinkKegPlasticMustard + name: mustard keg + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 600 + reagents: + - ReagentId: Mustard + Quantity: 600 + - type: StaticPrice + price: 60 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml index 991ba893778..da0d31daefa 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml @@ -17,14 +17,36 @@ - type: entity parent: IDCardStandard - id: STCIDCard + id: PilotIDCard + name: pilot ID card + components: + - type: PresetIdCard + job: Pilot + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: default + - state: idpilot + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + +- type: entity + parent: IDCardStandard + id: StcIDCard name: station traffic controller ID card components: + - type: PresetIdCard + job: StationTrafficController - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi layers: - state: silver - - state: idheadofpersonnel + - state: idstationtrafficcontroller + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi - type: Item heldPrefix: silver - - type: PresetIdCard - job: StationTrafficController \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml index a11512778f3..adae535b533 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml @@ -28,15 +28,43 @@ - type: entity parent: BasePDA - id: STCPDA + id: PilotPDA + name: pilot PDA + description: This PDA smells like thruster exhaust fumes. + components: + - type: Pda + id: PilotIDCard + state: pda-pilot + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#A32D26" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-pilot + +- type: entity + parent: BasePDA + id: StcPDA name: station traffic controller PDA description: Declare emergencies in style! components: - type: Pda - id: STCIDCard + id: StcIDCard state: pda - type: PdaBorderColor borderColor: "#717059" accentVColor: "#A32D26" - type: Icon - state: pda \ No newline at end of file + state: pda diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/censer.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/censer.yml new file mode 100644 index 00000000000..10d42687320 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/censer.yml @@ -0,0 +1,56 @@ +- type: entity + name: censer + parent: BaseItem + id: Censer + description: Usually you put incense in there. + components: + - type: Smokable + exposeTemperature: 1173.15 + - type: Tag + tags: + - ObjectOfSpiritualSignificance + - Censer + - type: StaticPrice + price: 5 + - type: InjectableSolution + solution: smokable + - type: ContainerContainer + containers: + bowl_slot: !type:ContainerSlot + - type: ItemSlots + - type: SmokingPipe + bowl_slot: + name: Bowl + whitelist: + tags: + - Smokable + insertSound: + path: /Audio/Weapons/Guns/Empty/empty.ogg + ejectSound: + path: /Audio/Weapons/Guns/Empty/empty.ogg + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 20 + - type: Sprite + sprite: _NF/Objects/Misc/censer.rsi + state: unlit-icon + - type: Clothing + sprite: Objects/Consumable/Smokeables/Pipes/pipe.rsi + slots: [ belt ] + equippedPrefix: unlit + - type: Item + size: 10 + sprite: _NF/Objects/Misc/censer.rsi + - type: Appearance + - type: BurnStateVisuals + unlitIcon: unlit-icon + - type: MeleeWeapon + wideAnimationRotation: 0 + attackRate: 1 + damage: + types: + Blunt: 3 + Heat: 3 +# - type: IgniteOnMeleeHit +# fireStacks: 1 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/mortuary_urn.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/mortuary_urn.yml new file mode 100644 index 00000000000..0fb457ab2bd --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/mortuary_urn.yml @@ -0,0 +1,53 @@ +- type: entity + name: mortuary urn + parent: BaseItem + id: UrnMortuary + description: Keeps your beloved friend's ashes not scattered in your pocket. + components: + - type: Sprite + state: icon + sprite: _NF/Objects/Misc/mortuary_urn.rsi + - type: Item + size: 10 + - type: Tag + tags: + - ObjectOfSpiritualSignificance + - type: StaticPrice + price: 20 + - type: ItemSlots + slots: + ashes_slot: + insertVerbText: Put Ashes + ejectVerbText: Empty Ashes + name: Urn Contents + startingItem: null + whitelist: + tags: + - Ash + - Ectoplasm + insertOnInteract: true + priority: 1 + label_slot: + insertVerbText: Attach Label + ejectVerbText: Remove Label + name: Urn Label + startingItem: null + whitelist: + tags: + - Document + insertOnInteract: true + priority: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + ashes_slot: !type:ContainerSlot {} + label_slot: !type:ContainerSlot {} + - type: Appearance + - type: ItemMapper + mapLayers: + label: + whitelist: + tags: + - Document + sprite: _NF/Objects/Misc/mortuary_urn.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml index 11dc2898435..19cee6a3205 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml @@ -55,3 +55,17 @@ - type: Sprite sprite: Objects/Misc/bureaucracy.rsi # Cannot use _NF or its exploding state: stamp-lawyer + +- type: entity + name: station traffic controller's rubber stamp + parent: RubberStampBase + id: RubberStampStc + suffix: DO NOT MAP + components: + - type: Stamp + stampedName: stamp-component-stamped-name-stc + stampedColor: "#CC6633" + stampState: "paper_stamp-stc" + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi # Cannot use _NF or its exploding + state: stamp-stc diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml index 0f0485a419d..c73d3584a13 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -127,3 +127,20 @@ - state: green_bit shader: unshaded - state: refill_lesslethal + +- type: entity + parent: SecuredVendingMachineRestock + id: VendingMachineRestockAutoTuneVend + name: AutoTuneVend restock box + description: A box containing music and stuff for the Auto Tune vending machine. A label reads THE BOX IS TAMPER PROOF AND WILL DESTROY IT'S CONTENT ON HARM. + components: + - type: VendingMachineRestock + canRestock: + - AutoTuneVendInventory + - type: Sprite + sprite: _NF/Objects/Specific/Service/vending_machine_restock.rsi + layers: + - state: base + - state: green_bit + shader: unshaded + - state: refill_autotune diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/chemical-containers.yml new file mode 100644 index 00000000000..d3440a0f32b --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/chemical-containers.yml @@ -0,0 +1,14 @@ +- type: entity + parent: Jug + name: jug (Space Cleaner) + id: JugSpaceCleaner + noSpawn: true + components: + - type: Label + currentLabel: Space Cleaner + - type: SolutionContainerManager + solutions: + beaker: + reagents: + - ReagentId: SpaceCleaner + Quantity: 200 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml new file mode 100644 index 00000000000..c35e83d16be --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml @@ -0,0 +1,93 @@ +# sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi +# ammo tag: CrossbowBolt +# Parents +- type: entity + name: crossbow + parent: BaseItem + id: BaseCrossbow + description: The original rooty tooty point and shooty. + abstract: true + components: + - type: Tag + tags: + - WeaponRanged + - WeaponLongarms + - type: Sprite + sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi + - type: Item + size: 60 + - type: Clothing + quickEquip: false + slots: + - Back + - type: GunWieldBonus + minAngle: -33 + maxAngle: -33 + - type: Wieldable + wieldSound: + path: /Audio/Weapons/Guns/Misc/arrow_nock.ogg + - type: UseDelay + delay: 2 + - type: Gun + angleDecay: 35 + minAngle: 34 + maxAngle: 36 + fireRate: 1 + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + collection: BulletMiss + soundEmpty: null + - type: ItemSlots + slots: + bolt: + name: bolt + startingItem: null + insertSound: /Audio/Items/bow_pull.ogg + whitelist: + tags: + - CrossbowBolt + - type: ContainerContainer + containers: + bolt: !type:ContainerSlot + - type: ContainerAmmoProvider + container: bolt + +- type: entity + id: CrossbowImprovised + parent: BaseCrossbow + name: impovised crossbow + components: + - type: Sprite + layers: + - state: unwielded + map: [ base ] + - state: unwielded-bolt + map: [ bolt ] + visible: false + # to elucidate whats intended here: + # arrow is inserted -> ItemMapper sets layer with map `arrow` to visible + # bow is wielded -> generic vis sets states of layers with map `arrow` and `base` + # arrow is removed -> itemmapper sets layer with map `arrow` to invisible + - type: Appearance + - type: ItemMapper + spriteLayers: + - bolt + mapLayers: + bolt: + whitelist: + tags: + - CrossbowBolt + - type: GenericVisualizer + visuals: + enum.WieldableVisuals.Wielded: + bolt: + True: { state: wielded-bolt } + False: { state: unwielded-bolt } + base: + True: { state: wielded } + False: { state: unwielded } + - type: Construction + graph: ImprovisedCrossbow + node: ImprovisedCrossbow diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Guns/revolvers.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Guns/revolvers.yml new file mode 100644 index 00000000000..4ce4ee7df02 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Guns/revolvers.yml @@ -0,0 +1,48 @@ +- type: entity + name: Argenti + parent: BaseWeaponRevolver + id: WeaponRevolverArgenti + description: Argenti Type 20 revolver. Manufactured by Silver Industries. While the design with expanded cylinder is quite ancient, the right gunslinger will know how to utilise it well. Uses .20 rifle ammo. + components: + - type: Sprite + sprite: _NF/Objects/Weapons/Argenti-Revolver.rsi + - type: Clothing + sprite: _NF/Objects/Weapons/Argenti-Revolver.rsi + - type: Gun + fireRate: 2 + resetOnHandSelected: false + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeRifle + proto: CartridgeRifle + capacity: 6 + chambers: [ True, True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null, null ] + - type: StaticPrice + price: 200 + +- type: entity + parent: WeaponRevolverArgenti + id: WeaponRevolverArgentiNonlethal + suffix: Non-lethal + components: + - type: RevolverAmmoProvider + whitelist: + tags: + - CartridgeRifle + proto: CartridgeRifleRubber + capacity: 6 + chambers: [ True, True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null, null ] + +- type: entity + parent: WeaponRevolverDeckard + id: WeaponRevolverDeckardNonlethal + suffix: Non-lethal + components: + - type: RevolverAmmoProvider + capacity: 5 + proto: CartridgeMagnumRubber + chambers: [ True, True, True, True, True ] + ammoSlots: [ null, null, null, null, null ] diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Projectiles/crossbow_bolts.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Projectiles/crossbow_bolts.yml new file mode 100644 index 00000000000..515ba8e97ee --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Projectiles/crossbow_bolts.yml @@ -0,0 +1,113 @@ +# Parents +- type: entity + parent: BaseArrow + id: BaseCrossbowBolt + abstract: true + components: + - type: Item + size: 5 + - type: Sprite + sprite: _NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi + - type: Tag + tags: + - CrossbowBolt + - CannonRestrict + +# Spawnable variations +- type: entity + parent: BaseCrossbowBolt + id: CrossbowBolt + name: bolt + description: One of these was enough to put down King Richard the Lionheart. Should do for a Xeno Queen too. + components: + - type: Sprite + layers: + - state: tail + color: red + - state: rod + color: brown + - state: tip + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 35 + +# Craftable variations +- type: entity + parent: CrossbowBolt + id: CrossbowBoltGlassShard + name: glass shard bolt + description: A bolt with a glass shard as a tip. + components: + - type: Sprite + layers: + - state: tail + color: blue + - state: rod + color: darkgray + - state: tip + color: white + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 25 + - type: Construction + graph: CraftCrossbowBoltGlassShard + node: CraftCrossbowBoltGlassShard + +- type: entity + parent: CrossbowBolt + id: CrossbowBoltPlasmaGlassShard + name: plasma glass shard bolt + description: A bolt with a plasma glass shard as a tip. + components: + - type: Sprite + layers: + - state: tail + color: cyan + - state: rod + color: darkgray + - state: tip + color: magenta + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 30 + - type: Construction + graph: CraftCrossbowBoltPlasmaGlassShard + node: CraftCrossbowBoltPlasmaGlassShard + +- type: entity + parent: CrossbowBolt + id: CrossbowBoltUraniumGlassShard + name: uranium glass shard bolt + description: A bolt with a uranium glass shard as a tip. God have mercy on thy victims for you won't. + components: + - type: Sprite + layers: + - state: tail + color: yellow + - state: rod + color: darkgray + - state: tip + color: lightgreen + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + damage: + types: + Piercing: 25 + Radiation: 5 + - type: Construction + graph: CraftCrossbowBoltUraniumGlassShard + node: CraftCrossbowBoltUraniumGlassShard diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml new file mode 100644 index 00000000000..7f31a07567d --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml @@ -0,0 +1,50 @@ +- type: entity + name: wooden stake + parent: Spear + id: WoodenStake + description: Essential appliance for pitching tents and killing vampires. + components: + - type: Tag + tags: + - Spear + - WeaponMeleeStake + - Wooden + - type: Sprite + sprite: _NF/Objects/Weapons/Melee/wooden_stake.rsi + size: 2 + state: icon + - type: MeleeWeapon + wideAnimationRotation: -135 + attackRate: 1.5 + damage: + types: + Piercing: 6 + - type: Clothing + quickEquip: false + slots: + - belt + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 20 #excess damage avoids cost of spawning entities. + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Item + size: 10 + sprite: _NF/Objects/Weapons/Melee/wooden_stake.rsi + - type: Construction + graph: WoodenStakeCraftingGraph + node: WoodenStakeNode diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Shotguns/shotguns.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Shotguns/shotguns.yml new file mode 100644 index 00000000000..3a526d271ad --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Shotguns/shotguns.yml @@ -0,0 +1,17 @@ +- type: entity + parent: WeaponShotgunSawn + id: WeaponShotgunSawnNonlethal + suffix: Non-lethal + components: + - type: BallisticAmmoProvider + capacity: 2 + proto: ShellShotgunBeanbag + +- type: entity + parent: WeaponShotgunKammerer + id: WeaponShotgunKammererNonlethal + suffix: Non-lethal + components: + - type: BallisticAmmoProvider + capacity: 4 + proto: ShellShotgunBeanbag diff --git a/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml b/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml index e766e5a0b99..34bdf9446f8 100644 --- a/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml +++ b/Resources/Prototypes/_NF/Entities/Spawners/mobs.yml @@ -23,3 +23,16 @@ - type: ConditionalSpawner prototypes: - MobCatClarpy + +- type: entity + name: Crispy Spawner + id: SpawnMobCatCrispy + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobCatCrispy diff --git a/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml index a3fc2e3416d..837b840fa75 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml @@ -19,13 +19,33 @@ - type: Wires layoutId: AirlockCommand +- type: entity + parent: AirlockCommand + id: AirlockFrontierCommandLocked + suffix: Frontier Command, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"], ["HeadOfPersonnel"]] + - type: Wires + layoutId: AirlockCommand + +- type: entity + parent: AirlockCommandGlass + id: AirlockFrontierCommandGlassLocked + suffix: Frontier Command, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"], ["HeadOfPersonnel"]] + - type: Wires + layoutId: AirlockCommand + - type: entity parent: AirlockMercenary id: AirlockMercenaryLocked suffix: Mercenary, Locked components: - type: AccessReader - access: [["Mercenary"]] + access: [["Captain"], ["Mercenary"]] - type: Wires layoutId: AirlockMercenary @@ -35,4 +55,12 @@ suffix: Mercenary, Locked components: - type: AccessReader - access: [["Mercenary"]] + access: [["Captain"], ["Mercenary"]] + +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassShuttleTransit + suffix: External, PubTrans, Glass, Docking + components: + - type: PriorityDock + tag: DockTransit diff --git a/Resources/Prototypes/_NF/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/_NF/Entities/Structures/Doors/Windoors/windoor.yml new file mode 100644 index 00000000000..73781b76250 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Doors/Windoors/windoor.yml @@ -0,0 +1,34 @@ +# TODO remove these with parameterized prototypes/whatever we end up doing +# Windoors (alphabetical) + +- type: entity + parent: WindoorSecure + id: WindoorSecureMercenaryLocked + suffix: Mercenary, Locked + components: + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + +- type: entity + parent: WindoorSecure + id: WindoorSecureFrontierLocked + suffix: Frontier, Locked + components: + - type: AccessReader + access: [["Frontier"]] + +- type: entity + parent: WindoorSecure + id: WindoorSecureFrontierCommandLocked + suffix: Frontier Command, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"], ["HeadOfPersonnel"]] + +- type: entity + parent: WindoorSecure + id: WindoorSecureHeadOfSecurityLocked + suffix: Sheriff, Locked + components: + - type: AccessReader + access: [["HeadOfSecurity"]] diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml new file mode 100644 index 00000000000..93833a3a796 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml @@ -0,0 +1,184 @@ +# Gun racks +- type: entity + id: WeaponRackBase + parent: BaseStructure + name: gun rack + description: A storage unit for expedited pacification measures. +# placement: +# mode: SnapgridCenter + components: +# - type: Rotatable +# - type: Icon +# sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi +# state: icon_generic_gunrack + - type: Sprite + snapCardinals: true #false + noRot: true + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: Appearance + - type: EntityStorageVisuals + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Locked: + locked: + True: { visible: true, shader: unshaded } + False: { visible: false } + unlocked: + True: { visible: false } + False: { visible: true, shader: unshaded } + - type: AccessReader + - type: Lock + locked: false + - type: Damageable + damageModifierSet: Metallic + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Transform + anchored: true + noRot: true + - type: Physics + bodyType: Static + - type: Anchorable + - type: Pullable + - type: InteractionOutline + - type: ItemSlots + slots: + weapon1_slot: + name: stored weapon + whitelist: + tags: + - WeaponLongarms + insertOnInteract: false + priority: 8 + weapon2_slot: + name: stored weapon + whitelist: + tags: + - WeaponLongarms + insertOnInteract: false + priority: 7 + weapon3_slot: + name: stored weapon + whitelist: + tags: + - WeaponLongarms + insertOnInteract: false + priority: 6 + weapon4_slot: + name: stored weapon + whitelist: + tags: + - WeaponLongarms + insertOnInteract: false + priority: 5 + weapon5_slot: + name: stored weapon + whitelist: + tags: + - WeaponLongarms + insertOnInteract: false + priority: 4 + - type: ItemMapper + mapLayers: + weapon_generic_gun1: + minCount: 1 + whitelist: + tags: + - WeaponLongarms + weapon_generic_gun2: + minCount: 2 + whitelist: + tags: + - WeaponLongarms + weapon_generic_gun3: + minCount: 3 + whitelist: + tags: + - WeaponLongarms + weapon_generic_gun4: + minCount: 4 + whitelist: + tags: + - WeaponLongarms + weapon_generic_gun5: + minCount: 5 + whitelist: + tags: + - WeaponLongarms + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + weapon1_slot: !type:ContainerSlot {} + weapon2_slot: !type:ContainerSlot {} + weapon3_slot: !type:ContainerSlot {} + weapon4_slot: !type:ContainerSlot {} + weapon5_slot: !type:ContainerSlot {} + weapon6_slot: !type:ContainerSlot {} + - type: StaticPrice + price: 80 + - type: Construction + graph: WeaponRackConstructionGraph + node: GunRackNode + +- type: entity + id: WeaponRackWallmountedBase + parent: WeaponRackBase + suffix: Wallmount + components: + - type: WallMount + arc: 360 + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack_wallmounted + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: Appearance + - type: EntityStorageVisuals + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Locked: + locked: + True: { visible: true, shader: unshaded } + False: { visible: false } + unlocked: + True: { visible: false } + False: { visible: true, shader: unshaded } + - type: Construction + graph: WeaponRackConstructionGraph + node: GunRackWallmountedNode diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml new file mode 100644 index 00000000000..f4ed9627b5a --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml @@ -0,0 +1,130 @@ +# Melee weapon racks +- type: entity + id: WeaponRackMeleeBase + parent: WeaponRackBase + name: melee weapon rack + description: A storage unit for expedited pacification measures. + components: + - type: Sprite + noRot: true + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + snapCardinals: true + layers: + - state: base_generic_meleerack + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: Appearance + - type: EntityStorageVisuals + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Locked: + locked: + True: { visible: true, shader: unshaded } + False: { visible: false } + unlocked: + True: { visible: false } + False: { visible: true, shader: unshaded } + - type: AccessReader + - type: Lock + locked: false + - type: ItemSlots + slots: + weapon1_slot: + name: stored weapon + whitelist: + tags: + - WeaponMelee + insertOnInteract: false + priority: 8 + weapon2_slot: + name: stored weapon + whitelist: + tags: + - WeaponMelee + insertOnInteract: false + priority: 7 + weapon3_slot: + name: stored weapon + whitelist: + tags: + - WeaponMelee + insertOnInteract: false + priority: 6 + weapon4_slot: + name: stored weapon + whitelist: + tags: + - WeaponMelee + insertOnInteract: false + priority: 5 + weapon5_slot: + name: stored weapon + whitelist: + tags: + - WeaponMelee + insertOnInteract: false + priority: 4 + - type: ItemMapper + mapLayers: + weapon_generic_melee1: + minCount: 1 + whitelist: + tags: + - WeaponMelee + weapon_generic_melee2: + minCount: 2 + whitelist: + tags: + - WeaponMelee + weapon_generic_melee3: + minCount: 3 + whitelist: + tags: + - WeaponMelee + weapon_generic_melee4: + minCount: 4 + whitelist: + tags: + - WeaponMelee + weapon_generic_melee5: + minCount: 5 + whitelist: + tags: + - WeaponMelee + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + - type: Construction + graph: WeaponRackConstructionGraph + node: MeleeRackNode + +- type: entity + id: WeaponRackMeleeWallmountedBase + parent: WeaponRackMeleeBase + suffix: Wallmount + components: + - type: WallMount + arc: 360 + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack_wallmounted + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: Appearance + - type: EntityStorageVisuals + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Locked: + locked: + True: { visible: true, shader: unshaded } + False: { visible: false } + unlocked: + True: { visible: false } + False: { visible: true, shader: unshaded } + - type: Construction + graph: WeaponRackConstructionGraph + node: MeleeRackWallmountedNode diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml new file mode 100644 index 00000000000..8fc3392a6eb --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml @@ -0,0 +1,185 @@ +# Pistol weapon racks +- type: entity + id: WeaponRackPistolBase + parent: WeaponRackBase + name: pistol rack + description: A storage unit for expedited pacification measures. + placement: + mode: SnapgridCenter + components: + - type: Sprite + drawdepth: SmallObjects + noRot: true + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: Appearance + - type: EntityStorageVisuals + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Locked: + locked: + True: { visible: true, shader: unshaded } + False: { visible: false } + unlocked: + True: { visible: false } + False: { visible: true, shader: unshaded } + - type: AccessReader + - type: Lock + locked: false + - type: Damageable + damageModifierSet: Metallic + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 600 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Transform + anchored: true + noRot: true + - type: Physics + bodyType: Static + - type: Anchorable + - type: Pullable + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.10,-0.10,0.10,0.10" + density: 500 + mask: + - TabletopMachineMask + - type: ItemSlots + slots: + weapon1_slot: + name: stored weapon + whitelist: + tags: + - WeaponShortArms + - Sidearm + insertOnInteract: false + priority: 8 + weapon2_slot: + name: stored weapon + whitelist: + tags: + - WeaponShortArms + - Sidearm + insertOnInteract: false + priority: 7 + weapon3_slot: + name: stored weapon + whitelist: + tags: + - WeaponShortArms + - Sidearm + insertOnInteract: false + priority: 6 + weapon4_slot: + name: stored weapon + whitelist: + tags: + - WeaponShortArms + - Sidearm + insertOnInteract: false + priority: 5 + - type: ItemMapper + mapLayers: + weapon_generic_pistol1: + minCount: 1 + whitelist: + tags: + - WeaponShortArms + - Sidearm + weapon_generic_pistol2: + minCount: 2 + whitelist: + tags: + - WeaponShortArms + - Sidearm + weapon_generic_pistol3: + minCount: 3 + whitelist: + tags: + - WeaponShortArms + - Sidearm + weapon_generic_pistol4: + minCount: 4 + whitelist: + tags: + - WeaponShortArms + - Sidearm + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + - type: InteractionOutline + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + weapon1_slot: !type:ContainerSlot {} + weapon2_slot: !type:ContainerSlot {} + weapon3_slot: !type:ContainerSlot {} + weapon4_slot: !type:ContainerSlot {} + weapon5_slot: !type:ContainerSlot {} + weapon6_slot: !type:ContainerSlot {} + - type: StaticPrice + price: 80 + - type: Construction + graph: WeaponRackConstructionGraph + node: PistolRackNode + +- type: entity + id: WeaponRackPistolWallmountedBase + parent: WeaponRackPistolBase + suffix: Wallmount + components: + - type: WallMount + arc: 360 + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack_wallmounted + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: Appearance + - type: EntityStorageVisuals + - type: GenericVisualizer + visuals: + enum.StorageVisuals.Locked: + locked: + True: { visible: true, shader: unshaded } + False: { visible: false } + unlocked: + True: { visible: false } + False: { visible: true, shader: unshaded } + - type: Construction + graph: WeaponRackConstructionGraph + node: PistolRackWallmountedNode diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_captain.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_captain.yml new file mode 100644 index 00000000000..701850b4972 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_captain.yml @@ -0,0 +1,119 @@ +# Captain +- type: entity + id: WeaponRackCaptain + parent: WeaponRackBase + suffix: Captain + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack + color: darkcyan + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackWallmountedCaptain + parent: WeaponRackWallmountedBase + suffix: Captain, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack_wallmounted + color: darkcyan + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeCaptain + parent: WeaponRackMeleeBase + name: melee weapon rack + suffix: Captain + description: A storage unit for expedited pacification measures. + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack + color: darkcyan + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeWallmountedCaptain + parent: WeaponRackMeleeWallmountedBase + suffix: Captain, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack_wallmounted + color: darkcyan + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolBaseCaptain + parent: WeaponRackPistolBase + suffix: Captain + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack + color: darkcyan + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolWallmountedCaptain + parent: WeaponRackPistolWallmountedBase + suffix: Captain, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack_wallmounted + color: darkcyan + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"]] + - type: Lock + locked: true diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_mercenary.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_mercenary.yml new file mode 100644 index 00000000000..dca0fbfffe8 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_mercenary.yml @@ -0,0 +1,117 @@ +# Mercenary +- type: entity + id: WeaponRackMercenary + parent: WeaponRackBase + suffix: Mercenary + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack + color: yellow + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackWallmountedMercenary + parent: WeaponRackWallmountedBase + suffix: Mercenary, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack_wallmounted + color: yellow + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeMercenary + parent: WeaponRackMeleeBase + suffix: Mercenary + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack + color: yellow + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeWallmountedMercenary + parent: WeaponRackMeleeWallmountedBase + suffix: Mercenary, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack_wallmounted + color: yellow + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolBaseMercenary + parent: WeaponRackPistolBase + suffix: Mercenary + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack + color: yellow + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolWallmountedMercenary + parent: WeaponRackPistolWallmountedBase + suffix: Mercenary, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack_wallmounted + color: yellow + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Mercenary"]] + - type: Lock + locked: true diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_salvage.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_salvage.yml new file mode 100644 index 00000000000..a8e072e8c95 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_salvage.yml @@ -0,0 +1,117 @@ +# Salvage +- type: entity + id: WeaponRackSalvage + parent: WeaponRackBase + suffix: Salvage + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack + color: orange + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Salvage"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackWallmountedSalvage + parent: WeaponRackWallmountedBase + suffix: Salvage, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack_wallmounted + color: orange + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Salvage"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeSalvage + parent: WeaponRackMeleeBase + suffix: Salvage + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack + color: orange + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Salvage"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeWallmountedSalvage + parent: WeaponRackMeleeWallmountedBase + suffix: Salvage, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack_wallmounted + color: orange + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Salvage"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolBaseSalvage + parent: WeaponRackPistolBase + suffix: Salvage + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack + color: orange + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Salvage"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolWallmountedSalvage + parent: WeaponRackPistolWallmountedBase + suffix: Salvage, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack_wallmounted + color: orange + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Captain"], ["Salvage"]] + - type: Lock + locked: true diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_security.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_security.yml new file mode 100644 index 00000000000..a1ded723889 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/weapon_racks_security.yml @@ -0,0 +1,117 @@ +# Security +- type: entity + id: WeaponRackSecurity + parent: WeaponRackBase + suffix: Security + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack + color: red + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Security"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackWallmountedSecurity + parent: WeaponRackWallmountedBase + suffix: Security, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + layers: + - state: base_generic_gunrack_wallmounted + color: red + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Security"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeSecurity + parent: WeaponRackMeleeBase + suffix: Security + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack + color: red + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Security"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackMeleeWallmountedSecurity + parent: WeaponRackMeleeWallmountedBase + suffix: Security, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + layers: + - state: base_generic_meleerack_wallmounted + color: red + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Security"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolBaseSecurity + parent: WeaponRackPistolBase + suffix: Security + components: + - type: Sprite + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack + color: red + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Security"]] + - type: Lock + locked: true + +- type: entity + id: WeaponRackPistolWallmountedSecurity + parent: WeaponRackPistolWallmountedBase + suffix: Security, Wallmount + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + layers: + - state: base_generic_pistolrack_wallmounted + color: red + - state: locked + map: [ locked ] + - state: unlocked + map: [ unlocked ] + - type: AccessReader + access: [["Security"]] + - type: Lock + locked: true diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml index d3f9ba3d84c..b4ea1018719 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml @@ -68,7 +68,7 @@ interfaces: - key: enum.ShipyardConsoleUiKey.Shipyard type: ShipyardConsoleBoundUserInterface - - type: ItemSlots + - type: ItemSlots - type: ContainerContainer containers: ShipyardConsole-targetId: !type:ContainerSlot {} @@ -80,6 +80,22 @@ !type:DamageTrigger damage: 0 +# Custom console +- type: entity + id: BaseMothershipComputer + parent: ComputerShipyard + name: mothership console + description: Used on motherships to purchase and sell ships without returning to a station. + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Custom + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Custom + type: ShipyardConsoleBoundUserInterface + - type: ShipyardListing + +# Hardcoded consoles - type: entity id: ComputerShipyardSecurity parent: ComputerShipyard @@ -100,7 +116,7 @@ - map: ["computerLayerKeyboard"] state: generic_keyboard - map: ["computerLayerScreen"] - state: shipyard_security + state: shipyard_security - map: ["computerLayerKeys"] state: telesci_key @@ -124,7 +140,7 @@ - map: ["computerLayerKeyboard"] state: generic_keyboard - map: ["computerLayerScreen"] - state: shipyard_blackmarket + state: shipyard_blackmarket - map: ["computerLayerKeys"] state: blackmarket_key - type: Destructible @@ -156,7 +172,31 @@ - map: ["computerLayerKeyboard"] state: generic_keyboard - map: ["computerLayerScreen"] - state: shipyard_blackmarket + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + state: blackmarket_key + +- type: entity + id: ComputerShipyardScrap + parent: ComputerShipyard + name: scrapyard console + description: Used to purchase and sell "shuttles" + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Scrap + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Scrap + type: ShipyardConsoleBoundUserInterface + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_blackmarket + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_blackmarket - map: ["computerLayerKeys"] state: blackmarket_key @@ -257,4 +297,4 @@ description: Used to sell goods loaded onto cargo pallets components: - type: MarketModifier - mod: 0.40 \ No newline at end of file + mod: 0.40 diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml new file mode 100644 index 00000000000..aef8216fce5 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml @@ -0,0 +1,808 @@ +# Base structures +- type: entity + parent: BaseStructureComputer + id: BaseComputerTabletop + suffix: Tabletop + abstract: true + placement: + mode: SnapgridCenter + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _NF/Structures/Machines/computer_tabletop.rsi + layers: + - map: ["computerLayerBody"] + state: computer_tabletop + - map: ["computerLayerKeyboard"] + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: generic + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + - type: Fixtures + fixtures: + fix1: + density: 500 + mask: + - TabletopMachineMask + +- type: entity + parent: [ BaseComputerShuttle, BaseComputerTabletop ] # Shuttle + id: BaseComputerTabletopShuttle + abstract: true + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _NF/Structures/Machines/computer_tabletop.rsi + layers: + - map: ["computerLayerBody"] + state: computer_tabletop + - map: ["computerLayerKeyboard"] + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: generic + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerShipyard ] # Shuttle + id: ComputerTabletopShipyard + components: + - type: Sprite + drawdepth: SmallObjects + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: _NF/Structures/Machines/computers.rsi + state: shipyard + - map: ["computerLayerKeys"] + sprite: _NF/Structures/Machines/computers.rsi + state: telesci_key + - type: Fixtures + fixtures: + fix1: + density: 500 + mask: + - TabletopMachineMask + +- type: entity + parent: [ BaseMothershipComputer, ComputerTabletopShipyard ] + id: BaseMothershipComputerTabletop + components: + - type: Sprite + drawdepth: SmallObjects + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: _NF/Structures/Machines/computers.rsi + state: shipyard + - map: ["computerLayerKeys"] + sprite: _NF/Structures/Machines/computers.rsi + state: telesci_key + - type: Fixtures + fixtures: + fix1: + density: 500 + mask: + - TabletopMachineMask + +# Computers: Base Game +- type: entity + parent: [ BaseComputerTabletop, ComputerAlert ] + id: ComputerTabletopAlert + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: alert-2 + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: atmos_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerEmergencyShuttle ] + id: ComputerTabletopEmergencyShuttle + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _NF/Structures/Machines/computer_tabletop.rsi + layers: + - map: ["computerLayerBody"] + state: computer_tabletop + - map: ["computerLayerKeyboard"] + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: generic + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ ComputerShuttle, BaseComputerTabletopShuttle ] # Shuttle + id: ComputerTabletopShuttle + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: shuttle + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ ComputerShuttleSyndie, BaseComputerTabletopShuttle ] # Shuttle + id: ComputerTabletopShuttleSyndie + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: syndishuttle + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: syndie_key + +- type: entity + parent: [ ComputerShuttleCargo, BaseComputerTabletopShuttle ] # Shuttle + id: ComputerTabletopShuttleCargo + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: shuttle + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ ComputerShuttleSalvage, BaseComputerTabletopShuttle ] # Shuttle + id: ComputerTabletopShuttleSalvage + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: shuttle + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerIFF ] + id: ComputerTabletopIFF + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Shuttles/iff.rsi + state: helm + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ ComputerIFFSyndicate, ComputerTabletopIFF ] + id: ComputerTabletopIFFSyndicate + suffix: Syndicate, Tabletop + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Shuttles/iff.rsi + state: helm + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerPowerMonitoring ] + id: ComputerTabletopPowerMonitoring + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: power_monitor + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: power_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerMedicalRecords ] + id: ComputerTabletopMedicalRecords + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: medcomp + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: med_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerCriminalRecords ] + id: ComputerTabletopCriminalRecords + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: explosive + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: security_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerStationRecords ] + id: ComputerTabletopStationRecords + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: generic + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerCrewMonitoring ] + id: ComputerTabletopCrewMonitoring + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: crew + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: med_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerResearchAndDevelopment ] + id: ComputerTabletopResearchAndDevelopment + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: rdcomp + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: rd_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerAnalysisConsole ] + id: ComputerTabletopAnalysisConsole + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: artifact + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerId ] + id: ComputerTabletopId + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: id + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: id_key + +- type: entity + parent: [ BaseComputerTabletop, computerBodyScanner ] + id: ComputerTabletopBodyScanner + components: + - type: Sprite + drawdepth: SmallObjects + sprite: _NF/Structures/Machines/computer_tabletop.rsi + layers: + - map: ["computerLayerBody"] + state: computer_tabletop + - map: ["computerLayerKeyboard"] + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: generic + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerComms ] + id: ComputerTabletopComms + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: comm + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: ComputerTabletopComms + id: SyndicateComputerTabletopComms + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: comm_syndie + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: syndie_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerSolarControl ] + id: ComputerTabletopSolarControl + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: solar_screen + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerRadar ] + id: ComputerTabletopRadar + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: solar_screen + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerCargoShuttle ] + id: ComputerTabletopCargoShuttle + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: supply + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerCargoOrders ] + id: ComputerTabletopCargoOrders + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: request + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerCargoBounty ] + id: ComputerTabletopCargoBounty + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: bounty + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerCloningConsole ] + id: ComputerTabletopCloningConsole + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: dna + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys + +- type: entity + parent: [ BaseComputerTabletop, ComputerSalvageExpedition ] + id: ComputerTabletopSalvageExpedition + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: mining + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerSurveillanceCameraMonitor ] + id: ComputerTabletopSurveillanceCameraMonitor + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: cameras + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerSurveillanceWirelessCameraMonitor ] + id: ComputerTabletopSurveillanceWirelessCameraMonitor + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: cameras + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerPalletConsole ] + id: ComputerTabletopPalletConsole + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: request + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ BaseComputerTabletop, ComputerMassMedia ] + id: ComputerTabletopMassMedia + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: service + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: service_keys + +- type: entity + parent: [ BaseComputerTabletop, ] + id: ComputerTabletopSensorMonitoring + # Putting this as "DO NOT MAP" until the performance issues are fixed. + # And it's more fleshed out. + suffix: Tabletop, TESTING, DO NOT MAP + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: sensors + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: atmos_key + +# Computers: Frontier + +- type: entity + parent: [ ComputerShipyardSecurity, ComputerTabletopShipyard ] + id: ComputerTabletopShipyardSecurity + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: _NF/Structures/Machines/computers.rsi + state: shipyard_security + - map: ["computerLayerKeys"] + sprite: _NF/Structures/Machines/computers.rsi + state: telesci_key + +- type: entity + parent: [ ComputerShipyardBlackMarket, ComputerTabletopShipyard ] + id: ComputerTabletopShipyardBlackMarket + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: _NF/Structures/Machines/computers.rsi + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + sprite: _NF/Structures/Machines/computers.rsi + state: blackmarket_key + +- type: entity + parent: [ ComputerShipyardExpedition, ComputerTabletopShipyard ] + id: ComputerTabletopShipyardExpedition + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: _NF/Structures/Machines/computers.rsi + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + sprite: _NF/Structures/Machines/computers.rsi + state: blackmarket_key + +- type: entity + parent: [ ComputerShipyardScrap, ComputerTabletopShipyard ] + id: ComputerTabletopShipyardScrap + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: _NF/Structures/Machines/computers.rsi + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + sprite: _NF/Structures/Machines/computers.rsi + state: blackmarket_key + +- type: entity + parent: [ ComputerPalletConsoleNFNormalMarket, BaseComputerTabletop ] + id: ComputerTabletopPalletConsoleNFNormalMarket + suffix: Normal, Tabletop + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Machines/computers.rsi + state: request + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: tech_key + +- type: entity + parent: [ ComputerPalletConsoleNFHighMarket, ComputerTabletopPalletConsoleNFNormalMarket ] + id: ComputerTabletopPalletConsoleNFHighMarket + suffix: High, Tabletop + +- type: entity + parent: [ ComputerPalletConsoleNFLowMarket, ComputerTabletopPalletConsoleNFNormalMarket ] + id: ComputerTabletopPalletConsoleNFLowMarket + suffix: Low, Tabletop + +- type: entity + parent: [ ComputerPalletConsoleNFVeryLowMarket, ComputerTabletopPalletConsoleNFNormalMarket ] + id: ComputerTabletopPalletConsoleNFVeryLowMarket + suffix: VeryLow, Tabletop \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml new file mode 100644 index 00000000000..356b4a065c6 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml @@ -0,0 +1,44 @@ +# The empress console +- type: entity + id: EmpressMothershipComputer + name: Empress mothership console + parent: BaseMothershipComputer + components: + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_security + - map: ["computerLayerKeys"] + state: telesci_key + - type: ShipyardListing + shuttles: + - Fighter + - Cleric + - Rogue + +# The caduceus console +- type: entity + id: CaduceusMothershipComputer + name: Caduceus mothership console + parent: BaseMothershipComputer + components: + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_medical + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_medical + - map: ["computerLayerKeys"] + state: telesci_key + - type: ShipyardListing + shuttles: + - Pulse + - Searchlight diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml index 79b1db4d7e7..aa1baccb6bf 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml @@ -13,13 +13,24 @@ delay: 999999 - type: Physics bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.45,-0.45,0.45,0.45" + density: 190 + mask: + - MachineMask + layer: + - MobLayer # To allow people to pass through - type: MaterialStorage - type: Appearance -# - type: Climbable + - type: Climbable - type: CryoSleep - type: ContainerContainer containers: - body_container: !type:ContainerSlot + body_container: !type:ContainerSlot - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml new file mode 100644 index 00000000000..3d4798c542e --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml @@ -0,0 +1,32 @@ +- type: entity + parent: TelecomServer + id: TelecomServerFilledShuttle + suffix: Ship + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - EncryptionKeyCargo + - EncryptionKeyEngineering + - EncryptionKeyMedical + - EncryptionKeyScience + - EncryptionKeyService + - EncryptionKeyTraffic + +- type: entity + parent: TelecomServer + id: TelecomServerFilledSecurity + suffix: Ship, Security + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - EncryptionKeyCargo + - EncryptionKeyEngineering + - EncryptionKeyMedical + - EncryptionKeyScience + - EncryptionKeySecurity + - EncryptionKeyService + - EncryptionKeyTraffic diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml index 657504d8563..f9f609fd474 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml @@ -77,8 +77,8 @@ normalState: normal-unshaded ejectState: eject-unshaded denyState: deny-unshaded - - type: Advertise - pack: AstroVendAds +# - type: Advertise +# pack: CircuitVendAds - type: Sprite sprite: _NF/Structures/Machines/VendingMachines/circuitvend.rsi layers: @@ -150,8 +150,8 @@ brokenState: broken normalState: normal-unshaded # ejectState: eject-unshaded No sprite, see chefvend/dinnerware/BODA/etc for expamples - - type: Advertise - pack: AstroVendAds +# - type: Advertise +# pack: BountyVendAds - type: Sprite sprite: _NF/Structures/bountyvend.rsi layers: @@ -232,3 +232,56 @@ radius: 1.5 energy: 1.6 color: "#ff033e" + +- type: entity + parent: VendingMachine + id: VendingMachineAutoTuneVend + name: AutoTune + description: feeling BASSed? time to TUNE into AutoVend! Take NOTES and let your audience TREBLE + components: + - type: Anchorable + delay: 999999 + - type: VendingMachine + pack: AutoTuneVendInventory + offState: off + brokenState: broken + normalState: normal-unshaded + ejectState: eject-unshaded + denyState: deny-unshaded +# - type: Advertise +# pack: AutoTuneVendAds + - type: Sprite + sprite: _NF/Structures/Machines/VendingMachines/autotunevend.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#4b93ad" + - type: MarketModifier + mod: 10 +#Interface + - type: UserInterface + interfaces: + - key: enum.VendingMachineUiKey.Key + type: VendingMachineBoundUserInterface + - key: enum.WiresUiKey.Key + type: WiresBoundUserInterface + - key: enum.InstrumentUiKey.Key # Added + type: InstrumentBoundUserInterface # Added +#Music + - type: Instrument + allowPercussion: true + allowProgramChange: true + handheld: false +#Ghost + # - type: GhostRole + # makeSentient: true + # allowSpeech: true + # - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml index bc090347817..00d06fc3747 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -25,3 +25,57 @@ map: ["enum.WeldableLayers.BaseWelded"] - type: AccessReader access: [["Captain"], ["Mercenary"]] + +# Janitor +- type: entity + id: LockerJanitor + parent: LockerBaseSecure + name: janitor locker + components: + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: janitor + stateDoorOpen: janitor_open + stateDoorClosed: janitor_door + - type: Sprite + sprite: _NF/Structures/Storage/closet.rsi + noRot: true + layers: + - state: generic + map: ["enum.StorageVisualLayers.Base"] + - state: generic_door + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.StorageVisualLayers.Lock"] + shader: unshaded + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + +# Pilot +- type: entity + id: LockerPilot + parent: LockerBaseSecure + name: pilot's locker + components: + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: pilot + stateDoorOpen: pilot_open + stateDoorClosed: pilot_door + - type: Sprite + sprite: _NF/Structures/Storage/closet.rsi + noRot: true + layers: + - state: generic + map: ["enum.StorageVisualLayers.Base"] + - state: generic_door + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.StorageVisualLayers.Lock"] + shader: unshaded + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - type: AccessReader + access: [["Captain"], ["Pilot"]] diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/suit_storage_wall.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/suit_storage_wall.yml new file mode 100644 index 00000000000..eaee400301a --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/suit_storage_wall.yml @@ -0,0 +1,36 @@ +- type: entity + id: SuitStorageWallmount + parent: [SuitStorageBase, BaseWallLocker] + name: suit wallstorage unit + placement: + mode: SnapgridCenter + components: +# Basic function components + - type: Transform + noRot: false +# Visual properties + - type: Sprite + drawdepth: WallMountedItems + noRot: false + sprite: _NF/Structures/Storage/suit_storage_wall.rsi + layers: + - state: generic + map: ["enum.StorageVisualLayers.Base"] + - state: generic_door + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.StorageVisualLayers.Lock"] + shader: unshaded + - type: EntityStorageVisuals + stateBase: generic + stateBaseClosed: generic + stateDoorOpen: generic_open + stateDoorClosed: generic_door + stateLocked: locked + stateUnlocked: unlocked + closeSound: + path: /Audio/Machines/windoor_open.ogg + openSound: + path: /Audio/Machines/windoor_open.ogg + denySound: + path: /Audio/Machines/airlock_deny.ogg diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/base_structurecrates.yml index 6024bf9da39..78df5303f31 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -29,7 +29,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 100 behaviors: - !type:DoActsBehavior acts: ["Destruction"] diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml index 5f80520cb5d..9edcfa28cbe 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml @@ -76,3 +76,81 @@ - MachineLayer - type: StaticPrice price: 2000 + +- type: entity + parent: CrateTradeBaseSecure + id: CrateTradeContrabandSecureNormal + name: Syndicate contraband crate + noSpawn: true + components: + - type: Icon + sprite: _NF/Structures/Storage/Crates/contraband_crate.rsi + - type: Sprite + sprite: _NF/Structures/Storage/Crates/contraband_crate.rsi + - type: EntityStorage + deleteContentsOnDestruction: true + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.29" + density: 150 # Heavy + mask: + - SmallMobMask + layer: + - MachineLayer + - type: StaticPrice + price: 10000 + +- type: entity + parent: CrateTradeBaseSecure + id: CrateTradeContrabandSecureDonk + name: Donk Co. contraband crate + noSpawn: true + components: + - type: Icon + sprite: _NF/Structures/Storage/Crates/donkco_crate.rsi + - type: Sprite + sprite: _NF/Structures/Storage/Crates/donkco_crate.rsi + - type: EntityStorage + deleteContentsOnDestruction: true + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.29" + density: 400 # Very heavy + mask: + - SmallMobMask + layer: + - MachineLayer + - type: StaticPrice + price: 20000 + +- type: entity + parent: CrateTradeBaseSecure + id: CrateTradeContrabandSecureCyberSun + name: Cybersun Industries contraband crate + noSpawn: true + components: + - type: Icon + sprite: _NF/Structures/Storage/Crates/cybersun_crate.rsi + - type: Sprite + sprite: _NF/Structures/Storage/Crates/cybersun_crate.rsi + - type: EntityStorage + deleteContentsOnDestruction: true + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.29" + density: 400 # Very heavy + mask: + - SmallMobMask + layer: + - MachineLayer + - type: StaticPrice + price: 20000 \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/Signs/contraband.yml b/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/Signs/contraband.yml new file mode 100644 index 00000000000..61186f6b7f8 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/Signs/contraband.yml @@ -0,0 +1,421 @@ +- type: entity + parent: PosterContrabandFreeTonto + id: PosterContrabandFreeTontoDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandAtmosiaDeclarationIndependence + id: PosterContrabandAtmosiaDeclarationIndependenceDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandFunPolice + id: PosterContrabandFunPoliceDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandLustyExomorph + id: PosterContrabandLustyExomorphDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSyndicateRecruitment + id: PosterContrabandSyndicateRecruitmentDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandClown + id: PosterContrabandClownDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSmoke + id: PosterContrabandSmokeDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandGreyTide + id: PosterContrabandGreyTideDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandMissingGloves + id: PosterContrabandMissingGlovesDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandHackingGuide + id: PosterContrabandHackingGuideDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRIPBadger + id: PosterContrabandRIPBadgerDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandAmbrosiaVulgaris + id: PosterContrabandAmbrosiaVulgarisDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandDonutCorp + id: PosterContrabandDonutCorpDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandEAT + id: PosterContrabandEATDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandTools + id: PosterContrabandToolsDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandPower + id: PosterContrabandPowerDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSpaceCube + id: PosterContrabandSpaceCubeDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandCommunistState + id: PosterContrabandCommunistStateDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandLamarr + id: PosterContrabandLamarrDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandBorgFancy + id: PosterContrabandBorgFancyDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandBorgFancyv2 + id: PosterContrabandBorgFancyv2DD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandKosmicheskayaStantsiya + id: PosterContrabandKosmicheskayaStantsiyaDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRebelsUnite + id: PosterContrabandRebelsUniteDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandC20r + id: PosterContrabandC20rDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandHaveaPuff + id: PosterContrabandHaveaPuffDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRevolver + id: PosterContrabandRevolverDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandDDayPromo + id: PosterContrabandDDayPromoDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSyndicatePistol + id: PosterContrabandSyndicatePistolDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandEnergySwords + id: PosterContrabandEnergySwordsDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRedRum + id: PosterContrabandRedRumDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandCC64KAd + id: PosterContrabandCC64KAdDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandPunchShit + id: PosterContrabandPunchShitDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandTheGriffin + id: PosterContrabandTheGriffinDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandFreeDrone + id: PosterContrabandFreeDroneDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandBustyBackdoorExoBabes6 + id: PosterContrabandBustyBackdoorExoBabes6DD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRobustSoftdrinks + id: PosterContrabandRobustSoftdrinksDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandShamblersJuice + id: PosterContrabandShamblersJuiceDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandPwrGame + id: PosterContrabandPwrGameDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSunkist + id: PosterContrabandSunkistDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSpaceCola + id: PosterContrabandSpaceColaDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandSpaceUp + id: PosterContrabandSpaceUpDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandKudzu + id: PosterContrabandKudzuDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandMaskedMen + id: PosterContrabandMaskedMenDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandUnreadableAnnouncement + id: PosterContrabandUnreadableAnnouncementDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandFreeSyndicateEncryptionKey + id: PosterContrabandFreeSyndicateEncryptionKeyDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandBountyHunters + id: PosterContrabandBountyHuntersDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandTheBigGasTruth + id: PosterContrabandTheBigGasTruthDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandWehWatches + id: PosterContrabandWehWatchesDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandVoteWeh + id: PosterContrabandVoteWehDD + suffix: DeadDrop + components: + - type: DeadDrop + +# These 3 originally from VEEGEE +- type: entity + parent: PosterContrabandBeachStarYamamoto + id: PosterContrabandBeachStarYamamotoDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandHighEffectEngineering + id: PosterContrabandHighEffectEngineeringDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandNuclearDeviceInformational + id: PosterContrabandNuclearDeviceInformationalDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRise + id: PosterContrabandRiseDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandRevolt + id: PosterContrabandRevoltDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandMoth + id: PosterContrabandMothDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandCybersun600 + id: PosterContrabandCybersun600DD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandDonk + id: PosterContrabandDonkDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandEnlistGorlex + id: PosterContrabandEnlistGorlexDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandInterdyne + id: PosterContrabandInterdyneDD + suffix: DeadDrop + components: + - type: DeadDrop + +- type: entity + parent: PosterContrabandWaffleCorp + id: PosterContrabandWaffleCorpDD + suffix: DeadDrop + components: + - type: DeadDrop + diff --git a/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/notice_board.yml b/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/notice_board.yml new file mode 100644 index 00000000000..e55a2fe1bdc --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/notice_board.yml @@ -0,0 +1,80 @@ +- type: entity + id: NoticeBoardNF + name: notice board + suffix: Frontier + description: You wish you could wear this on your back but alas. + placement: + mode: SnapgridCenter + snap: + - Wallmount + components: + - type: WallMount + arc: 200 + - type: Rotatable + - type: Clickable + - type: InteractionOutline + - type: Transform + anchored: true + - type: Physics + bodyType: Static + canCollide: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb {} + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 1 + max: 2 + - type: Sprite + drawdepth: WallTops + sprite: _NF/Structures/Wallmounts/notice_board.rsi + snapCardinals: false + state: base + layers: + - state: base + - map: [ "enum.StorageContainerVisualLayers.Fill" ] + visible: false + - type: Icon + sprite: _NF/Structures/Wallmounts/notice_board.rsi + state: icon + - type: Appearance + - type: StorageContainerVisuals + maxFillLevels: 8 + fillBaseName: notices- + - type: Storage + capacity: 16 + whitelist: + tags: + - Folder + - Document + - Write + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + - type: UserInterface + interfaces: + - key: enum.StorageUiKey.Key + type: StorageBoundUserInterface + - type: StaticPrice + price: 20 + - type: Construction + graph: NoticeBoardNFGraph + node: NoticeBoardNFNode diff --git a/Resources/Prototypes/_NF/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/_NF/Entities/Structures/Windows/plastitanium.yml new file mode 100644 index 00000000000..c7b6f38cb7c --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Windows/plastitanium.yml @@ -0,0 +1,45 @@ +- type: entity + id: PlastitaniumWindowIndestructible + name: plastitanium window + parent: BaseStructure + suffix: Indestructible + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: WallMount + arc: 360 # interact despite grilles + - type: Tag + tags: + - ForceFixRotations + - Window + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/plastitanium_window.rsi + - type: Icon + sprite: Structures/Windows/plastitanium_window.rsi + state: full + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb {} + mask: + - FullTileMask + layer: + - GlassLayer + - type: Airtight + - type: IconSmooth + key: walls + base: plwindow + - type: InteractionPopup + interactSuccessString: comp-window-knock + messagePerceivedByOthers: comp-window-knock + interactSuccessSound: + path: /Audio/Effects/glass_knock.ogg + - type: Appearance + - type: StaticPrice + price: 65 diff --git a/Resources/Prototypes/_NF/Events/events.yml b/Resources/Prototypes/_NF/Events/events.yml index 83351e9902f..f493ec18914 100644 --- a/Resources/Prototypes/_NF/Events/events.yml +++ b/Resources/Prototypes/_NF/Events/events.yml @@ -41,7 +41,7 @@ duration: 1350 maxDuration: 1560 - type: BluespaceErrorRule - gridPath: /Maps/Bluespace/cache.yml + gridPath: /Maps/_NF/Bluespace/cache.yml rewardFactor: 3.3 - type: entity @@ -61,7 +61,7 @@ duration: 1020 maxDuration: 1350 - type: BluespaceErrorRule - gridPath: /Maps/Bluespace/vault.yml + gridPath: /Maps/_NF/Bluespace/vault.yml rewardFactor: 0.7 - type: entity @@ -81,7 +81,7 @@ duration: 590 maxDuration: 780 - type: BluespaceErrorRule - gridPath: /Maps/Bluespace/vaultsmall.yml + gridPath: /Maps/_NF/Bluespace/vaultsmall.yml rewardFactor: 1 - type: entity @@ -101,7 +101,7 @@ duration: 1500 maxDuration: 1800 - type: BluespaceErrorRule - gridPath: /Maps/Bluespace/asteroidvault.yml + gridPath: /Maps/_NF/Bluespace/asteroidvault.yml - type: entity id: BluespaceAsteroidBunker @@ -120,7 +120,7 @@ duration: 2100 maxDuration: 2400 - type: BluespaceErrorRule - gridPath: /Maps/Bluespace/asteroidbunker.yml + gridPath: /Maps/_NF/Bluespace/asteroidbunker.yml - type: entity id: BluespaceCargoniaShip @@ -139,4 +139,4 @@ duration: 900 maxDuration: 1200 - type: BluespaceErrorRule - gridPath: /Maps/Bluespace/cargoniaship.yml + gridPath: /Maps/_NF/Bluespace/cargoniaship.yml diff --git a/Resources/Prototypes/_NF/InventoryTemplates/crispy_inventory_template.yml b/Resources/Prototypes/_NF/InventoryTemplates/crispy_inventory_template.yml new file mode 100644 index 00000000000..2726318423b --- /dev/null +++ b/Resources/Prototypes/_NF/InventoryTemplates/crispy_inventory_template.yml @@ -0,0 +1,45 @@ +- type: inventoryTemplate + id: crispy + slots: + # - name: ears + # slotTexture: ears + # slotFlags: EARS + # slotGroup: MainHotbar + # stripTime: 3 + # uiWindowPos: 1,2 + # strippingWindowPos: 1,2 + # displayName: Ears + # whitelist: + # tags: + # - PetWearableCat + + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 1,1 + strippingWindowPos: 1,1 + displayName: Mask + whitelist: + tags: + - PetWearable + + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + slotGroup: SecondHotbar + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,5 + displayName: Suit Storage + whitelist: + components: + - GasTank + + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID diff --git a/Resources/Prototypes/Maps/frontier.yml b/Resources/Prototypes/_NF/Maps/Outpost/frontier.yml similarity index 92% rename from Resources/Prototypes/Maps/frontier.yml rename to Resources/Prototypes/_NF/Maps/Outpost/frontier.yml index 9c268532b4d..fb09242be18 100644 --- a/Resources/Prototypes/Maps/frontier.yml +++ b/Resources/Prototypes/_NF/Maps/Outpost/frontier.yml @@ -1,7 +1,7 @@ - type: gameMap id: Frontier mapName: 'Frontier Outpost' - mapPath: /Maps/frontier.yml + mapPath: /Maps/_NF/Outpost/frontier.yml minPlayers: 0 maxPlayers: 100 stations: @@ -17,19 +17,21 @@ overflowJobs: - Passenger availableJobs: + Passenger: [ -1, -1 ] HeadOfPersonnel: [ 1, 1 ] HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 0, 0 ] SeniorOfficer: [ 0, 0 ] + Brigmedic: [ 0, 0 ] + SecurityOfficer: [ 0, 0 ] SecurityCadet: [ 0, 0 ] StationTrafficController: [ 0, 0 ] - Borg: [ 0, 0 ] Valet: [ 1, 1 ] MailCarrier: [ 0, 0 ] Janitor: [ 1, 1 ] +# Others: + Borg: [ 0, 0 ] Musician: [ 0, 0 ] Lawyer: [ 0, 0 ] Chaplain: [ 0, 0 ] Reporter: [ 0, 0 ] Psychologist: [ 0, 0 ] - Passenger: [ -1, -1 ] diff --git a/Resources/Prototypes/_NF/Shipyard/anomalouslab.yml b/Resources/Prototypes/_NF/Maps/POI/anomalouslab.yml similarity index 85% rename from Resources/Prototypes/_NF/Shipyard/anomalouslab.yml rename to Resources/Prototypes/_NF/Maps/POI/anomalouslab.yml index f1cd679309c..1dd40c41193 100644 --- a/Resources/Prototypes/_NF/Shipyard/anomalouslab.yml +++ b/Resources/Prototypes/_NF/Maps/POI/anomalouslab.yml @@ -1,7 +1,7 @@ - type: gameMap id: anomalouslab mapName: 'Anomalous Lab' - mapPath: /Maps/anomalouslab.yml + mapPath: /Maps/_NF/POI/anomalouslab.yml minPlayers: 0 stations: anomalouslab: diff --git a/Resources/Prototypes/_NF/Shipyard/cove.yml b/Resources/Prototypes/_NF/Maps/POI/cove.yml similarity index 86% rename from Resources/Prototypes/_NF/Shipyard/cove.yml rename to Resources/Prototypes/_NF/Maps/POI/cove.yml index 95d4a5b6d02..6d3b83ea69a 100644 --- a/Resources/Prototypes/_NF/Shipyard/cove.yml +++ b/Resources/Prototypes/_NF/Maps/POI/cove.yml @@ -1,7 +1,7 @@ - type: gameMap id: Cove mapName: 'Pirate Cove' - mapPath: /Maps/cove.yml + mapPath: /Maps/_NF/POI/cove.yml minPlayers: 0 stations: Cove: diff --git a/Resources/Prototypes/_NF/Shipyard/lodge.yml b/Resources/Prototypes/_NF/Maps/POI/lodge.yml similarity index 87% rename from Resources/Prototypes/_NF/Shipyard/lodge.yml rename to Resources/Prototypes/_NF/Maps/POI/lodge.yml index 89d2fe33ffa..8bae4a40ffb 100644 --- a/Resources/Prototypes/_NF/Shipyard/lodge.yml +++ b/Resources/Prototypes/_NF/Maps/POI/lodge.yml @@ -1,7 +1,7 @@ - type: gameMap id: Lodge mapName: 'Expeditionary Lodge' - mapPath: /Maps/cove.yml + mapPath: /Maps/_NF/POI/cove.yml minPlayers: 0 stations: Lodge: diff --git a/Resources/Prototypes/_NF/Markers/Spawners/crates.yml b/Resources/Prototypes/_NF/Markers/Spawners/crates.yml new file mode 100644 index 00000000000..be03cd18a12 --- /dev/null +++ b/Resources/Prototypes/_NF/Markers/Spawners/crates.yml @@ -0,0 +1,27 @@ +- type: entity + name: Contraband Crate Spawner + id: N14ContrabandCrateSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/Crates/generic.rsi + state: icon + - type: RandomSpawner + prototypes: + - CrateTradeContrabandSecureCyberSunFilled + - CrateTradeContrabandSecureDonkFilled + - CrateTradeContrabandSecureNormalFilled + - CrateTradeSecureHighFilled + - CrateTradeSecureNormalFilled #its in here twice for balance. TODO: find a better crate to put here instead like an animal one or something. + - CrateTradeSecureNormalFilled + - CrateNPCEmotionalSupportSafe + - LandMineExplosive + - BannerSyndicate + - BannerSyndicate + rarePrototypes: + - CrateSyndicateSurplusBundle + - CrateSyndicateLightSurplusBundle + - WeaponTurretXeno + rareChance: 0.01 diff --git a/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml b/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml index 3a3ee396c10..08291492756 100644 --- a/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml @@ -10,3 +10,16 @@ layers: - state: green - state: mercenary + +- type: entity + id: SpawnPointPilot + parent: SpawnPointJobBase + name: pilot + components: + - type: SpawnPoint + job_id: Pilot + - type: Sprite + sprite: _NF/Markers/jobs.rsi + layers: + - state: green + - state: pilot diff --git a/Resources/Prototypes/_NF/Markers/Spawners/posters.yml b/Resources/Prototypes/_NF/Markers/Spawners/posters.yml new file mode 100644 index 00000000000..5cd492d7d5b --- /dev/null +++ b/Resources/Prototypes/_NF/Markers/Spawners/posters.yml @@ -0,0 +1,76 @@ +- type: entity + parent: MarkerBase + id: RandomPosterContrabandDeadDrop + name: random contraband poster spawner + suffix: DeadDrop + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Wallmounts/posters.rsi + state: random_contraband + - type: RandomSpawner + offset: 0 + prototypes: + - PosterContrabandFreeTontoDD + - PosterContrabandAtmosiaDeclarationIndependenceDD + - PosterContrabandFunPoliceDD + - PosterContrabandLustyExomorphDD + - PosterContrabandSyndicateRecruitmentDD + - PosterContrabandClownDD + - PosterContrabandSmokeDD + - PosterContrabandGreyTideDD + - PosterContrabandMissingGlovesDD + - PosterContrabandHackingGuideDD + - PosterContrabandRIPBadgerDD + - PosterContrabandAmbrosiaVulgarisDD + - PosterContrabandDonutCorpDD + - PosterContrabandEATDD + - PosterContrabandToolsDD + - PosterContrabandPowerDD + - PosterContrabandSpaceCubeDD + - PosterContrabandCommunistStateDD + - PosterContrabandLamarrDD + - PosterContrabandBorgFancyDD + - PosterContrabandBorgFancyv2DD + - PosterContrabandKosmicheskayaStantsiyaDD + - PosterContrabandRebelsUniteDD + - PosterContrabandC20rDD + - PosterContrabandHaveaPuffDD + - PosterContrabandRevolverDD + - PosterContrabandDDayPromoDD + - PosterContrabandSyndicatePistolDD + - PosterContrabandEnergySwordsDD + - PosterContrabandRedRumDD + - PosterContrabandCC64KAdDD + - PosterContrabandPunchShitDD + - PosterContrabandTheGriffinDD + - PosterContrabandFreeDroneDD + - PosterContrabandBustyBackdoorExoBabes6DD + - PosterContrabandRobustSoftdrinksDD + - PosterContrabandShamblersJuiceDD + - PosterContrabandPwrGameDD + - PosterContrabandSunkistDD + - PosterContrabandSpaceColaDD + - PosterContrabandSpaceUpDD + - PosterContrabandKudzuDD + - PosterContrabandMaskedMenDD + - PosterContrabandUnreadableAnnouncementDD + - PosterContrabandFreeSyndicateEncryptionKeyDD + - PosterContrabandBountyHuntersDD + - PosterContrabandTheBigGasTruthDD + - PosterContrabandWehWatchesDD + - PosterContrabandVoteWehDD + - PosterContrabandBeachStarYamamotoDD + - PosterContrabandHighEffectEngineeringDD + - PosterContrabandNuclearDeviceInformationalDD + - PosterContrabandRevoltDD + - PosterContrabandRiseDD + - PosterContrabandMothDD + - PosterContrabandCybersun600DD + - PosterContrabandDonkDD + - PosterContrabandEnlistGorlexDD + - PosterContrabandInterdyneDD + - PosterContrabandWaffleCorpDD + - RandomPosterContraband #this is the entire non-deaddrop contraband poster list, making this essentially a 50/50 chance + chance: 1 diff --git a/Resources/Prototypes/_NF/Markers/Spawners/untimedAISpawners.yml b/Resources/Prototypes/_NF/Markers/Spawners/untimedAISpawners.yml new file mode 100644 index 00000000000..b6dcb98f63c --- /dev/null +++ b/Resources/Prototypes/_NF/Markers/Spawners/untimedAISpawners.yml @@ -0,0 +1,86 @@ +- type: entity + name: NPC Xeno Spawner + suffix: Easy + id: XenoAISpawnerEasy + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/Xenos/drone.rsi + state: crit + - state: ai + - type: RandomSpawner + prototypes: + - MobXeno + - MobXenoDroneNPC + rarePrototypes: + - MobXenoPraetorianNPC + - MobXenoRunnerNPC + - MobXenoSpitterNPC + rareChance: 0.10 + +- type: entity + name: NPC Xeno Spawner + suffix: Medium + id: XenoAISpawnerMedium + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/Xenos/praetorian.rsi + state: crit + - state: ai + - type: RandomSpawner + prototypes: + - MobXeno + - MobXenoPraetorianNPC + - MobXenoDroneNPC + - MobXenoRunnerNPC + - MobXenoSpitterNPC + rarePrototypes: + - MobXenoRavagerNPC + - MobXenoRounyNPC + rareChance: 0.10 + +- type: entity + name: NPC Xeno Spawner + suffix: Hard + id: XenoAISpawnerHard + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/Xenos/ravager.rsi + state: crit + - state: ai + - type: RandomSpawner + prototypes: + - MobXenoPraetorianNPC + - MobXenoRunnerNPC + - MobXenoSpitterNPC + - MobXenoRavagerNPC + rarePrototypes: + - MobXenoQueen + - MobXenoRounyNPC + - MobXenoDroneNPC + - MobXeno + rareChance: 0.10 + +- type: entity + name: NPC Xeno Spawner + suffix: Queen + id: XenoAISpawnerQueen + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/Xenos/queen.rsi + state: crit + - state: ai + - type: RandomSpawner + prototypes: + - MobXenoQueen diff --git a/Resources/Prototypes/_NF/Procedural/Themes/lava_mercenary.yml b/Resources/Prototypes/_NF/Procedural/Themes/lava_mercenary.yml new file mode 100644 index 00000000000..6ff266aece6 --- /dev/null +++ b/Resources/Prototypes/_NF/Procedural/Themes/lava_mercenary.yml @@ -0,0 +1,308 @@ +# Rooms +# Large +# - 17x5 +- type: dungeonRoom + id: LavaMercenary17x5a + size: 17,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,0 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary17x5b + size: 17,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 18,0 + tags: + - LavaMercenary + +# - 7x7 +- type: dungeonRoom + id: LavaMercenary7x7a + size: 7,7 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,42 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x7b + size: 7,7 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 8,42 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x7c + size: 7,7 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 16,42 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x7d + size: 7,7 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,42 + tags: + - LavaMercenary + +# Medium +# - 11x5 +- type: dungeonRoom + id: LavaMercenary11x5a + size: 11,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,6 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary11x5b + size: 11,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 12,6 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary11x5c + size: 11,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,6 + tags: + - LavaMercenary + +# - 7x5 +- type: dungeonRoom + id: LavaMercenary7x5a + size: 7,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,12 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x5b + size: 7,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 8,12 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x5c + size: 7,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 16,12 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x5d + size: 7,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,12 + tags: + - LavaMercenary + +# - 13x3 +- type: dungeonRoom + id: LavaMercenary13x3a + size: 13,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,30 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary13x3b + size: 13,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 14,30 + tags: + - LavaMercenary + +# - 11x3 +- type: dungeonRoom + id: LavaMercenary11x3a + size: 11,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,34 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary11x3b + size: 11,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 12,34 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary11x3c + size: 11,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,34 + tags: + - LavaMercenary + +# - 7x3 +- type: dungeonRoom + id: LavaMercenary7x3a + size: 7,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,38 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x3b + size: 7,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 8,38 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x3c + size: 7,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 16,38 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary7x3d + size: 7,3 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,38 + tags: + - LavaMercenary + +# Small +# - 5x5 +- type: dungeonRoom + id: LavaMercenary5x5a + size: 5,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,18 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary5x5b + size: 5,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 6,18 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary5x5c + size: 5,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 12,18 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary5x5d + size: 5,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 18,18 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary5x5e + size: 5,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,18 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary5x5f + size: 5,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 30,18 + tags: + - LavaMercenary + +# - 3x5 +- type: dungeonRoom + id: LavaMercenary3x5a + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 0,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5b + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 4,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5c + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 8,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5d + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 12,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5e + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 16,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5f + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 20,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5g + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 24,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5h + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 28,24 + tags: + - LavaMercenary + +- type: dungeonRoom + id: LavaMercenary3x5i + size: 3,5 + atlas: /Maps/Dungeon/lava_mercenary.yml + offset: 32,24 + tags: + - LavaMercenary diff --git a/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml b/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml index ab023630837..351cf7e9105 100644 --- a/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml +++ b/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml @@ -4,6 +4,7 @@ roomWhitelist: - CaveFactory - LavaBrig + - LavaMercenary - RuinedHospital - SalvageExperiment - RuinedDwelling @@ -296,3 +297,84 @@ - id: PottedPlantRandom amount: 1 +- type: dungeonConfig + id: LavaMercenary + generator: !type:PrefabDunGen + roomWhitelist: + - LavaMercenary + presets: + - Bucket + - Wow + - SpaceShip + - Tall + postGeneration: + - !type:CorridorPostGen + width: 3 + + - !type:DungeonEntrancePostGen + count: 2 + + - !type:RoomEntrancePostGen + entities: + - CableApcExtension + - AirlockMercenaryGlass + - !type:EntranceFlankPostGen + entities: + - Grille + - Window + + - !type:ExternalWindowPostGen + entities: + - Grille + - Window + + - !type:WallMountPostGen + spawns: + # Posters + - id: RandomPosterContraband + orGroup: content + - id: ExtinguisherCabinetFilled + prob: 0.2 + orGroup: content + - id: RandomPainting + prob: 0.05 + orGroup: content + - id: IntercomCommon + prob: 0.1 + orGroup: content + + - !type:BoundaryWallPostGen + tile: FloorSteel + wall: WallSolid + cornerWall: WallReinforced + + - !type:JunctionPostGen + width: 1 + + - !type:JunctionPostGen + + - !type:AutoCablingPostGen + + - !type:CornerClutterPostGen + contents: + - id: PottedPlantRandom + amount: 1 + + - !type:CorridorDecalSkirtingPostGen + color: "#5E7C16" + cardinalDecals: + South: BrickTileWhiteLineS + East: BrickTileWhiteLineE + North: BrickTileWhiteLineN + West: BrickTileWhiteLineW + cornerDecals: + SouthEast: BrickTileWhiteCornerSe + SouthWest: BrickTileWhiteCornerSw + NorthEast: BrickTileWhiteCornerNe + NorthWest: BrickTileWhiteCornerNw + pocketDecals: + SouthWest: BrickTileWhiteInnerSw + SouthEast: BrickTileWhiteInnerSe + NorthWest: BrickTileWhiteInnerNw + NorthEast: BrickTileWhiteInnerNe + diff --git a/Resources/Prototypes/_NF/Procedural/salvage_mods.yml b/Resources/Prototypes/_NF/Procedural/salvage_mods.yml index 5b9a5e68a24..393b63f8870 100644 --- a/Resources/Prototypes/_NF/Procedural/salvage_mods.yml +++ b/Resources/Prototypes/_NF/Procedural/salvage_mods.yml @@ -29,3 +29,9 @@ - Caves - Grasslands - Lava + +- type: salvageDungeonMod + id: LavaMercenary + proto: LavaMercenary + biomes: + - Lava diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/clothing/quiver_crossbow.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/clothing/quiver_crossbow.yml new file mode 100644 index 00000000000..aa6297728a6 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/clothing/quiver_crossbow.yml @@ -0,0 +1,14 @@ +- type: constructionGraph + id: CraftQuiverBolt + start: start + graph: + - node: start + edges: + - to: CraftQuiverBolt + steps: + - material: Cloth + amount: 5 + doAfter: 4 + + - node: CraftQuiverBolt + entity: ClothingBeltQuiverCrossbow diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/armory_racks_graphs.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/armory_racks_graphs.yml new file mode 100644 index 00000000000..3c8985fa987 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/armory_racks_graphs.yml @@ -0,0 +1,149 @@ +- type: constructionGraph + id: WeaponRackConstructionGraph + start: start + graph: + - node: start + actions: + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 10 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + - !type:DeleteEntity {} + + edges: + - to: GunRackNode + completed: + - !type:SnapToGrid {} + steps: + - material: MetalRod + amount: 5 + doAfter: 2 + - material: Steel + amount: 10 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + + - to: GunRackWallmountedNode + completed: + - !type:SnapToGrid {} + steps: + - material: MetalRod + amount: 5 + doAfter: 2 + - material: Steel + amount: 10 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + + - to: MeleeRackNode + completed: + - !type:SnapToGrid {} + steps: + - material: MetalRod + amount: 5 + doAfter: 2 + - material: Steel + amount: 10 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + + - to: MeleeRackWallmountedNode + completed: + - !type:SnapToGrid {} + steps: + - material: MetalRod + amount: 5 + doAfter: 2 + - material: Steel + amount: 10 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + + - to: PistolRackNode + completed: + - !type:SnapToGrid {} + steps: + - material: MetalRod + amount: 4 + doAfter: 2 + - material: Steel + amount: 6 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + + - to: PistolRackWallmountedNode + completed: + - !type:SnapToGrid {} + steps: + - material: MetalRod + amount: 4 + doAfter: 2 + - material: Steel + amount: 6 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + + - node: GunRackNode + entity: WeaponRackBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + + - node: GunRackWallmountedNode + entity: WeaponRackWallmountedBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + + - node: MeleeRackNode + entity: WeaponRackMeleeBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + + - node: MeleeRackWallmountedNode + entity: WeaponRackMeleeWallmountedBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + + - node: PistolRackNode + entity: WeaponRackPistolBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 + + - node: PistolRackWallmountedNode + entity: WeaponRackPistolWallmountedBase + edges: + - to: start + steps: + - tool: Screwing + doAfter: 5 diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/notice_board_graph.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/notice_board_graph.yml new file mode 100644 index 00000000000..bc1887e41d8 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/notice_board_graph.yml @@ -0,0 +1,28 @@ +- type: constructionGraph + id: NoticeBoardNFGraph + start: start + graph: + - node: start + actions: + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 2 + - !type:DeleteEntity {} + edges: + - to: NoticeBoardNFNode + completed: + - !type:SetAnchor + value: false + steps: + - material: WoodPlank + amount: 2 + doAfter: 2 + - node: NoticeBoardNFNode + entity: NoticeBoardNF + edges: + - to: start + completed: + - !type:EmptyAllContainers {} + steps: + - tool: Prying + doAfter: 5 diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/plastitanium.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/plastitanium.yml new file mode 100644 index 00000000000..6cc95e71b7f --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/plastitanium.yml @@ -0,0 +1,52 @@ +- type: constructionGraph + id: Plastitanium + start: start + graph: + - node: start + edges: + - to: plastitaniumWindow + steps: + - material: UraniumGlass + amount: 2 + doAfter: 2 + + - node: plastitaniumWindow + entity: PlastitaniumWindow + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + - tool: Cutting + doAfter: 1 + - tool: Screwing + doAfter: 1 + - tool: Welding + doAfter: 5 + - tool: Prying + doAfter: 1 + - tool: Anchoring + doAfter: 1 + - tool: Welding + doAfter: 10 + - tool: Prying + doAfter: 1 + - tool: Screwing + doAfter: 1 + - tool: Cutting + doAfter: 1 diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/improvised_bolt.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/improvised_bolt.yml new file mode 100644 index 00000000000..c7c438ece83 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/improvised_bolt.yml @@ -0,0 +1,71 @@ +- type: constructionGraph + id: CraftCrossbowBoltGlassShard + start: start + graph: + - node: start + edges: + - to: CraftCrossbowBoltGlassShard + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: GlassShard + name: Glass Shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: CraftCrossbowBoltGlassShard + entity: CrossbowBoltGlassShard + +- type: constructionGraph + id: CraftCrossbowBoltPlasmaGlassShard + start: start + graph: + - node: start + edges: + - to: CraftCrossbowBoltPlasmaGlassShard + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: PlasmaGlassShard + name: Plasma Glass Shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: CraftCrossbowBoltPlasmaGlassShard + entity: CrossbowBoltPlasmaGlassShard + +- type: constructionGraph + id: CraftCrossbowBoltUraniumGlassShard + start: start + graph: + - node: start + edges: + - to: CraftCrossbowBoltUraniumGlassShard + steps: + - material: MetalRod + amount: 1 + doAfter: 0.5 + - material: Cloth + amount: 1 + doAfter: 0.5 + - tag: UraniumGlassShard + name: Uranium Glass Shard + icon: + sprite: Objects/Materials/Shards/shard.rsi + state: shard1 + doAfter: 0.5 + + - node: CraftCrossbowBoltUraniumGlassShard + entity: CrossbowBoltUraniumGlassShard diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/improvised_crossbow.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/improvised_crossbow.yml new file mode 100644 index 00000000000..62098a9754b --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/improvised_crossbow.yml @@ -0,0 +1,20 @@ +- type: constructionGraph + id: ImprovisedCrossbow + start: start + graph: + - node: start + edges: + - to: ImprovisedCrossbow + steps: + - material: WoodPlank + amount: 15 + doAfter: 4 + - material: Cloth + amount: 10 + doAfter: 4 + - material: MetalRod + amount: 10 + doAfter: 0.5 + + - node: ImprovisedCrossbow + entity: CrossbowImprovised diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/wooden_stake.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/wooden_stake.yml new file mode 100644 index 00000000000..c9f7b6daf23 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/weapons/wooden_stake.yml @@ -0,0 +1,13 @@ +- type: constructionGraph + id: WoodenStakeCraftingGraph + start: start + graph: + - node: start + edges: + - to: WoodenStakeNode + steps: + - material: WoodPlank + amount: 4 + doAfter: 4 + - node: WoodenStakeNode + entity: WoodenStake diff --git a/Resources/Prototypes/_NF/Recipes/Construction/clothing.yml b/Resources/Prototypes/_NF/Recipes/Construction/clothing.yml new file mode 100644 index 00000000000..d0b1ad095d6 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/clothing.yml @@ -0,0 +1,24 @@ +- type: construction + name: quiver (bolts) + id: CraftQuiverBolt + graph: CraftQuiverBolt + startNode: start + targetNode: CraftQuiverBolt + category: construction-category-clothing + description: A quiver to hold crossbow bolts. + icon: { sprite: _NF/Objects/Clothing/Belt/crossbow_quiver.rsi, state: icon } + objectType: Item + +- type: latheRecipe + id: ClothingUniformJumpskirtSecStationGuard + result: ClothingUniformJumpskirtSecStationGuard + completetime: 4 + materials: + Cloth: 300 + +- type: latheRecipe + id: ClothingUniformJumpsuitSecStationGuard + result: ClothingUniformJumpsuitSecStationGuard + completetime: 4 + materials: + Cloth: 300 diff --git a/Resources/Prototypes/_NF/Recipes/Construction/furniture_armory_construction.yml b/Resources/Prototypes/_NF/Recipes/Construction/furniture_armory_construction.yml new file mode 100644 index 00000000000..04bc00dfd83 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/furniture_armory_construction.yml @@ -0,0 +1,100 @@ +#weapon racks +- type: construction + name: gun rack + id: GunRackConstruction + graph: WeaponRackConstructionGraph + startNode: start + targetNode: GunRackNode + category: construction-category-furniture + description: A storage unit for expeditiated pacification measures. + icon: + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + state: base_generic_gunrack + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: gun rack (wall-mounted) + id: GunRackWallmountedConstruction + graph: WeaponRackConstructionGraph + startNode: start + targetNode: GunRackWallmountedNode + category: construction-category-furniture + description: A storage unit for expeditiated pacification measures. + icon: + sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi + state: base_generic_gunrack_wallmounted + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + name: melee weapon rack + id: MeleeRackConstruction + graph: WeaponRackConstructionGraph + startNode: start + targetNode: MeleeRackNode + category: construction-category-furniture + description: A storage unit for expeditiated pacification measures. + icon: + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + state: base_generic_meleerack + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + +- type: construction + name: melee weapon rack (wall-mounted) + id: MeleeRackWallmountedConstruction + graph: WeaponRackConstructionGraph + startNode: start + targetNode: MeleeRackWallmountedNode + category: construction-category-furniture + description: A storage unit for expeditiated pacification measures. + icon: + sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi + state: base_generic_meleerack_wallmounted + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + name: pistol rack + id: PistolRackConstruction + graph: WeaponRackConstructionGraph + startNode: start + targetNode: PistolRackNode + category: construction-category-furniture + description: A storage unit for expeditiated pacification measures. + icon: + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + state: base_generic_pistolrack + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + +- type: construction + name: pistol rack (wall-mounted) + id: PistolRackWallmountedConstruction + graph: WeaponRackConstructionGraph + startNode: start + targetNode: PistolRackWallmountedNode + category: construction-category-furniture + description: A storage unit for expeditiated pacification measures. + icon: + sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi + state: base_generic_pistolrack_wallmounted + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition diff --git a/Resources/Prototypes/_NF/Recipes/Construction/wallmount_notice_board.yml b/Resources/Prototypes/_NF/Recipes/Construction/wallmount_notice_board.yml new file mode 100644 index 00000000000..7396d1af49f --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/wallmount_notice_board.yml @@ -0,0 +1,16 @@ +- type: construction + name: notice board + id: NoticeBoardNFWallmountedConstruction + graph: NoticeBoardNFGraph + startNode: start + targetNode: NoticeBoardNFNode + category: construction-category-structures + description: A wallmounted notice board. + objectType: Structure + placementMode: SnapgridCenter + icon: + sprite: _NF/Structures/Wallmounts/notice_board.rsi + state: icon + canBuildInImpassable: true + conditions: + - !type:WallmountCondition diff --git a/Resources/Prototypes/_NF/Recipes/Construction/weapons.yml b/Resources/Prototypes/_NF/Recipes/Construction/weapons.yml new file mode 100644 index 00000000000..cb8d4c2a0c9 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Construction/weapons.yml @@ -0,0 +1,55 @@ +- type: construction + name: improvised crossbow + id: ImprovisedCrossbow + graph: ImprovisedCrossbow + startNode: start + targetNode: ImprovisedCrossbow + category: construction-category-weapons + description: A shoddily constructed crossbow made out of wood and cloth. It's not much, but it's gotten the job done for millennia. + icon: { sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi, state: unwielded } + objectType: Item + +- type: construction + name: glass shard bolt + id: CraftCrossbowBoltGlassShard + graph: CraftCrossbowBoltGlassShard + startNode: start + targetNode: CraftCrossbowBoltGlassShard + category: construction-category-weapons + description: An arrow tipped with pieces of a glass shard, for use with a crossbow. + icon: { sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi, state: wielded-bolt } + objectType: Item + +- type: construction + name: plasma glass shard bolt + id: CraftCrossbowBoltPlasmaGlassShard + graph: CraftCrossbowBoltPlasmaGlassShard + startNode: start + targetNode: CraftCrossbowBoltPlasmaGlassShard + category: construction-category-weapons + description: An arrow tipped with pieces of a plasma glass shard, for use with a crossbow. + icon: { sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi, state: wielded-bolt } + objectType: Item + +- type: construction + name: uranium glass shard bolt + id: CraftCrossbowBoltUraniumGlassShard + graph: CraftCrossbowBoltUraniumGlassShard + startNode: start + targetNode: CraftCrossbowBoltUraniumGlassShard + category: construction-category-weapons + description: An arrow tipped with pieces of a uranium glass shard, for use with a crossbow. + icon: { sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi, state: wielded-bolt } + objectType: Item + +- type: construction + name: wooden stake + id: RecipeWoodenStake + graph: WoodenStakeCraftingGraph + startNode: start + targetNode: WoodenStakeNode + category: construction-category-weapons + description: Advanced version of a basic stick - a pointy stick. + icon: { sprite: _NF/Objects/Weapons/Melee/wooden_stake.rsi, state: icon } + objectType: Item + diff --git a/Resources/Prototypes/_NF/Recipes/Crafting/Graphs/shoes_graphs.yml b/Resources/Prototypes/_NF/Recipes/Crafting/Graphs/shoes_graphs.yml new file mode 100644 index 00000000000..e25448f6693 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Crafting/Graphs/shoes_graphs.yml @@ -0,0 +1,109 @@ +- type: constructionGraph + id: GraphClothingShoesClownModWhoopie + start: start + graph: + - node: start + edges: + - to: whoopiemod + steps: + - tag: ClownShoes + name: clown shoes + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + doAfter: 1 + - tag: WhoopieCushion + name: whoopie cushion + icon: + sprite: Objects/Fun/whoopie.rsi + state: icon + doAfter: 1 + - tag: WhoopieCushion + name: whoopie cushion + icon: + sprite: Objects/Fun/whoopie.rsi + state: icon + doAfter: 1 + - node: whoopiemod + entity: ClothingShoesClownModWhoopie + +- type: constructionGraph + id: GraphClothingShoesClownModKetchup + start: start + graph: + - node: start + edges: + - to: ketchupmod + steps: + - tag: ClownShoes + name: clown shoes + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + doAfter: 1 + - tag: Ketchup + name: squeeze bottle + icon: + sprite: _NF/Objects/Consumable/Food/condiments.rsi + state: squeeze-bottle-ketchup + doAfter: 1 + - node: ketchupmod + entity: ClothingShoesClownModKetchup + +- type: constructionGraph + id: GraphClothingShoesClownModMustarchup + start: start + graph: + - node: start + edges: + - to: mustarchupmod + steps: + - tag: ClownShoes + name: clown shoes + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + doAfter: 1 + - tag: Ketchup + name: ketchup + icon: + sprite: _NF/Objects/Consumable/Food/condiments.rsi + state: squeeze-bottle-ketchup + doAfter: 1 + - tag: Mustard + name: mustard + icon: + sprite: _NF/Objects/Consumable/Food/condiments.rsi + state: squeeze-bottle-mustard + doAfter: 1 + - node: mustarchupmod + entity: ClothingShoesClownModMustarchup + +- type: constructionGraph + id: GraphClothingShoesClownModUltimate + start: start + graph: + - node: start + edges: + - to: ultimatemod + steps: + - tag: ClownShoes + name: clown shoes + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + doAfter: 1 + - tag: Ketchup + name: squeeze bottle + icon: + sprite: _NF/Objects/Consumable/Food/condiments.rsi + state: squeeze-bottle-ketchup + doAfter: 1 + - tag: WhoopieCushion + name: whoopie cushion + icon: + sprite: Objects/Fun/whoopie.rsi + state: icon + doAfter: 1 + - node: ultimatemod + entity: ClothingShoesClownModUltimate diff --git a/Resources/Prototypes/_NF/Recipes/Crafting/shoes_recipes.yml b/Resources/Prototypes/_NF/Recipes/Crafting/shoes_recipes.yml new file mode 100644 index 00000000000..fca66e77f78 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Crafting/shoes_recipes.yml @@ -0,0 +1,51 @@ +- type: construction + name: "Whoopie cushioned clown shoes" + id: RecipeClothingShoesClownModWhoopie + graph: GraphClothingShoesClownModWhoopie + startNode: start + targetNode: whoopiemod + category: construction-category-misc + objectType: Item + description: "Ever wondered how annoyed your crewmates would become if you'd use whoopie cushion with ruthless efficiency? Wonder no more." + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + +- type: construction + name: "Clown shoes of Ketchup" + id: RecipeClothingShoesClownModKetchup + graph: GraphClothingShoesClownModKetchup + startNode: start + targetNode: ketchupmod + category: construction-category-misc + objectType: Item + description: "Ketchup goes in your left shoe. Left." + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + +- type: construction + name: "Clown shoes of Mustarchup" + id: RecipeClothingShoesClownModMustarchup + graph: GraphClothingShoesClownModMustarchup + startNode: start + targetNode: mustarchupmod + category: construction-category-misc + objectType: Item + description: "Ketchup goes in your right shoe, mustard - in your left." + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon + +- type: construction + name: "Clown shoes of Power" + id: RecipeClothingShoesClownModUltimate + graph: GraphClothingShoesClownModUltimate + startNode: start + targetNode: ultimatemod + category: construction-category-misc + objectType: Item + description: "Whoopie cushion goes in the left shoe, ketchup - in the right shoe, your sanity - in a disposal unit." + icon: + sprite: Clothing/Shoes/Specific/clown.rsi + state: icon diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml b/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml index ccdbdc72659..fe90e391947 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Command/stc.yml @@ -2,13 +2,13 @@ id: StationTrafficController name: job-name-stc description: job-description-stc - playTimeTracker: JobSTC - startingGear: STCGear + playTimeTracker: JobStc + startingGear: StcGear requirements: - !type:OverallPlaytimeRequirement time: 10800 canBeAntag: false - icon: "JobIconSTC" + icon: "JobIconStc" supervisors: job-supervisors-hop setPreference: true access: @@ -17,14 +17,14 @@ - Frontier - type: startingGear - id: STCGear + id: StcGear equipment: jumpsuit: ClothingUniformJumpsuitDetectiveGrey - back: ClothingBackpackFilled + back: ClothingBackpackStcFilled shoes: ClothingShoesColorBlack - id: STCPDA + id: StcPDA ears: ClothingHeadsetAltCommand belt: BoxFolderClipboard innerClothingSkirt: ClothingUniformJumpskirtDetectiveGrey - satchel: ClothingBackpackSatchelFilled - duffelbag: ClothingBackpackDuffelFilled \ No newline at end of file + satchel: ClothingBackpackSatchelStcFilled + duffelbag: ClothingBackpackDuffelStcFilled diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml index 11f665abe7c..4def14f6655 100644 --- a/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/_NF/Roles/Jobs/Fun/misc_startinggear.yml @@ -1,7 +1,7 @@ - type: startingGear id: MobEmotionalSupportGear - equipment: - id: PassengerIDCard +# equipment: +# id: PassengerIDCard - type: startingGear id: MobClippyGear @@ -15,7 +15,13 @@ # ears: ClothingHeadsetService id: AgentIDCard +- type: startingGear + id: MobCrispyGear +# equipment: +# ears: ClothingHeadsetService +# id: ChefIDCard + - type: startingGear id: MobMistakeGear - equipment: - id: PassengerIDCard +# equipment: +# id: PassengerIDCard diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml b/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml new file mode 100644 index 00000000000..60a333a6826 --- /dev/null +++ b/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml @@ -0,0 +1,37 @@ +- type: job + id: Pilot + name: job-name-pilot + description: job-description-pilot + playTimeTracker: JobPilot + requirements: + - !type:OverallPlaytimeRequirement + time: 120 + startingGear: PilotGear + canBeAntag: true + icon: "JobIconPilot" + supervisors: job-supervisors-captain + setPreference: true + access: + - Maintenance + - External + - Pilot + +- type: startingGear + id: PilotGear + equipment: + jumpsuit: ClothingUniformJumpsuitPilot + back: ClothingBackpackPilotFilled + shoes: ClothingShoesBootsPilot +# mask: ClothingMaskGasPilot # Doesn't exist yet + neck: ClothingNeckScarfPilot + eyes: ClothingEyesGlassesPilot + gloves: ClothingHandsGlovesPilot + head: ClothingHeadHatPilot + outerClothing: ClothingOuterCoatBomber + id: PilotPDA + ears: ClothingHeadsetAltPilot +# belt: ClothingBeltSalvageWebbing + pocket1: CrowbarRed +# innerClothingSkirt: ClothingUniformJumpskirtPilot # Doesn't exist yet + satchel: ClothingBackpackSatchelPilotFilled + duffelbag: ClothingBackpackDuffelPilotFilled diff --git a/Resources/Prototypes/_NF/Roles/play_time_trackers.yml b/Resources/Prototypes/_NF/Roles/play_time_trackers.yml index dfe6421b847..d71b8812e11 100644 --- a/Resources/Prototypes/_NF/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/_NF/Roles/play_time_trackers.yml @@ -2,10 +2,7 @@ id: JobMercenary - type: playTimeTracker - id: JobMartialArtist + id: JobStc - type: playTimeTracker - id: JobPrisonGuard - -- type: playTimeTracker - id: JobGladiator \ No newline at end of file + id: JobPilot diff --git a/Resources/Prototypes/_NF/Shipyard/bison.yml b/Resources/Prototypes/_NF/Shipyard/bison.yml index bb1d94377fa..b80f5393828 100644 --- a/Resources/Prototypes/_NF/Shipyard/bison.yml +++ b/Resources/Prototypes/_NF/Shipyard/bison.yml @@ -4,7 +4,7 @@ description: A heavy duty ship breaker with a durable hull and a substantial amount of living space, built for long journeys with self-sufficiency. price: 166138 category: Large - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/bison.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/bocadillo.yml b/Resources/Prototypes/_NF/Shipyard/bocadillo.yml index cc050e269cc..c4e59268241 100644 --- a/Resources/Prototypes/_NF/Shipyard/bocadillo.yml +++ b/Resources/Prototypes/_NF/Shipyard/bocadillo.yml @@ -2,7 +2,7 @@ id: Bocadillo name: NC Bocadillo description: A tiny food truck perfect for a solo chef. - price: 18250 + price: 20000 # 6%~ Added price - cheap small ship category: Small group: Civilian shuttlePath: /Maps/Shuttles/bocadillo.yml diff --git a/Resources/Prototypes/_NF/Shipyard/cleric.yml b/Resources/Prototypes/_NF/Shipyard/cleric.yml index fd0f9b7f2ae..77422bbf2ae 100644 --- a/Resources/Prototypes/_NF/Shipyard/cleric.yml +++ b/Resources/Prototypes/_NF/Shipyard/cleric.yml @@ -4,7 +4,8 @@ description: Small support vessel used for emergency rescues and first aid. price: 10800 #Appraisal is 10500 category: Small - group: Security #Should be only available at a cruiser custom shipyard TODO + group: None + mapchecker_group_override: Security # Treat this as a security vessel for mapchecker purposes shuttlePath: /Maps/Shuttles/cleric.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/dragonfly.yml b/Resources/Prototypes/_NF/Shipyard/dragonfly.yml new file mode 100644 index 00000000000..bda46d40b63 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/dragonfly.yml @@ -0,0 +1,32 @@ +- type: vessel + id: Dragonfly + name: DYS Dragonfly + description: Expedition-capable salvage and cargo freighter with a chemistry wing. + price: 85000 + category: Medium + group: Expedition + shuttlePath: /Maps/Shuttles/dragonfly.yml + +- type: gameMap + id: Dragonfly + mapName: 'Dragonfly' + mapPath: /Maps/Shuttles/dragonfly.yml + minPlayers: 0 + stations: + Dragonfly: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Dragonfly {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + CargoTechnician: [ 0, 0 ] + Chemist: [ 0, 0 ] + SalvageSpecialist: [ 0, 0 ] + ServiceWorker: [ 0, 0 ] + StationEngineer: [ 0, 0 ] + diff --git a/Resources/Prototypes/_NF/Shipyard/fighter.yml b/Resources/Prototypes/_NF/Shipyard/fighter.yml index a425f334c65..560e4556021 100644 --- a/Resources/Prototypes/_NF/Shipyard/fighter.yml +++ b/Resources/Prototypes/_NF/Shipyard/fighter.yml @@ -4,7 +4,8 @@ description: Small attack vessel used for boarding and transport of prisoners. price: 9000 #not sure how much mark up % to add but the appraisal is 8491$ category: Small - group: Security #Should be only available at a cruiser custom shipyard TODO + group: None + mapchecker_group_override: Security # Treat this as a security vessel for mapchecker purposes shuttlePath: /Maps/Shuttles/fighter.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/garden.yml b/Resources/Prototypes/_NF/Shipyard/garden.yml new file mode 100644 index 00000000000..ddf029ded05 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/garden.yml @@ -0,0 +1,27 @@ +- type: vessel + id: Garden + name: HS Garden + description: A small botany vessel dedicated to horiticultural experimentation. + price: 24750 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/garden.yml + +- type: gameMap + id: Garden + mapName: 'HS Garden' + mapPath: /Maps/Shuttles/garden.yml + minPlayers: 0 + stations: + Garden: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Garden {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Botanist: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/inquisitor.yml b/Resources/Prototypes/_NF/Shipyard/inquisitor.yml index 2ddb57ae151..5e8379d6988 100644 --- a/Resources/Prototypes/_NF/Shipyard/inquisitor.yml +++ b/Resources/Prototypes/_NF/Shipyard/inquisitor.yml @@ -2,7 +2,7 @@ id: Inquisitor name: NSF Inquisitor description: A small detective-oriented ship with two cells for holding prisoners - price: 25170 + price: 33000 category: Small group: Security shuttlePath: /Maps/Shuttles/inquisitor.yml diff --git a/Resources/Prototypes/_NF/Shipyard/investigator.yml b/Resources/Prototypes/_NF/Shipyard/investigator.yml new file mode 100644 index 00000000000..eeed6d35bd1 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/investigator.yml @@ -0,0 +1,29 @@ +- type: vessel + id: Investigator + name: NR Investigator + description: A small salvage shuttle designed for researching artifacts, fitted with a small bar for long-distance travel. + price: 38500 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/investigator.yml + +- type: gameMap + id: Investigator + mapName: 'NR Investigator' + mapPath: /Maps/Shuttles/investigator.yml + minPlayers: 0 + stations: + Investigator: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Investigator {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + SalvageSpecialist: [ 0, 0 ] + Scientist: [ 0, 0 ] + Bartender: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/lantern.yml b/Resources/Prototypes/_NF/Shipyard/lantern.yml new file mode 100644 index 00000000000..820d1dfd81e --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/lantern.yml @@ -0,0 +1,27 @@ +- type: vessel + id: lantern + name: NC Lantern + description: The Lantern is a medium-sized chapel-vessel equipped with everything chaplain might need in their never ending battle for salvation of NT personnel souls. + price: 33500 + category: Medium + group: Civilian + shuttlePath: /Maps/Shuttles/lantern.yml + +- type: gameMap + id: lantern + mapName: 'NC Lantern' + mapPath: /Maps/Shuttles/lantern.yml + minPlayers: 0 + stations: + lantern: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Lantern {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Chaplain: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/loader.yml b/Resources/Prototypes/_NF/Shipyard/loader.yml index 6e165a82570..fa63cfcc30b 100644 --- a/Resources/Prototypes/_NF/Shipyard/loader.yml +++ b/Resources/Prototypes/_NF/Shipyard/loader.yml @@ -2,15 +2,15 @@ id: Loader name: NC Loader description: A compact cargo ship designed for hauling shipments. - price: 16000 + price: 18000 category: Small group: Civilian - shuttlePath: /Maps/Shuttles/loader.yml + shuttlePath: /Maps/_NF/Shuttles/loader.yml - type: gameMap id: Loader mapName: 'NC Loader' - mapPath: /Maps/Shuttles/loader.yml + mapPath: /Maps/_NF/Shuttles/loader.yml minPlayers: 0 stations: Loader: diff --git a/Resources/Prototypes/_NF/Shipyard/marauder.yml b/Resources/Prototypes/_NF/Shipyard/marauder.yml index 165172c731e..c97a5756715 100644 --- a/Resources/Prototypes/_NF/Shipyard/marauder.yml +++ b/Resources/Prototypes/_NF/Shipyard/marauder.yml @@ -2,7 +2,7 @@ id: Marauder name: NSF Marauder description: A heavy corvette, the marauder class is a dedicated deep space patrol vessel outfitted with a reduced radar cross-section and heavily fortified against hostile assault. - price: 100220 + price: 111550 category: Large group: Security shuttlePath: /Maps/Shuttles/marauder.yml diff --git a/Resources/Prototypes/_NF/Shipyard/mayflower.yml b/Resources/Prototypes/_NF/Shipyard/mayflower.yml new file mode 100644 index 00000000000..ae8f0b3cca1 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/mayflower.yml @@ -0,0 +1,28 @@ +- type: vessel + id: Mayflower + name: USS Mayflower + description: An oldership from an older world found cover in web, seems like an old bounty huntership with an expedition console + price: 50000 + category: Medium + group: Scrap + shuttlePath: /Maps/_NF/Shuttles/mayflower.yml + +- type: gameMap + id: Mayflower + mapName: 'USS Mayflower' + mapPath: /Maps/_NF/Shuttles/mayflower.yml + minPlayers: 0 + stations: + Mayflower: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Mayflower {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + MedicalDoctor: [ 0, 0 ] + Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/mccargo.yml b/Resources/Prototypes/_NF/Shipyard/mccargo.yml new file mode 100644 index 00000000000..05a92d396d3 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/mccargo.yml @@ -0,0 +1,39 @@ +# Maintainer Info +# GitHub: dvir001 +# Discord: dvir01 (84770870936997888) + +# Shuttle Notes: +# + +- type: vessel + id: mccargo + name: DC McCargo + description: "Your very own McCargo :tm: franchisee! comes fully stocked and ready for production of McCargo meals" + price: 72000 # 10% up from sell + category: Medium + group: Civilian + shuttlePath: /Maps/_NF/Shuttles/mccargo.yml + +- type: gameMap + id: mccargo + mapName: 'DC McCargo' + mapPath: /Maps/_NF/Shuttles/mccargo.yml + minPlayers: 0 + stations: + mccargo: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'McCargo {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Quartermaster: [ 0, 0 ] + CargoTechnician: [ 0, 0 ] + Chef: [ 0, 0 ] + Botanist: [ 0, 0 ] + Janitor: [ 0, 0 ] + Borg: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/opportunity.yml b/Resources/Prototypes/_NF/Shipyard/opportunity.yml new file mode 100644 index 00000000000..a3c1558fdef --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/opportunity.yml @@ -0,0 +1,29 @@ +- type: vessel + id: Opportunity + name: NSF Opportunity + description: A medium expeditionary prison vessel capable of incarcerating up to 4 criminals. The ship is capable of planetfall and mining operations. Find a reliable crew of prison guards to help you keep your prisoners in line. + price: 70000 + category: Medium + group: Security + shuttlePath: /Maps/Shuttles/opportunity.yml + +- type: gameMap + id: Opportunity + mapName: 'NSF Opportunity' + mapPath: /Maps/Shuttles/opportunity.yml + minPlayers: 0 + stations: + Opportunity: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Opportunity {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + PrisonGuard: [ 0, 0 ] + Warden: [ 0, 0 ] + Prisoner: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/pioneer.yml b/Resources/Prototypes/_NF/Shipyard/pioneer.yml index 6d548726dc4..b5e85e509f2 100644 --- a/Resources/Prototypes/_NF/Shipyard/pioneer.yml +++ b/Resources/Prototypes/_NF/Shipyard/pioneer.yml @@ -2,7 +2,7 @@ id: pioneer name: NC Pioneer description: A cargo container outfitted to be space-capable and equipped for salvaging and mining either on its own or as part of a fleet. - price: 15100 + price: 15950 category: Small group: Civilian shuttlePath: /Maps/Shuttles/pioneer.yml diff --git a/Resources/Prototypes/_NF/Shipyard/praeda.yml b/Resources/Prototypes/_NF/Shipyard/praeda.yml index 8b855032d31..b52418e9810 100644 --- a/Resources/Prototypes/_NF/Shipyard/praeda.yml +++ b/Resources/Prototypes/_NF/Shipyard/praeda.yml @@ -5,12 +5,12 @@ price: 160210 category: Large group: Expedition - shuttlePath: /Maps/Shuttles/praeda.yml + shuttlePath: /Maps/_NF/Shuttles/praeda.yml - type: gameMap id: Praeda mapName: 'NT Praeda' - mapPath: /Maps/Shuttles/praeda.yml + mapPath: /Maps/_NF/Shuttles/praeda.yml minPlayers: 0 stations: Praeda: diff --git a/Resources/Prototypes/_NF/Shipyard/pulse.yml b/Resources/Prototypes/_NF/Shipyard/pulse.yml index 97ec80d5fb0..df482fcb2af 100644 --- a/Resources/Prototypes/_NF/Shipyard/pulse.yml +++ b/Resources/Prototypes/_NF/Shipyard/pulse.yml @@ -2,7 +2,7 @@ id: Pulse name: NM Pulse description: A small rapid response medical ship - price: 17765 + price: 18765 category: Small group: Civilian shuttlePath: /Maps/Shuttles/pulse.yml diff --git a/Resources/Prototypes/_NF/Shipyard/rogue.yml b/Resources/Prototypes/_NF/Shipyard/rogue.yml index 9cb24143192..33d40b8bb20 100644 --- a/Resources/Prototypes/_NF/Shipyard/rogue.yml +++ b/Resources/Prototypes/_NF/Shipyard/rogue.yml @@ -4,7 +4,8 @@ description: Small assault vessel with a toggle for going dark in deep space. price: 8200 #the appraisal is 7941$ category: Small - group: Security #Should be only available at a cruiser custom shipyard TODO + group: None + mapchecker_group_override: Security # Treat this as a security vessel for mapchecker purposes shuttlePath: /Maps/Shuttles/rogue.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/searchlight.yml b/Resources/Prototypes/_NF/Shipyard/searchlight.yml new file mode 100644 index 00000000000..ff6bd638501 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/searchlight.yml @@ -0,0 +1,28 @@ +- type: vessel + id: Searchlight + name: NM Searchlight + description: A small vessel outfitted for the search and recovery of wounded NT personnel. Primarily for recovery. Search though? Well. You got that medical tracker implanted, right? + price: 29500 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/searchlight.yml + +- type: gameMap + id: Searchlight + mapName: 'NM Searchlight' + mapPath: /Maps/Shuttles/searchlight.yml + minPlayers: 0 + stations: + Searchlight: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Searchlight {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Paramedic: [ 0, 0 ] + StationEngineer: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/spectre.yml b/Resources/Prototypes/_NF/Shipyard/spectre.yml new file mode 100644 index 00000000000..fa6d628638e --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/spectre.yml @@ -0,0 +1,30 @@ +- type: vessel + id: Spectre + name: NSS Spectre + description: A large research mothership designed to be flown nexto a small fleet of other ships including salvage and food services. + price: 195000 + category: Large + group: Civilian + shuttlePath: /Maps/Shuttles/spectre.yml + +- type: gameMap + id: Spectre + mapName: 'Spectre' + mapPath: /Maps/Shuttles/spectre.yml + minPlayers: 0 + stations: + Spectre: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Spectre {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Scientist: [ 0, 0 ] + Bartender: [ 0, 0 ] + StationEngineer: [ 0, 0 ] + ResearchDirector: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/sprinter.yml b/Resources/Prototypes/_NF/Shipyard/sprinter.yml index 8d23eb4b11d..1231c1cb700 100644 --- a/Resources/Prototypes/_NF/Shipyard/sprinter.yml +++ b/Resources/Prototypes/_NF/Shipyard/sprinter.yml @@ -2,17 +2,17 @@ id: Sprinter name: KC Sprinter description: A light freighter often picked by bounty hunters due to its quick acceleration, expedition capable. - price: 75020 + price: 61500 # 15% tax category: Medium group: Expedition - shuttlePath: /Maps/Shuttles/sprinter.yml - + shuttlePath: /Maps/_NF/Shuttles/sprinter.yml + - type: gameMap id: Sprinter mapName: 'KC Sprinter' - mapPath: /Maps/Shuttles/sprinter.yml + mapPath: /Maps/_NF/Shuttles/sprinter.yml minPlayers: 0 - stations: + stations: Sprinter: stationProto: StandardFrontierExpeditionVessel components: @@ -27,4 +27,4 @@ Bartender: [ 0, 0 ] Paramedic: [ 0, 0 ] Mercenary: [ 0, 0 ] - SalvageSpecialist: [ 0, 0 ] + SalvageSpecialist: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/stellaris.yml b/Resources/Prototypes/_NF/Shipyard/stellaris.yml new file mode 100644 index 00000000000..8db5fe43c3d --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/stellaris.yml @@ -0,0 +1,30 @@ +- type: vessel + id: Stellaris + name: NT Stellaris + description: A mobile theatre perfect for putting on any show. + price: 45000 + category: Medium + group: Civilian + shuttlePath: /Maps/_NF/Shuttles/stellaris.yml + +- type: gameMap + id: Stellaris + mapName: 'NT Stellaris' + mapPath: /Maps/_NF/Shuttles/stellaris.yml + minPlayers: 0 + stations: + Stellaris: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: '{0} Stellaris {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Clown: [ 0, 0 ] + Mime: [ 0, 0 ] + Musician: [ 0, 0 ] + Chef: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/svnugget.yml b/Resources/Prototypes/_NF/Shipyard/svnugget.yml index d7b35052dbf..b8b06329a9e 100644 --- a/Resources/Prototypes/_NF/Shipyard/svnugget.yml +++ b/Resources/Prototypes/_NF/Shipyard/svnugget.yml @@ -2,9 +2,9 @@ id: svnugget name: SV Nugget description: A flying hunk of wood and metal disguised as a kitchen shuttle. Not FDA approved. - price: 12250 + price: 12985 category: Small - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/svnugget.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/svorange.yml b/Resources/Prototypes/_NF/Shipyard/svorange.yml index 835a4ca0e9d..91246e651f5 100644 --- a/Resources/Prototypes/_NF/Shipyard/svorange.yml +++ b/Resources/Prototypes/_NF/Shipyard/svorange.yml @@ -4,7 +4,7 @@ description: A cargo slash salvage shuttle made from scavenged wrecks, comes with some damage. price: 16000 #Appraisal is 14500 category: Small - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/svorange.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/svtide.yml b/Resources/Prototypes/_NF/Shipyard/svtide.yml index 2d7771d4987..b2d4a6390ae 100644 --- a/Resources/Prototypes/_NF/Shipyard/svtide.yml +++ b/Resources/Prototypes/_NF/Shipyard/svtide.yml @@ -2,9 +2,9 @@ id: svtide name: SV Tide description: A cheaply made mass-produced shuttle made from salvaged wrecks. For the seasoned assistant. - price: 9150 + price: 9700 category: Small - group: Civilian + group: Scrap shuttlePath: /Maps/Shuttles/svtide.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/wasp.yml b/Resources/Prototypes/_NF/Shipyard/wasp.yml new file mode 100644 index 00000000000..37109fc254b --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/wasp.yml @@ -0,0 +1,31 @@ +- type: vessel + id: Wasp + name: NSF Wasp + description: A large expedition oriented ship for holding prisoners and making them work planetside. + price: 145700 + category: Large + group: Security + shuttlePath: /Maps/_NF/Shuttles/wasp.yml + +- type: gameMap + id: Wasp + mapName: 'NSF Wasp' + mapPath: /Maps/_NF/Shuttles/wasp.yml + minPlayers: 0 + stations: + Wasp: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Wasp {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + SecurityOfficer: [ 0, 0 ] + Warden: [ 0, 0 ] + PrisonGuard: [ 0, 0 ] + Brigmedic: [ 0, 0 ] + Prisoner: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/SoundCollections/drink_open_sounds.yml b/Resources/Prototypes/_NF/SoundCollections/drink_open_sounds.yml new file mode 100644 index 00000000000..6d4c85f28a2 --- /dev/null +++ b/Resources/Prototypes/_NF/SoundCollections/drink_open_sounds.yml @@ -0,0 +1,4 @@ +- type: soundCollection + id: squeezeBottleUseSounds + files: + - /Audio/_NF/Effects/splat.ogg diff --git a/Resources/Prototypes/_NF/SoundCollections/footsteps_nf.yml b/Resources/Prototypes/_NF/SoundCollections/footsteps_nf.yml new file mode 100644 index 00000000000..1fee9c4523e --- /dev/null +++ b/Resources/Prototypes/_NF/SoundCollections/footsteps_nf.yml @@ -0,0 +1,12 @@ +- type: soundCollection + id: FootstepClownSqueezeBottle + files: + - /Audio/_NF/Effects/splat.ogg + - /Audio/Effects/Footsteps/clownstep2.ogg + - /Audio/_NF/Effects/splat.ogg + +- type: soundCollection + id: FootstepClownSqueezeBottleWhoopie + files: + - /Audio/Effects/Emotes/parp1.ogg + - /Audio/_NF/Effects/splat.ogg diff --git a/Resources/Prototypes/_NF/StatusEffects/job.yml b/Resources/Prototypes/_NF/StatusEffects/job.yml index da51ee1509f..7b5dea47389 100644 --- a/Resources/Prototypes/_NF/StatusEffects/job.yml +++ b/Resources/Prototypes/_NF/StatusEffects/job.yml @@ -14,7 +14,14 @@ - type: statusIcon parent: JobIcon - id: JobIconSTC + id: JobIconPilot + icon: + sprite: _NF/Interface/Misc/job_icons.rsi + state: Pilot + +- type: statusIcon + parent: JobIcon + id: JobIconStc icon: sprite: Interface/Misc/job_icons.rsi state: ServiceWorker diff --git a/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml b/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml index 29dca329596..14ae6586690 100644 --- a/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml @@ -7,6 +7,14 @@ collection: FelinidScreams Laugh: collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Crying: + collection: MaleCry + Whistle: + collection: Whistles Hiss: collection: FelinidHisses Meow: @@ -17,6 +25,8 @@ collection: FelinidGrowls Purr: collection: FelinidPurrs + Sigh: + collection: MaleSigh - type: emoteSounds id: FemaleFelinid @@ -27,6 +37,14 @@ collection: FelinidScreams Laugh: collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Crying: + collection: FemaleCry + Whistle: + collection: Whistles Hiss: collection: FelinidHisses Meow: @@ -37,6 +55,8 @@ collection: FelinidGrowls Purr: collection: FelinidPurrs + Sigh: + collection: FemaleSigh - type: emoteSounds id: MaleMoth diff --git a/Resources/Prototypes/_NF/lobbyscreens.yml b/Resources/Prototypes/_NF/lobbyscreens.yml index ac9e56e8fb4..06abd86967a 100644 --- a/Resources/Prototypes/_NF/lobbyscreens.yml +++ b/Resources/Prototypes/_NF/lobbyscreens.yml @@ -5,3 +5,7 @@ - type: lobbyBackground id: BingGuss background: /Textures/_NF/LobbyScreens/bingguss.png + +- type: lobbyBackground + id: Janigang + background: /Textures/_NF/LobbyScreens/janigang.png diff --git a/Resources/Prototypes/_NF/tags.yml b/Resources/Prototypes/_NF/tags.yml index d646ba63181..83713aaa500 100644 --- a/Resources/Prototypes/_NF/tags.yml +++ b/Resources/Prototypes/_NF/tags.yml @@ -1,5 +1,8 @@ - type: Tag id: CaveFactory + +- type: Tag + id: DockTransit - type: Tag id: LabGrown @@ -9,3 +12,36 @@ - type: Tag id: BookSpaceLaw + +- type: Tag + id: CrossbowBolt + +- type: Tag + id: WeaponMeleeStake + +- type: Tag + id: Censer + +- type: Tag + id: ReligiousSymbol + +- type: Tag + id: Crucifix + +- type: Tag + id: ObjectOfSpiritualSignificance + +- type: Tag + id: Ash + +- type: Tag + id: LavaMercenary + +- type: Tag + id: MysteryFigureBox + +- type: Tag + id: WhoopieCushion + +- type: Tag + id: Mustard diff --git a/Resources/Prototypes/_Nyano/Actions/types.yml b/Resources/Prototypes/_Nyano/Actions/types.yml index 12f65c4d284..6668bc07238 100644 --- a/Resources/Prototypes/_Nyano/Actions/types.yml +++ b/Resources/Prototypes/_Nyano/Actions/types.yml @@ -12,8 +12,8 @@ - type: entity id: ActionHairball - name: hairball-action - description: hairball-action-desc + name: action-name-hairball + description: action-description-hairball noSpawn: true components: - type: InstantAction diff --git a/Resources/Prototypes/_Nyano/Catalog/Fills/Vending/Inventories/repdrobe.yml b/Resources/Prototypes/_Nyano/Catalog/Fills/Vending/Inventories/repdrobe.yml index 7f60cf006cd..3aa4193e2ee 100644 --- a/Resources/Prototypes/_Nyano/Catalog/Fills/Vending/Inventories/repdrobe.yml +++ b/Resources/Prototypes/_Nyano/Catalog/Fills/Vending/Inventories/repdrobe.yml @@ -2,16 +2,16 @@ id: RepDrobeInventory startingInventory: ClothingUniformJumpsuitReporter: 2 -# ClothingUniformJumpsuitDetective: 2 # Frontier - Detective gear, need to replace this. -# ClothingUniformJumpskirtDetective: 2 # Frontier - Detective gear, need to replace this. + ClothingUniformJumpsuitBH: 2 # Frontier + ClothingUniformJumpskirtBH: 2 # Frontier ClothingShoesColorBrown: 2 ClothingShoesColorBlack: 2 ClothingShoesColorWhite: 2 # ClothingOuterVestDetective: 2 # Frontier - Detective gear, need to replace this. ClothingHeadHatFedoraBrown: 2 -# ClothingUniformJumpsuitDetectiveGrey: 2 # Frontier - Detective gear, need to replace this. -# ClothingUniformJumpskirtDetectiveGrey: 2 # Frontier - Detective gear, need to replace this. -# ClothingNeckTieDet: 2 # Frontier - Detective gear, need to replace this. + ClothingUniformJumpsuitBHGrey: 2 # Frontier + ClothingUniformJumpskirtBHGrey: 2 # Frontier + ClothingNeckTieBH: 2 # Frontier ClothingHeadHatFedoraGrey: 2 ClothingHandsGlovesColorBlack: 2 RadioHandheld: 2 diff --git a/Resources/Prototypes/_Nyano/Entities/Mobs/Player/felinid.yml b/Resources/Prototypes/_Nyano/Entities/Mobs/Player/felinid.yml index 6147037ced1..c2f033becc4 100644 --- a/Resources/Prototypes/_Nyano/Entities/Mobs/Player/felinid.yml +++ b/Resources/Prototypes/_Nyano/Entities/Mobs/Player/felinid.yml @@ -3,3 +3,6 @@ name: Urist McFelinid parent: [MobFelinidBase, BaseMob] id: MobFelinid + components: + - type: Speech + speechVerb: Felinid diff --git a/Resources/Prototypes/_Nyano/Entities/Objects/Consumable/Food/ration.yml b/Resources/Prototypes/_Nyano/Entities/Objects/Consumable/Food/ration.yml index 48901e70b99..80aac5d0fee 100644 --- a/Resources/Prototypes/_Nyano/Entities/Objects/Consumable/Food/ration.yml +++ b/Resources/Prototypes/_Nyano/Entities/Objects/Consumable/Food/ration.yml @@ -9,6 +9,7 @@ sprite: Nyanotrasen/Objects/Consumable/Food/ration.rsi state: psb-trash - type: Item + size: 2 - type: entity name: prepacked sustenance bar diff --git a/Resources/Prototypes/_Nyano/Entities/Objects/Specific/Mail/base_mail.yml b/Resources/Prototypes/_Nyano/Entities/Objects/Specific/Mail/base_mail.yml index 3924a690a86..b65655b5d17 100644 --- a/Resources/Prototypes/_Nyano/Entities/Objects/Specific/Mail/base_mail.yml +++ b/Resources/Prototypes/_Nyano/Entities/Objects/Specific/Mail/base_mail.yml @@ -92,10 +92,6 @@ damage: types: Blunt: 10 - - type: DamageOtherOnHit - damage: - types: - Blunt: 1 # Frontier - 5<1, death by 1000 cuts. - type: CargoSellBlacklist - type: Food # Frontier - Moth food requiresSpecialDigestion: true diff --git a/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml b/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml index 12d5ae92ba7..58b3851036e 100644 --- a/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml +++ b/Resources/Prototypes/_Nyano/Entities/Structures/Machines/deep_fryer.yml @@ -49,6 +49,9 @@ # gained by doing special handling for Stacks, especially since most # of the items that use Stack aren't even remotely edible. - Stack + - SpaceCash # Frontier - Cash + - IdCard # Frontier - ID + - WebCocoon # Frontier whitelist: components: # It's what meat is. diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml index 88ee0f7248b..1ffce0a3a82 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Cargo/mail_carrier.yml @@ -13,6 +13,7 @@ - Cargo - Maintenance - Service + - External # Frontier - type: startingGear id: MailCarrierGear diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml index 99ec294e245..94dd5e34169 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Civilian/valet.yml @@ -16,6 +16,7 @@ - Cargo - Maintenance - Janitor + - External # Frontier - type: startingGear id: ValetGear diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Security/prisonguard.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Security/prisonguard.yml index a2064f3d3f3..f0ffbe1a307 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Security/prisonguard.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Security/prisonguard.yml @@ -5,7 +5,7 @@ playTimeTracker: JobPrisonGuard requirements: - !type:OverallPlaytimeRequirement - time: 21600 + time: 36000 # Frontier - 10 hrs startingGear: PrisonGuardGear icon: "JobIconWarden" supervisors: job-supervisors-hos # Frontier diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml index c5a1c4a7a0f..fe6c23edfbb 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/gladiator.yml @@ -13,4 +13,4 @@ access: - Service - Maintenance - + - External # Frontier diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml index 4243dd59663..152111301aa 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/martialartist.yml @@ -12,6 +12,7 @@ access: - Service - Maintenance + - External # Frontier - type: startingGear id: MartialGear diff --git a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml index c302e1528e5..bf6bccd67ba 100644 --- a/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml +++ b/Resources/Prototypes/_Nyano/Roles/Jobs/Wildcards/prisoner.yml @@ -4,13 +4,15 @@ description: job-description-prisoner playTimeTracker: JobPrisoner requirements: - - !type:OverallPlaytimeRequirement - time: 10800 + - !type:WhitelistRequirement startingGear: PrisonerGear canBeAntag: false whitelistRequired: true icon: "JobIconPrisoner" supervisors: job-supervisors-security + special: + - !type:AddImplantSpecial + implants: [ TrackingImplant ] # Frontier - type: startingGear id: PrisonerGear diff --git a/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml b/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml index fc5d9883fbc..fb60e6d4539 100644 --- a/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/_Nyano/Roles/play_time_trackers.yml @@ -1,6 +1,3 @@ -- type: playTimeTracker - id: JobCyborg - - type: playTimeTracker id: JobMailCarrier @@ -9,3 +6,12 @@ - type: playTimeTracker id: JobValet + +- type: playTimeTracker + id: JobMartialArtist + +- type: playTimeTracker + id: JobPrisonGuard + +- type: playTimeTracker + id: JobGladiator diff --git a/Resources/Prototypes/_Nyano/Voice/speech_emotes.yml b/Resources/Prototypes/_Nyano/Voice/speech_emotes.yml index 21bb428029d..1c5873f73b7 100644 --- a/Resources/Prototypes/_Nyano/Voice/speech_emotes.yml +++ b/Resources/Prototypes/_Nyano/Voice/speech_emotes.yml @@ -6,10 +6,13 @@ chatTriggers: - hiss - hisses + - hiss. - hisses. - hisses! - hissing - hissed + - hissing. + - hissed. - type: emote id: Meow @@ -18,18 +21,31 @@ chatTriggers: - meow - meows - - meows. - - meows! + - meow. + - meow! - meowing - meowed - miau - miaus + - meows. + - meows~ + - meows! + - meowing. + - meowed. + - miau. - miaus. - miaus! - nya - nyas + - nya. - nyas. - nyas! + - mraow. + - mraow! + - mraow~ + - mraows. + - mraows! + - mraows~ - type: emote id: Mew @@ -38,10 +54,16 @@ chatTriggers: - mew - mews + - mew. + - mew! + - mew~ - mews. - mews! - mewing - mewed + - mews~ + - mewing. + - mewed. - type: emote id: Growl @@ -50,10 +72,13 @@ chatTriggers: - growl - growls + - growl. - growls. - growls! - growling - growled + - growling. + - growled. - type: emote id: Purr @@ -62,7 +87,11 @@ chatTriggers: - purr - purrs + - purr. - purrs. + - purrs~ - purrs! - purring - purred + - purring. + - purred. \ No newline at end of file diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 991492cf86e..80eb377bbc4 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1100,3 +1100,15 @@ - type: Tag id: MothFood + +- type: Tag # Frontier + id: WeaponRanged # Frontier + +- type: Tag # Frontier + id: WeaponLongarms # Frontier + +- type: Tag # Frontier + id: WeaponShortArms # Frontier + +- type: Tag # Frontier + id: WeaponMelee # Frontier diff --git a/Resources/ServerInfo/Guidebook/Science/AnomalousResearch.xml b/Resources/ServerInfo/Guidebook/Science/AnomalousResearch.xml index 11b9a0f4168..a93c40e9e67 100644 --- a/Resources/ServerInfo/Guidebook/Science/AnomalousResearch.xml +++ b/Resources/ServerInfo/Guidebook/Science/AnomalousResearch.xml @@ -16,7 +16,7 @@ Scanners, vessels, and A.P.E.s are all used in the containment and observation o -The anomaly generator can produce a random anomaly somewhere on the station at the cost of plasma. +The anomaly generator can produce a random anomaly somewhere on the station at the cost of bananium. ## Anomalies Anomalies are static objects that appear on the station. They cannot be moved, and must be worked around, no matter their location. diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/Felinid_fluffy_tail_full.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/Felinid_fluffy_tail_full.png new file mode 100644 index 00000000000..d699f1035a4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/Felinid_fluffy_tail_full.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png new file mode 100644 index 00000000000..4e6a6d8dc0d Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/meta.json new file mode 100644 index 00000000000..fad9883e7e8 --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/meta.json @@ -0,0 +1,111 @@ +{ + "version": 1, + "copyright": "Made by Adrian16199", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "felinid_fluffy_tail_rings", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "Felinid_fluffy_tail_full", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-left.png new file mode 100644 index 00000000000..0f35af1aa89 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-right.png new file mode 100644 index 00000000000..65690ea25ee Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock.png new file mode 100644 index 00000000000..f2c93199ca8 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/bedrock.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-left.png new file mode 100644 index 00000000000..08e74e1f79d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-right.png new file mode 100644 index 00000000000..e912f56fb26 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt.png new file mode 100644 index 00000000000..1d5851bd1e3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/dirt.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-left.png new file mode 100644 index 00000000000..89c8980e0e4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-right.png new file mode 100644 index 00000000000..1b5858effda Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark.png new file mode 100644 index 00000000000..6ebcb916e4c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassdark.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-left.png new file mode 100644 index 00000000000..396b8bff785 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-right.png new file mode 100644 index 00000000000..201e0c149e1 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grassjungle-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-left.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-left.png new file mode 100644 index 00000000000..9254700015f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-left.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-right.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-right.png new file mode 100644 index 00000000000..f119a7f9a5a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight-inhand-right.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight.png b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight.png new file mode 100644 index 00000000000..d318e8b91a6 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/grasslight.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/meta.json new file mode 100644 index 00000000000..c83cdb81ec0 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Objects/Tiles/tiles.rsi/meta.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "grassdark" + }, + { + "name": "grasslight" + }, + { + "name": "dirt" + }, + { + "name": "bedrock" + }, + { + "name": "grassjungle-inhand-left", + "directions": 4 + }, + { + "name": "grassjungle-inhand-right", + "directions": 4 + }, + { + "name": "grassdark-inhand-left", + "directions": 4 + }, + { + "name": "grassdark-inhand-right", + "directions": 4 + }, + { + "name": "grasslight-inhand-left", + "directions": 4 + }, + { + "name": "grasslight-inhand-right", + "directions": 4 + }, + { + "name": "dirt-inhand-left", + "directions": 4 + }, + { + "name": "dirt-inhand-right", + "directions": 4 + }, + { + "name": "bedrock-inhand-left", + "directions": 4 + }, + { + "name": "bedrock-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Tiles/bedrock.png b/Resources/Textures/Nyanotrasen/Tiles/bedrock.png new file mode 100644 index 00000000000..9292305dfb9 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Tiles/bedrock.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index b1f0881ed76..4be319f2694 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -296,11 +296,17 @@ { "name": "paper_stamp-lawyer" }, + { + "name": "paper_stamp-stc" + }, { "name": "stamp-psychologist" }, { "name": "stamp-lawyer" + }, + { + "name": "stamp-stc" } ] } diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-stc.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-stc.png new file mode 100644 index 00000000000..369e29c1325 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/paper_stamp-stc.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-stc.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-stc.png new file mode 100644 index 00000000000..05e008db985 Binary files /dev/null and b/Resources/Textures/Objects/Misc/bureaucracy.rsi/stamp-stc.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..51369caa8db Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/icon.png new file mode 100644 index 00000000000..fc13917e8d5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-left.png new file mode 100644 index 00000000000..f796464c6cd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-right.png new file mode 100644 index 00000000000..02abc0397f0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/meta.json new file mode 100644 index 00000000000..476ad27435d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..f4afc77b5b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/icon.png new file mode 100644 index 00000000000..90c48dda60f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-left.png new file mode 100644 index 00000000000..42f511fd073 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-right.png new file mode 100644 index 00000000000..ad972018d58 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/meta.json new file mode 100644 index 00000000000..476ad27435d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..b791f34885c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/icon.png new file mode 100644 index 00000000000..4f3a9c6b509 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-left.png new file mode 100644 index 00000000000..052273ccee0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-right.png new file mode 100644 index 00000000000..cc7b2ad06bd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/meta.json new file mode 100644 index 00000000000..476ad27435d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/equipped-BELT.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/equipped-BELT.png new file mode 100644 index 00000000000..ea5e7b69b1f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/icon.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/icon.png new file mode 100644 index 00000000000..4e9d3216adc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/inhand-left.png new file mode 100644 index 00000000000..6ecdb58791a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/inhand-right.png new file mode 100644 index 00000000000..a7fb6b4acbb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/meta.json b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/meta.json new file mode 100644 index 00000000000..78b2cc1b6a5 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited for SS14 NF by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/book.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/book.png new file mode 100644 index 00000000000..677aaa8faad Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/book.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/bottle.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/bottle.png new file mode 100644 index 00000000000..9a0d6339ff6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/bottle.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/censer.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/censer.png new file mode 100644 index 00000000000..390f70d9b80 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/censer.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/crucifix.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/crucifix.png new file mode 100644 index 00000000000..2b0df4fab6b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/crucifix.png differ diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/meta.json b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/meta.json new file mode 100644 index 00000000000..222af27e3d9 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified files from the base SS14 (bible.rsi: bible in-hand sprite; belt_overlay.rsi: pill sprite), sprites for stake, censer and crucifix are new; edits made by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "book" + }, + { + "name": "bottle" + }, + { + "name": "censer" + }, + { + "name": "crucifix" + }, + { + "name": "stake" + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/stake.png b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/stake.png new file mode 100644 index 00000000000..b5233c48fb9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Belt/chaplain_sash_overlay.rsi/stake.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/alt-equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/alt-equipped-EARS.png new file mode 100644 index 00000000000..c002f274861 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/icon_alt.png new file mode 100644 index 00000000000..62b0e1ccd88 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/meta.json new file mode 100644 index 00000000000..50a61173da6 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/equipped-EYES.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/equipped-EYES.png new file mode 100644 index 00000000000..3675555f35d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/icon.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/icon.png new file mode 100644 index 00000000000..51f81d6eebf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-left.png new file mode 100644 index 00000000000..fbacab702d9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-right.png new file mode 100644 index 00000000000..941a0d95095 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/meta.json b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/meta.json new file mode 100644 index 00000000000..e978c719de8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/equipped-HAND.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/equipped-HAND.png new file mode 100644 index 00000000000..bd1b11bf166 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/icon.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/icon.png new file mode 100644 index 00000000000..20d31294525 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-left.png new file mode 100644 index 00000000000..fe5f356b274 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-right.png new file mode 100644 index 00000000000..535677138ae Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/meta.json b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/meta.json new file mode 100644 index 00000000000..ac12215020b --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon-flash.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon-flash.png new file mode 100644 index 00000000000..55eca98cc6e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon-flash.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon.png new file mode 100644 index 00000000000..57cb694ed7e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/meta.json new file mode 100644 index 00000000000..0b6f1703ff0 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..585afa78f3b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..373ac3a6b7e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-left.png new file mode 100644 index 00000000000..20969c7b418 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-right.png new file mode 100644 index 00000000000..6e2a28d9156 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..410a3171fff Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..8aface7b739 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-left.png new file mode 100644 index 00000000000..097111b9592 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-right.png new file mode 100644 index 00000000000..eb3517bb0bc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..5957b5c5ec6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/icon.png new file mode 100644 index 00000000000..7bdb409b6d3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/inhand-left.png new file mode 100644 index 00000000000..418ae517c42 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/inhand-right.png new file mode 100644 index 00000000000..8aa662fb621 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/meta.json new file mode 100644 index 00000000000..f17e1268386 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/bishop_mitre.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..db200ea889d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/icon.png new file mode 100644 index 00000000000..c6ae7b48213 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/inhand-left.png new file mode 100644 index 00000000000..c0ee4dab542 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/inhand-right.png new file mode 100644 index 00000000000..d23890bf29b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/meta.json new file mode 100644 index 00000000000..f17e1268386 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/cardinal_hat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..dcb87365385 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/icon.png new file mode 100644 index 00000000000..8f4d7923a4c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/inhand-left.png new file mode 100644 index 00000000000..8626bad7b92 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/inhand-right.png new file mode 100644 index 00000000000..8eebbeb5bde Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/meta.json new file mode 100644 index 00000000000..f17e1268386 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/kippah.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..3362875a56c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/icon.png new file mode 100644 index 00000000000..ea6934a228c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/inhand-left.png new file mode 100644 index 00000000000..c61ef31d5ed Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/inhand-right.png new file mode 100644 index 00000000000..2849f2224ee Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/meta.json new file mode 100644 index 00000000000..24c18c6f182 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/pilgrim_hat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1 || edited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..c3c44663f31 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/icon.png new file mode 100644 index 00000000000..7ba5d07b58e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-left.png new file mode 100644 index 00000000000..a976a2ad8f1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-right.png new file mode 100644 index 00000000000..c3369fe7107 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/meta.json new file mode 100644 index 00000000000..f1ff6cc9ecc --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "SS14 ushanka.rsi resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..2f7da834f4c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/icon.png new file mode 100644 index 00000000000..5264c18a564 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/inhand-left.png new file mode 100644 index 00000000000..c61ef31d5ed Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/inhand-right.png new file mode 100644 index 00000000000..2849f2224ee Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/meta.json new file mode 100644 index 00000000000..f17e1268386 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/widebrim_hat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..67fe22a72a1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/icon.png new file mode 100644 index 00000000000..d5a7cf6148c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/inhand-left.png new file mode 100644 index 00000000000..5697682bffd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/inhand-right.png new file mode 100644 index 00000000000..05ac0d22f75 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/meta.json new file mode 100644 index 00000000000..f17e1268386 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/witch_hunter_hat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..ca0811737f3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/icon.png new file mode 100644 index 00000000000..5e7808ebf34 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/inhand-left.png new file mode 100644 index 00000000000..63be2a0e52d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/inhand-right.png new file mode 100644 index 00000000000..778a5090051 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/meta.json new file mode 100644 index 00000000000..45fb860ad73 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/cardinal_hood.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at commit https://github.com/discordia-space/CEV-Eris/commit/a75dee2e6d236612dbd403dd5f8687ca930c01f1 || edits made by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/equipped-NECK.png new file mode 100644 index 00000000000..9665ec9f139 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/icon.png new file mode 100644 index 00000000000..18ebd2355e5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/inhand-left.png new file mode 100644 index 00000000000..aafa405e09f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/inhand-right.png new file mode 100644 index 00000000000..b22bb73ef3e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/meta.json new file mode 100644 index 00000000000..9841a353357 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Misc/crucifix.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified files from the base SS14 (used bling.rsi and bible.rsi); edits made by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/equipped-NECK.png new file mode 100644 index 00000000000..c0f707457ec Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/icon.png new file mode 100644 index 00000000000..773543b47df Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/inhand-left.png new file mode 100644 index 00000000000..903ff0a30fa Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/inhand-right.png new file mode 100644 index 00000000000..497aa7e0e20 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/meta.json new file mode 100644 index 00000000000..276ae368070 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/chaplain_stole.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by MrGreen06#0618 (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/equipped-NECK.png new file mode 100644 index 00000000000..41076d0fca0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/icon.png new file mode 100644 index 00000000000..142630c55c6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-left.png new file mode 100644 index 00000000000..31e4dab831c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-right.png new file mode 100644 index 00000000000..73c27052542 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/meta.json new file mode 100644 index 00000000000..684ee895b2d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by MrGreen06#0618 (discord) | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/equipped-NECK.png new file mode 100644 index 00000000000..2190dc844db Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/icon.png new file mode 100644 index 00000000000..17904840397 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/inhand-left.png new file mode 100644 index 00000000000..2d727adbb21 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/inhand-right.png new file mode 100644 index 00000000000..0e2c555c5c1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/meta.json new file mode 100644 index 00000000000..25dc7b17c84 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/bellcollar.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by mnemotechnician (GitHub, Frontier) for Frontier Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bf0d6901af7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/icon.png new file mode 100644 index 00000000000..7e8c0639a99 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-left.png new file mode 100644 index 00000000000..304ea119e7a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-right.png new file mode 100644 index 00000000000..b7e86380753 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/meta.json new file mode 100644 index 00000000000..6be98a39f47 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Armor/sr_carapace.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 edited by Skarletto (github), color tweak by MagnusCrowe (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING-monkey.png new file mode 100644 index 00000000000..95e552a63de Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..00fae058bf3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/icon.png new file mode 100644 index 00000000000..a0901f6da6f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-left.png new file mode 100644 index 00000000000..1968061fe9c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-right.png new file mode 100644 index 00000000000..2afc7b745df Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/meta.json new file mode 100644 index 00000000000..8ef51232293 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0edcbf28e07 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/icon.png new file mode 100644 index 00000000000..8062c3af816 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/inhand-left.png new file mode 100644 index 00000000000..84339384063 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/inhand-right.png new file mode 100644 index 00000000000..1e91d0c194b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/meta.json new file mode 100644 index 00000000000..651bf54b5b3 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/bishop_robe.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..fcb47c70007 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/icon.png new file mode 100644 index 00000000000..f7237dd4f26 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/inhand-left.png new file mode 100644 index 00000000000..3bbf670574d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/inhand-right.png new file mode 100644 index 00000000000..d14fa8fa5f2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/meta.json new file mode 100644 index 00000000000..5ed4efd304f --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/cardinal_robe.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified files from the base SS14 (used redwizard.rsi); edits made by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..835c49fda43 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/icon.png new file mode 100644 index 00000000000..6fb096351e5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/inhand-left.png new file mode 100644 index 00000000000..13f968ff07a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/inhand-right.png new file mode 100644 index 00000000000..1125a3d6000 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/meta.json new file mode 100644 index 00000000000..651bf54b5b3 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Misc/witch_hunter_coat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Ported from tgstation github (https://github.com/tgstation/tgstation) by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/equipped-FEET.png new file mode 100644 index 00000000000..859ba9ca7ce Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon-on.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon-on.png new file mode 100644 index 00000000000..e5b2b09a229 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon-on.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon.png new file mode 100644 index 00000000000..9e77c247343 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/inhand-left.png new file mode 100644 index 00000000000..fd383991f89 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/inhand-right.png new file mode 100644 index 00000000000..2fe73f4639e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/meta.json new file mode 100644 index 00000000000..d4ad31cb0bf --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe Based and edited by Dvir001 (GitHub)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "on-equipped-FEET", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "icon-on" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-equipped-FEET.png new file mode 100644 index 00000000000..81a9385cbda Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-inhand-left.png new file mode 100644 index 00000000000..9b0bc0320e6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-inhand-right.png new file mode 100644 index 00000000000..e36f2010b3c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/magboots-galoshes.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..beaef0b87f8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/icon.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/icon.png new file mode 100644 index 00000000000..39d04a6c814 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-left.png new file mode 100644 index 00000000000..d3091640380 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-right.png new file mode 100644 index 00000000000..41ff5d0a614 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/meta.json new file mode 100644 index 00000000000..6b37732ecaf --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6236a0ddd1bd3c4e5574eb9fdebf4d79ccad2d2f | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..b962d5c9626 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..49da1087fad Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/icon.png new file mode 100644 index 00000000000..5ec4252aa38 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/inhand-left.png new file mode 100644 index 00000000000..9bc90b4e20a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/inhand-right.png new file mode 100644 index 00000000000..9e6d77fce39 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/meta.json new file mode 100644 index 00000000000..ffecc9fc1bb --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpskirt/security_stationguard.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by @mureixlol, for monkey @hem0mancer, recolored by MagnusCrowe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..d744ae82f07 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..4efc5d03526 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/icon.png new file mode 100644 index 00000000000..28f99232533 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/inhand-left.png new file mode 100644 index 00000000000..d5906263e03 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/inhand-right.png new file mode 100644 index 00000000000..ba9bce94fc4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/meta.json new file mode 100644 index 00000000000..f23dfda1511 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/chaplain-pilgrim.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified files from the base SS14; edits made by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..b8d98ea68b0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-vox.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-vox.png new file mode 100644 index 00000000000..515d1677eef Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-vox.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..b5d3ea0cf5c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/icon.png new file mode 100644 index 00000000000..3d848cf8d58 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-left.png new file mode 100644 index 00000000000..aa710a72ef8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-right.png new file mode 100644 index 00000000000..0bf05f815d8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/meta.json new file mode 100644 index 00000000000..f36da39d0e7 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..f5bbb0366e3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..cc83f03e1bb Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/icon.png new file mode 100644 index 00000000000..fe9aea69e94 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/inhand-left.png new file mode 100644 index 00000000000..9bc90b4e20a Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/inhand-right.png new file mode 100644 index 00000000000..9e6d77fce39 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/meta.json new file mode 100644 index 00000000000..f22d6d800a5 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14, recolored by MagnusCrowe", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png new file mode 100644 index 00000000000..1e16481383b Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json index ff2f94199b2..26c853e7dc6 100644 --- a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Mercenary icon made by erhardsteinhauer (discord)", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Mercenary and Pilot icons made by erhardsteinhauer (discord)", "size": { "x": 8, @@ -10,6 +10,9 @@ "states": [ { "name": "Mercenary" + }, + { + "name": "Pilot" } ] } diff --git a/Resources/Textures/_NF/LobbyScreens/attributuions.yml b/Resources/Textures/_NF/LobbyScreens/attributuions.yml index 0ec822fbcf2..51520ae5ba2 100644 --- a/Resources/Textures/_NF/LobbyScreens/attributuions.yml +++ b/Resources/Textures/_NF/LobbyScreens/attributuions.yml @@ -6,4 +6,9 @@ - files: ["bingguss.png"] license: "CC0-1.0" copyright: "gentlebutter (588410099190726656) on Discord" - source: "https://cdn.discordapp.com/attachments/1128094390087340114/1171973024011001936/Lobby-art-frontier_clean.png?ex=655e9fef&is=654c2aef&hm=a9c42fc6f803bc0f8307247520a480a5d59dde5f7b196fff0b9045988e5886d8&" \ No newline at end of file + source: "https://cdn.discordapp.com/attachments/1128094390087340114/1171973024011001936/Lobby-art-frontier_clean.png?ex=655e9fef&is=654c2aef&hm=a9c42fc6f803bc0f8307247520a480a5d59dde5f7b196fff0b9045988e5886d8&" + +- files: ["janigang.png"] + license: "CC0-1.0" + copyright: "GhostPrince (115894681304301569) on Discord" + source: "https://discord.com/channels/1123826877245694004/1128094390087340114/1191491599855788154" diff --git a/Resources/Textures/_NF/LobbyScreens/janigang.png b/Resources/Textures/_NF/LobbyScreens/janigang.png new file mode 100644 index 00000000000..5ab77a5ebc5 Binary files /dev/null and b/Resources/Textures/_NF/LobbyScreens/janigang.png differ diff --git a/Resources/Textures/_NF/LobbyScreens/janigang.png.yml b/Resources/Textures/_NF/LobbyScreens/janigang.png.yml new file mode 100644 index 00000000000..51ff40335ef --- /dev/null +++ b/Resources/Textures/_NF/LobbyScreens/janigang.png.yml @@ -0,0 +1,2 @@ +sample: + filter: false diff --git a/Resources/Textures/_NF/Markers/jobs.rsi/meta.json b/Resources/Textures/_NF/Markers/jobs.rsi/meta.json index 8a700a31d51..388f334486b 100644 --- a/Resources/Textures/_NF/Markers/jobs.rsi/meta.json +++ b/Resources/Textures/_NF/Markers/jobs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by dvir001 (GitHub)", + "copyright": "Made by dvir001 (GitHub), Pilot marker made by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -12,6 +12,9 @@ }, { "name": "mercenary" + }, + { + "name": "pilot" } ] } diff --git a/Resources/Textures/_NF/Markers/jobs.rsi/pilot.png b/Resources/Textures/_NF/Markers/jobs.rsi/pilot.png new file mode 100644 index 00000000000..b37b69bb78f Binary files /dev/null and b/Resources/Textures/_NF/Markers/jobs.rsi/pilot.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat.png new file mode 100644 index 00000000000..4fbab4033b3 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_dead.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_dead.png new file mode 100644 index 00000000000..d9874b26ae2 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_dead.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_rest.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_rest.png new file mode 100644 index 00000000000..07bcabb335d Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_rest.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_sit.png b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_sit.png new file mode 100644 index 00000000000..204367692c7 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/crispycat_sit.png differ diff --git a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json index 43710140ab8..7b530deaf85 100644 --- a/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json +++ b/Resources/Textures/_NF/Mobs/Pets/cat.rsi/meta.json @@ -43,6 +43,24 @@ ] ] }, + { + "name": "crispycat", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, { "name": "mistakecat", "directions": 4, @@ -77,6 +95,14 @@ ] ] }, + { + "name": "crispycat_dead", + "delays": [ + [ + 1 + ] + ] + }, { "name": "mistakecat_dead", "delays": [ @@ -123,6 +149,17 @@ ] ] }, + { + "name": "crispycat_rest", + "delays": [ + [ + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, { "name": "mistakecat_rest", "delays": [ @@ -166,6 +203,14 @@ ] ] }, + { + "name": "crispycat_sit", + "delays": [ + [ + 1 + ] + ] + }, { "name": "mistakecat_sit", "delays": [ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/equipped-BELT.png new file mode 100644 index 00000000000..c62d50726a6 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-1.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-1.png new file mode 100644 index 00000000000..4f66af8f64e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-1.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-2.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-2.png new file mode 100644 index 00000000000..6ce3d4309e8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-2.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-3.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-3.png new file mode 100644 index 00000000000..a9cf69cfd02 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-3.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-4.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-4.png new file mode 100644 index 00000000000..f763b1c1942 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-4.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-5.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-5.png new file mode 100644 index 00000000000..420d936e382 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/fill-5.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/icon.png b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/icon.png new file mode 100644 index 00000000000..24963156fc4 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/meta.json b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/meta.json new file mode 100644 index 00000000000..41c4e8f5ccd --- /dev/null +++ b/Resources/Textures/_NF/Objects/Clothing/Belt/crossbow_quiver.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "based on Meph's Tileset for Dwarf Fortress v0.47.xx, modified for SS14/NF by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..c069d638b26 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/icon.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/icon.png new file mode 100644 index 00000000000..36523eacca8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/inhand-left.png new file mode 100644 index 00000000000..5ae97b89515 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/inhand-right.png new file mode 100644 index 00000000000..8abca2b678a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-1.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-1.png new file mode 100644 index 00000000000..0f190b6e601 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-1.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-2.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-2.png new file mode 100644 index 00000000000..76b94da399d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-2.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-3.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-3.png new file mode 100644 index 00000000000..7cc2604365a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-3.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-4.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-4.png new file mode 100644 index 00000000000..9a0c9ab9efd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-4.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-5.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-5.png new file mode 100644 index 00000000000..d397b020b67 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-5.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-6.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-6.png new file mode 100644 index 00000000000..5b24ce1ecdc Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-alpha-6.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-empty.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-empty.png new file mode 100644 index 00000000000..03125eef97d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/keg-empty.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/label.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/label.png new file mode 100644 index 00000000000..11758f597d0 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/label.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/meta.json b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/meta.json new file mode 100644 index 00000000000..eeb3b5583a6 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_plastic.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation, resprited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "keg-empty" + }, + { + "name": "keg-alpha-1" + }, + { + "name": "keg-alpha-2" + }, + { + "name": "keg-alpha-3" + }, + { + "name": "keg-alpha-4" + }, + { + "name": "keg-alpha-5" + }, + { + "name": "keg-alpha-6" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "label" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/base.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/base.png new file mode 100644 index 00000000000..aa1db87fd2e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/base.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..c069d638b26 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/icon.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/icon.png new file mode 100644 index 00000000000..aa1db87fd2e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/inhand-left.png new file mode 100644 index 00000000000..5ae97b89515 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/inhand-right.png new file mode 100644 index 00000000000..8abca2b678a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/label.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/label.png new file mode 100644 index 00000000000..11758f597d0 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/label.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/meta.json b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/meta.json new file mode 100644 index 00000000000..3501f96f5b3 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_steel.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation, resprited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "label" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/base.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/base.png new file mode 100644 index 00000000000..1feb2f18d3e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/base.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..cef9bc3954c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/icon.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/icon.png new file mode 100644 index 00000000000..1feb2f18d3e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/inhand-left.png new file mode 100644 index 00000000000..b5bf4bfa564 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/inhand-right.png new file mode 100644 index 00000000000..40f9ceb30fb Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/label.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/label.png new file mode 100644 index 00000000000..11758f597d0 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/label.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/meta.json b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/meta.json new file mode 100644 index 00000000000..3501f96f5b3 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Consumable/Drinks/keg_wood.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation, resprited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "label" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/meta.json b/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/meta.json new file mode 100644 index 00000000000..0ff13deaa74 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "bingus", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "squeeze-bottle-ketchup" + }, + { + "name": "squeeze-bottle-mustard" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/squeeze-bottle-ketchup.png b/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/squeeze-bottle-ketchup.png new file mode 100644 index 00000000000..9c08f64f620 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/squeeze-bottle-ketchup.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/squeeze-bottle-mustard.png b/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/squeeze-bottle-mustard.png new file mode 100644 index 00000000000..36083ca8708 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Food/condiments.rsi/squeeze-bottle-mustard.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/cocoa-chip-big.png b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/cocoa-chip-big.png new file mode 100644 index 00000000000..791c9a3dca8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/cocoa-chip-big.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/meta.json b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/meta.json new file mode 100644 index 00000000000..eb9e8c960fc --- /dev/null +++ b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Frontier - ghostprince & gentlebutter", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "salt-big" + }, + { + "name": "pepper-big" + }, + { + "name": "cocoa-chip-big" + }, + { + "name": "raisin-big" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/pepper-big.png b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/pepper-big.png new file mode 100644 index 00000000000..4f7d0c58339 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/pepper-big.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/raisin-big.png b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/raisin-big.png new file mode 100644 index 00000000000..452f6c69acb Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/raisin-big.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/salt-big.png b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/salt-big.png new file mode 100644 index 00000000000..9a53760e147 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Food/ingredients.rsi/salt-big.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json index 5bf212ce625..55b6e3af171 100644 --- a/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord) | Resprited for pilot and mercenary by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -30,6 +30,9 @@ }, { "name": "pda-mercenary" + }, + { + "name": "pda-pilot" } ] } diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-pilot.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-pilot.png new file mode 100644 index 00000000000..356b4c8c9cf Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-pilot.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/burnt-icon.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/burnt-icon.png new file mode 100644 index 00000000000..7c3c5826e6d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/burnt-icon.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/icon.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/icon.png new file mode 100644 index 00000000000..7c3c5826e6d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/inhand-left.png new file mode 100644 index 00000000000..0a8ecc90362 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/inhand-right.png new file mode 100644 index 00000000000..4a97cb34147 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-icon.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-icon.png new file mode 100644 index 00000000000..75b1bcf67aa Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-icon.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-inhand-left.png new file mode 100644 index 00000000000..5161b8bb727 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-inhand-right.png new file mode 100644 index 00000000000..72f065a8b47 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/lit-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/censer.rsi/meta.json new file mode 100644 index 00000000000..29cebb7846b --- /dev/null +++ b/Resources/Textures/_NF/Objects/Misc/censer.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation, smoke animation sequence added by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "burnt-icon" + }, + { + "name": "unlit-icon" + }, + { + "name": "lit-icon", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "unlit-inhand-left", + "directions": 4 + }, + { + "name": "unlit-inhand-right", + "directions": 4 + }, + { + "name": "lit-inhand-left", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "lit-inhand-right", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-icon.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-icon.png new file mode 100644 index 00000000000..921cf61f003 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-icon.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-inhand-left.png new file mode 100644 index 00000000000..0a8ecc90362 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-inhand-right.png new file mode 100644 index 00000000000..4a97cb34147 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/censer.rsi/unlit-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png new file mode 100644 index 00000000000..3859da6b22b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png new file mode 100644 index 00000000000..be72e37e574 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json index b5e6278f12e..b73324fd115 100644 --- a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github) | Resprited for mercenary and pilot by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -10,8 +10,17 @@ { "name": "default" }, + { + "name": "silver" + }, { "name": "idmercenary" + }, + { + "name": "idstationtrafficcontroller" + }, + { + "name": "idpilot" } ] } diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver.png new file mode 100644 index 00000000000..b13153a246e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/icon.png b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/icon.png new file mode 100644 index 00000000000..fa93f980000 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/inhand-left.png new file mode 100644 index 00000000000..68beca76de8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/inhand-right.png new file mode 100644 index 00000000000..3eed13c5d5f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/label.png b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/label.png new file mode 100644 index 00000000000..902e238b42b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/label.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/meta.json new file mode 100644 index 00000000000..72b4e4f59da --- /dev/null +++ b/Resources/Textures/_NF/Objects/Misc/mortuary_urn.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified files from the base SS14 (used vacuumflask.rsi); edits made by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "label" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json index 0ac580f8d77..fbe9b13029e 100644 --- a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json @@ -15,7 +15,9 @@ }, { "name": "refill_lesslethal" + }, + { + "name": "refill_autotune" } - ] } diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png new file mode 100644 index 00000000000..92770e83842 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/bolt-open.png b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/bolt-open.png new file mode 100644 index 00000000000..959c1436a12 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/bolt-open.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/equipped-BELT.png new file mode 100644 index 00000000000..65f3aacd308 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/icon.png b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/icon.png new file mode 100644 index 00000000000..fb8869879fc Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/inhand-left.png new file mode 100644 index 00000000000..762b7b0eeed Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/inhand-right.png new file mode 100644 index 00000000000..d391ea6f0fd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/meta.json new file mode 100644 index 00000000000..90a5a880de3 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Argenti-Revolver.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by discord #vipan9104", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "bolt-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/base.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/base.png new file mode 100644 index 00000000000..c07af312465 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/base.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..35048bf7f6f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/icon.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/icon.png new file mode 100644 index 00000000000..c07af312465 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/inhand-left.png new file mode 100644 index 00000000000..113e2447c57 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/inhand-right.png new file mode 100644 index 00000000000..a0a4b8a524b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/meta.json new file mode 100644 index 00000000000..f76d3f1418a --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "based on Meph's Tileset for Dwarf Fortress v0.47.xx, modified for SS14/NF by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "unwielded" + }, + { + "name": "base" + }, + { + "name": "icon" + }, + { + "name": "unwielded-bolt" + }, + { + "name": "wielded" + }, + { + "name": "wielded-bolt" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/unwielded-bolt.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/unwielded-bolt.png new file mode 100644 index 00000000000..12e78135576 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/unwielded-bolt.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/unwielded.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/unwielded.png new file mode 100644 index 00000000000..c07af312465 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/unwielded.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-bolt.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-bolt.png new file mode 100644 index 00000000000..3bba5453fd7 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-bolt.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..5d48cb345ff Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..9f6ab420091 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded.png new file mode 100644 index 00000000000..3570d0e0500 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Bow/crossbow.rsi/wielded.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/inhand-left.png new file mode 100644 index 00000000000..83c90a5cbdd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/inhand-right.png new file mode 100644 index 00000000000..79fa139e1f7 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/meta.json new file mode 100644 index 00000000000..c55e874a9b9 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "tgstation at a373b4cb08298523d40acc14f9c390a0c403fc31, sprites modified and cut into layers by mirrorcult, modified for crossbow by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tail" + }, + { + "name": "rod" + }, + { + "name": "tip" + }, + { + "name": "solution1" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/rod.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/rod.png new file mode 100644 index 00000000000..3f938c77817 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/rod.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/solution1.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/solution1.png new file mode 100644 index 00000000000..07e1f2b7bcd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/solution1.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/tail.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/tail.png new file mode 100644 index 00000000000..b0342d041c1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/tail.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/tip.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/tip.png new file mode 100644 index 00000000000..944e8e8bfbd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Projectiles/crossbow_bolts.rsi/tip.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/equipped-BELT.png new file mode 100644 index 00000000000..1669aeab5ef Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/icon.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/icon.png new file mode 100644 index 00000000000..8af7c3e591c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/inhand-left.png new file mode 100644 index 00000000000..8100f39e9e1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/inhand-right.png new file mode 100644 index 00000000000..5c45a5263c9 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/meta.json new file mode 100644 index 00000000000..42a18e1785f --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Resprited from tgstation (https://github.com/tgstation/tgstation) bamboo spear by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "spear" + }, + { + "name": "icon" + }, + { + "name": "spear1" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/spear.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/spear.png new file mode 100644 index 00000000000..8af7c3e591c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/spear.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/spear1.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/spear1.png new file mode 100644 index 00000000000..e4fc175ad4c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/spear1.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/wielded-inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..9e1353240ec Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/wielded-inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..9e1353240ec Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/wooden_stake.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/base_generic_gunrack.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/base_generic_gunrack.png new file mode 100644 index 00000000000..eda18dbadeb Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/base_generic_gunrack.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/base_generic_gunrack_wallmounted.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/base_generic_gunrack_wallmounted.png new file mode 100644 index 00000000000..7f886fb91a5 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/base_generic_gunrack_wallmounted.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/locked.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/locked.png new file mode 100644 index 00000000000..6dc45a0b494 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/meta.json b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/meta.json new file mode 100644 index 00000000000..82b2895b8b8 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Used TG Station 13 sprites as a base, edited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base_generic_gunrack" + }, + { + "name": "base_generic_gunrack_wallmounted" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "weapon_generic_gun1" + }, + { + "name": "weapon_generic_gun2" + }, + { + "name": "weapon_generic_gun3" + }, + { + "name": "weapon_generic_gun4" + }, + { + "name": "weapon_generic_gun5" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/unlocked.png new file mode 100644 index 00000000000..56b3e8e1297 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun1.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun1.png new file mode 100644 index 00000000000..7ca8c20c25b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun1.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun2.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun2.png new file mode 100644 index 00000000000..153ef1ccc04 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun2.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun3.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun3.png new file mode 100644 index 00000000000..5378e66ffbb Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun3.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun4.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun4.png new file mode 100644 index 00000000000..675ee6bcf5b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun4.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun5.png b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun5.png new file mode 100644 index 00000000000..0aa6d3762e6 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/gun_racks.rsi/weapon_generic_gun5.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/base_generic_meleerack.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/base_generic_meleerack.png new file mode 100644 index 00000000000..9a204cc3952 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/base_generic_meleerack.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/base_generic_meleerack_wallmounted.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/base_generic_meleerack_wallmounted.png new file mode 100644 index 00000000000..e3769eac3b5 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/base_generic_meleerack_wallmounted.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/locked.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/locked.png new file mode 100644 index 00000000000..6dc45a0b494 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/meta.json b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/meta.json new file mode 100644 index 00000000000..bf1f7fa9abc --- /dev/null +++ b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Used TG Station 13 sprites as a base, edited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base_generic_meleerack" + }, + { + "name": "base_generic_meleerack_wallmounted" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "weapon_generic_melee1" + }, + { + "name": "weapon_generic_melee2" + }, + { + "name": "weapon_generic_melee3" + }, + { + "name": "weapon_generic_melee4" + }, + { + "name": "weapon_generic_melee5" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/unlocked.png new file mode 100644 index 00000000000..56b3e8e1297 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee1.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee1.png new file mode 100644 index 00000000000..93a12832dd0 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee1.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee2.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee2.png new file mode 100644 index 00000000000..ff058767d41 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee2.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee3.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee3.png new file mode 100644 index 00000000000..cb0dffa9752 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee3.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee4.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee4.png new file mode 100644 index 00000000000..17d22e7e973 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee4.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee5.png b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee5.png new file mode 100644 index 00000000000..08215b347a9 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/melee_weapon_racks.rsi/weapon_generic_melee5.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/base_generic_pistolrack.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/base_generic_pistolrack.png new file mode 100644 index 00000000000..ec8a116f81e Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/base_generic_pistolrack.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/base_generic_pistolrack_wallmounted.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/base_generic_pistolrack_wallmounted.png new file mode 100644 index 00000000000..7d79a0c5056 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/base_generic_pistolrack_wallmounted.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/locked.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/locked.png new file mode 100644 index 00000000000..11a37b428ed Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/meta.json b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/meta.json new file mode 100644 index 00000000000..abdab704c8d --- /dev/null +++ b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Used TG Station 13 sprites as a base, edited by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base_generic_pistolrack" + }, + { + "name": "base_generic_pistolrack_wallmounted" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "weapon_generic_pistol1" + }, + { + "name": "weapon_generic_pistol2" + }, + { + "name": "weapon_generic_pistol3" + }, + { + "name": "weapon_generic_pistol4" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/unlocked.png new file mode 100644 index 00000000000..e1548f4445b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol1.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol1.png new file mode 100644 index 00000000000..d9877581e6f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol1.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol2.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol2.png new file mode 100644 index 00000000000..8b2f7910ef7 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol2.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol3.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol3.png new file mode 100644 index 00000000000..c42caad8a4f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol3.png differ diff --git a/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol4.png b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol4.png new file mode 100644 index 00000000000..6369d0430c2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/Armory/pistol_racks.rsi/weapon_generic_pistol4.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/broken.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/broken.png new file mode 100644 index 00000000000..3aee7813c3f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/broken.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/deny-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/deny-unshaded.png new file mode 100644 index 00000000000..6010dd6e2f3 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/deny-unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/eject-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/eject-unshaded.png new file mode 100644 index 00000000000..480970937d6 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/eject-unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/meta.json new file mode 100644 index 00000000000..6de92701347 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by [Data_Redacted]", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "normal-unshaded", + "delays": [ + [ + 2.5, + 0.05, + 3.4, + 0.05 + ] + ] + }, + { + "name": "broken" + }, + { + "name": "deny-unshaded", + "delays": [ + [ + 0.5, + 2, + 2 + ] + ] + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "eject-unshaded", + "delays": [ + [ + 0.1, + 0.1, + 0.8, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/normal-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/normal-unshaded.png new file mode 100644 index 00000000000..db051e3335b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/off.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/off.png new file mode 100644 index 00000000000..3359afaf292 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/off.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/panel.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/panel.png new file mode 100644 index 00000000000..4c92e1fe2e2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/panel.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/broken_tabletop.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/broken_tabletop.png new file mode 100644 index 00000000000..3708cec1145 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/broken_tabletop.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_tabletop.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_tabletop.png new file mode 100644 index 00000000000..db2584ebb34 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_tabletop.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/generic_keyboard_tabletop.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/generic_keyboard_tabletop.png new file mode 100644 index 00000000000..17a59fa9434 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/generic_keyboard_tabletop.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/meta.json new file mode 100644 index 00000000000..958462964b8 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken_tabletop", + "directions": 4 + }, + { + "name": "computer_tabletop", + "directions": 4 + }, + { + "name": "generic_keyboard_tabletop", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_medical.png b/Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_medical.png new file mode 100644 index 00000000000..bb79dfb822b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_medical.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json index 9555971c55b..afe7311d10c 100644 --- a/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "shipyard_security and shipyard made by Potato1234_x, black market versions by terezi4real on github", + "copyright": "shipyard_security and shipyard made by Potato1234_x, black market versions by terezi4real on github, medical versions by sungyandy", "size": { "x": 32, "y": 32 @@ -15,6 +15,10 @@ "name": "computer_blackmarket", "directions": 4 }, + { + "name": "computer_medical", + "directions": 4 + }, { "name": "generic_keyboard", "directions": 4 @@ -113,6 +117,36 @@ ] ] }, + { + "name": "shipyard_medical", + "directions": 4, + "delays": [ + [ + 1.0, + 0.3, + 1.0, + 0.3 + ], + [ + 1.0, + 0.3, + 1.0, + 0.3 + ], + [ + 1.0, + 0.3, + 1.0, + 0.3 + ], + [ + 1.0, + 0.3, + 1.0, + 0.3 + ] + ] + }, { "name": "telesci_key", "directions": 4 diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/shipyard_medical.png b/Resources/Textures/_NF/Structures/Machines/computers.rsi/shipyard_medical.png new file mode 100644 index 00000000000..7753510f1e3 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computers.rsi/shipyard_medical.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/base.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/base.png new file mode 100644 index 00000000000..6595032872f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/closed.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/closed.png new file mode 100644 index 00000000000..25bee7ad523 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/closed.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/icon.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/icon.png new file mode 100644 index 00000000000..7b4c22e3d78 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/locked.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/locked.png new file mode 100644 index 00000000000..aceacfce597 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/meta.json new file mode 100644 index 00000000000..cb4b05fab2f --- /dev/null +++ b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/meta.json @@ -0,0 +1,45 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by @vipan9104 on discord for Frontier Station.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "welded" + }, + { + "name": "sparking", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "locked" + }, + { + "name": "unlocked" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/open.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/open.png new file mode 100644 index 00000000000..59a9a46f52c Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/sparking.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/sparking.png new file mode 100644 index 00000000000..87b78b9b465 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/sparking.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/unlocked.png new file mode 100644 index 00000000000..94b89fa655d Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/welded.png new file mode 100644 index 00000000000..311739a2701 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/contraband_crate.rsi/welded.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/base.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/base.png new file mode 100644 index 00000000000..f5e47c27198 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/closed.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/closed.png new file mode 100644 index 00000000000..4d7a50e599a Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/closed.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/icon.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/icon.png new file mode 100644 index 00000000000..d17e43789ce Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/locked.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/locked.png new file mode 100644 index 00000000000..aceacfce597 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/meta.json new file mode 100644 index 00000000000..cb4b05fab2f --- /dev/null +++ b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/meta.json @@ -0,0 +1,45 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by @vipan9104 on discord for Frontier Station.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "welded" + }, + { + "name": "sparking", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "locked" + }, + { + "name": "unlocked" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/open.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/open.png new file mode 100644 index 00000000000..e5f00dade4f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/sparking.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/sparking.png new file mode 100644 index 00000000000..87b78b9b465 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/sparking.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/unlocked.png new file mode 100644 index 00000000000..94b89fa655d Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/welded.png new file mode 100644 index 00000000000..311739a2701 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/cybersun_crate.rsi/welded.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/base.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/base.png new file mode 100644 index 00000000000..a8a9cba95b3 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/closed.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/closed.png new file mode 100644 index 00000000000..c535f9477e9 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/closed.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/icon.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/icon.png new file mode 100644 index 00000000000..37319572791 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/locked.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/locked.png new file mode 100644 index 00000000000..aceacfce597 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/meta.json new file mode 100644 index 00000000000..cb4b05fab2f --- /dev/null +++ b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/meta.json @@ -0,0 +1,45 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by @vipan9104 on discord for Frontier Station.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "welded" + }, + { + "name": "sparking", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "locked" + }, + { + "name": "unlocked" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/open.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/open.png new file mode 100644 index 00000000000..5f0b87f3e2b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/sparking.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/sparking.png new file mode 100644 index 00000000000..87b78b9b465 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/sparking.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/unlocked.png new file mode 100644 index 00000000000..94b89fa655d Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/welded.png new file mode 100644 index 00000000000..311739a2701 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/donkco_crate.rsi/welded.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor.png new file mode 100644 index 00000000000..1cacc7b127c Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor_door.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor_door.png new file mode 100644 index 00000000000..575b90fd359 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor_open.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor_open.png new file mode 100644 index 00000000000..c087bdb226e Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/janitor_open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json index e7a90856b44..29037a14845 100644 --- a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json @@ -4,9 +4,18 @@ "x": 32, "y": 32 }, - "copyright": "Taken from tgstation, mercenary locker is a resprited armory locker by erhardsteinhauer (discord)", + "copyright": "Taken from tgstation, mercenary and pilot lockers are resprited armory locker by erhardsteinhauer (discord), janitor is by SungYandy", "license": "CC-BY-SA-3.0", "states": [ + { + "name": "janitor" + }, + { + "name": "janitor_door" + }, + { + "name": "janitor_open" + }, { "name": "generic" }, @@ -25,11 +34,23 @@ { "name": "mercenary_open" }, + { + "name": "pilot" + }, + { + "name": "pilot_door" + }, + { + "name": "pilot_open" + }, { "name": "unlocked" }, { "name": "welded" + }, + { + "name": "sparking" } ] } diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot.png new file mode 100644 index 00000000000..9c64d730958 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_door.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_door.png new file mode 100644 index 00000000000..3430dbe59a6 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_open.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_open.png new file mode 100644 index 00000000000..35d9e7fd8b2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/sparking.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sparking.png new file mode 100644 index 00000000000..b027535b060 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sparking.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic.png new file mode 100644 index 00000000000..3e7c16d5a28 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic_door.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic_door.png new file mode 100644 index 00000000000..cf625ca7ebf Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic_open.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic_open.png new file mode 100644 index 00000000000..ca91ac55829 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/generic_open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/locked.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/locked.png new file mode 100644 index 00000000000..7283f031f0c Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/meta.json new file mode 100644 index 00000000000..df90670edc3 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited for NF by erhardsteinhauer (discord), used as a base SS14 default sprites wall_locker.rsi, suit_storage.rsi, directional.rsi (window), basic.rsi (hardsuit), emergency.rsi (tank) and black.rsi (jetpack)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "generic" + }, + { + "name": "generic_door" + }, + { + "name": "generic_open" + }, + { + "name": "locked" + }, + { + "name": "panel" + }, + { + "name": "slot_jetpack" + }, + { + "name": "slot_suit" + }, + { + "name": "slot_tank" + }, + { + "name": "unlocked" + }, + { + "name": "welded" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/panel.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/panel.png new file mode 100644 index 00000000000..2c4d2a0710d Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/panel.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_jetpack.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_jetpack.png new file mode 100644 index 00000000000..7f3c4522cec Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_jetpack.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_suit.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_suit.png new file mode 100644 index 00000000000..2a51bb74433 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_suit.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_tank.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_tank.png new file mode 100644 index 00000000000..33ffd60b699 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/slot_tank.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/unlocked.png new file mode 100644 index 00000000000..0d76d0b1b91 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/welded.png new file mode 100644 index 00000000000..85e6b2035bb Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/suit_storage_wall.rsi/welded.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/base.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/base.png new file mode 100644 index 00000000000..3cece361f3d Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/icon.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/icon.png new file mode 100644 index 00000000000..d233ac62cd2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/meta.json b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/meta.json new file mode 100644 index 00000000000..6165f2ee3c1 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation13, modified by erhardsteinhauer (discord)", + "states": [ + { + "name": "base", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "notices-1", + "directions": 4 + }, + { + "name": "notices-2", + "directions": 4 + }, + { + "name": "notices-3", + "directions": 4 + }, + { + "name": "notices-4", + "directions": 4 + }, + { + "name": "notices-5", + "directions": 4 + }, + { + "name": "notices-6", + "directions": 4 + }, + { + "name": "notices-7", + "directions": 4 + }, + { + "name": "notices-8", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-1.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-1.png new file mode 100644 index 00000000000..ecaaf418d07 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-1.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-2.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-2.png new file mode 100644 index 00000000000..df39fca91e2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-2.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-3.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-3.png new file mode 100644 index 00000000000..1ece70a18e3 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-3.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-4.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-4.png new file mode 100644 index 00000000000..7b576bee3a8 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-4.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-5.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-5.png new file mode 100644 index 00000000000..77b878b300b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-5.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-6.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-6.png new file mode 100644 index 00000000000..2fcee1843f5 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-6.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-7.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-7.png new file mode 100644 index 00000000000..b8e86aab823 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-7.png differ diff --git a/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-8.png b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-8.png new file mode 100644 index 00000000000..1fa416702ed Binary files /dev/null and b/Resources/Textures/_NF/Structures/Wallmounts/notice_board.rsi/notices-8.png differ diff --git a/Resources/manifest.yml b/Resources/manifest.yml index 67991181939..e9726c888bb 100644 --- a/Resources/manifest.yml +++ b/Resources/manifest.yml @@ -1,4 +1,4 @@ -defaultWindowTitle: Space Station 14 +defaultWindowTitle: Frontier Station windowIconSet: /Textures/Logo/icon splashLogo: /Textures/Logo/logo.png diff --git a/Resources/migration.yml b/Resources/migration.yml index 908a57fd23d..61d2dd593b2 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -172,6 +172,7 @@ LockerResearchDirectorShuttleFilled: LockerResearchDirectorFilled # Merc to Mercenary ClothingMaskGasMerc: ClothingMaskGasMercenary ClothingBackpackMercFilled: ClothingBackpackMercenaryFilled +ClothingBackpackMerc: ClothingBackpackMercenary ClothingShoesBootsMerc: ClothingShoesBootsMercenary ClothingShoesBootsMercFilled: ClothingShoesBootsMercenaryFilled ClothingHandsMercGlovesCombat: ClothingHandsMercenaryGlovesCombat